Software Development Network Logo
  • Architecture
  • Visual C#
  • Visual C++
  • .NET Development
  • Windows Live
  • SQL Server
  • Visual FoxPro
  • Visual Studio
  • Visual J#
  • Smart Device
  • Windows Forms
  • Visual Basic
  • Microsoft ISV
  • Game Technologies
  • VS Team System

Software Development Network >> AdeO's Q&A profile

AdeO

Member List

Jiaozi
JonesEJ20
harendra
mjd918
Z.z.
Error installing SSIS
Gerhardt
Artur H. Shamsutdinov
Nobody you know
Sateesh Kodati
anthonyy
belleville007
John Oliver (UK)MSP, VSIP
SHAILESH KUMAR PANDEY
PatrickFe
VBwant2B
Kukulcan
TreysWild
Rose
hazan
Only Title

AdeO's Q&A profile

  • Software Development for Windows Vista Windows Workflow Foundation from a business perspective

    As a developer I am really enthousiastic about the new Windows Vista related technologies, and especially Windows Workflow Foundation. Being a developer, I have lots of stuff to read about this subject. There are many good-quality articles, whitepapers, webcasts and forums such as this one to help me get started. The problem is, however, that if I want to convince the management team of my company that WWF and WCF are the way to go (which I think it is), I can't seem to find (really) good information from a business perspective. All presentations directly dive into code on slide 3 or 5 or so, and most articles I found are too developer ...Show All

  • Windows Forms Host Controls in Windows Forms DataGridView Cells

    Hi all, I'm trying to create a new cell within the new DataGridView (.NET 2 Beta). For example, I'm trying to create a cell which contain a RichTextBox, I succeed with the appearance of the rich text box controll but there is a lot of irregular behavior. Does someone did it already(not particular with RichTextBox) and can send an example. Unfortunately Microsoft example in the link below doesn't accessible. http://whidbey.msdn.microsoft.com/library/default.asp url=/library/en-us/dv_fxmclictl/html/e79a9d4e-64ec-41f5-93ec-f5492633cbb2.asp 10X in advance, Nir Oren The Rows collection has two Add method overloads that let you populate t ...Show All

  • Software Development for Windows Vista The easiest way to check aworkflowistance variable

    I have a private variable for my workflow like this public sealed partial class SampleWorkflow : StateMachineWorkflow     {         private string statusWf;     .....     .... Wich is the easiest way to check the value of this variable and insert it in a label of a web form. At this moment I have added an event 'CheckStatus' in my service interface, and each state of my workflow has an eventdrinven activity that contains the eventdriven related at the checkstatus... than an invoke method(binding the variable) calls the method of the service that upgrades the webf ...Show All

  • Visual C# close all forms

    DialogResult result = MessageBox.Show("Username or password not correct!", "Error...",MessageBoxButtons.OKCancel); if (result == DialogResult.OK) { textBox1.Text = ""; textBox2.Text = ""; } else { //what comes here (1) this.Close(); } what do i have to write instead of (1) for closing all forms the open form is called existuser and the main form is Form1 You can do this by calling Application.Exit(); This would firstly cause all message pumps to terminate, and then all forms in the Application to close when done processing all their messages. ...Show All

  • Visual C# Fill a shape

    I have a shape like this shape , and I want to fill it with a color, can someone help me Greets, DIII cgraus wrote: I don't know why the GDI FloodFill function is not offered in GDI+. You could pinvoke it, or ( assuming you're still working on this drawing program ), you could accumulate an array of points as the user draws, and then use the FillPath function ( from memory ), which takes a Path built on those points and will fill it as well as draw it, with the brush of your choice. I think it doesn't work if it is an opened image. ...Show All

  • Visual Studio Team System how do I change team foundation server configuration

    I entered a wrong email adress under alerts during installation of the tfs server, where do I correct this error_ regards jcjj No I never found the correct way to install it all correctly, but I was sent the following link: http://www.microsoft.com/downloads/details.aspx familyid=e54bf6ff-026b-43a4-ade4-a690388f310e&displaylang=en  which leads to an excellent installation guide, that I have been trying to follow. I have not yet found the time to do the complete installation, so if anyone have, pls. post the pittfalls and workarounds.... I sincerely hope that the final product will include a wizard, that will configure all the ...Show All

  • Visual Basic Changing the "Working Area" of a screen.

    I am trying to develop an application that will act a bit like a second taskbar, in that it will resize the working area of a screen so that maximised applications do not cover over it, or simply get hidden behind it. Examples of applications that use this would be things such as Desktop Sidebar or JetToolbar. I am trying to develop the application in Visual Basic 2005 Express Edition (using the .NET Framework 2.0). I have found how to get the current working area, but despite extensive searching I have not found a way to change it. Is this possible in Visual Basic Well done, Brendan. I haven't tested it yet ...Show All

  • .NET Development C# Parameters NOT passing to Web Service

    In a revision of the Distributed Application Walkthrough located here: http://msdn2.microsoft.com/en-us/library/1as0t7ff.aspx , we have changed the WinForms app portion of the walkthrough the use the designer tools in VS2005 instead of a manual placement of the datagridview control and the Load/Save buttons. When we use the VS2005 designer tools to drag and drop from the DataSources window after adding a Web Reference to the project, everything appears to work fine. The Datagridview populates beautifully with the following code in the form class code: public Form1() { InitializeComponent(); localhost. Service ws = new localhost ...Show All

  • Visual Studio 2008 (Pre-release) Cecil project from Mono : better than Linq ?

    Hello, Will the Linq team include the Cecil functionnalities It is so much more powerful than Linq. Basically every code is accessible as an expression, visitable, and modifiable at runtime. This links to my former proposal of being able to publish a select subset of variabl es then expresses iself as a subset of Cecil. Apparently Cecil is being used in db4o, an object database, which by the way, has what they call "native queries" which surprisingly ressemble DLinq queries :) Nicolas Rolland Hi Nicholas, I was just looking at Cecil myself recently, and to be honest, Cecil is nothing l ...Show All

  • Windows Forms Invoke Property Editor

    Ok This is a simple question I hope. I want to be able to invoke a controls property editor. For example in VS.Net you select the control then select font and it shows the font dialog box.  I want to be able to invoke that controls font property editor (the font dialog) from code. Is there a way to do this Joe Sorry.  Took  ...Show All

  • Visual Studio 2008 (Pre-release) Can you do Duplex message exchange with netPofileTcpBinding?

    hi, I'm a bit confuse about this, according to the programming Indigo book by David Pallmann, it's possible. But when I tried to set the 'clientBaseAddress' attribute, a. the intellisense didn't register, b. at runtime I'm getting an error saying it's an invalid attribute. Can someone clarify this for me Thanks. -Andy You can. There is a difference, as you have noticed, with tcp bindings, which are inherently duplex. The code to set up http and tcp duplex channels would look something like this: InstanceContext instcon = new InstanceContext ( this ); WSDualHttpBinding binding = ...Show All

  • Visual Studio Team System How To: Simple Steps to create a Webservice Load test

    I am new to VS2005 and would like to create a load test for our webservice. The webservice must be able to handle simultaneous connections. I followed the steps detailed in: http://msdn2.microsoft.com/en-us/library/ms182557.aspx as a start, but I am missing the connection to move further. The following link takes you to a page which has a number of help links for creating a load test. Please let me know if there is more specific help that you need. http://msdn2.microsoft.com/en-us/library/ms182571.aspx ...Show All

  • Visual Studio Team System manually remove a (failed creation) project

    Hi, I tried to create a new tfs-project, but got a very strange error message (see below). But I need to be able to reuse the name! So how can I manually delete all traces of this project-name (or rename it in the DB, so the name is not recognized anymore ). I think there is some kind of project-removal console-app, but last time I tried that, it could not remove such zombie-projects. ---begin Exception entry--- Time: 13.01.2006 17:20:39 Module: Engine Event Description: TF30162: Task "VersionControlTask" from Group "VersionControl" failed Exception Type: Microsoft.TeamFoundation.Client.PcwException Exception Messag ...Show All

  • Visual C++ Changing project setting in VC.NET

    Hello all, I'm migrating from a VC6 app to a VC.NET 2003 app. I cannot find where I can change the following project settings in .NET although they are easily accessible in 6.0: -C/C++ settings --> Use Run-Time Library --> Debug Multithreaded DLL -C/C++ settings --> Preprocessor --> Preprocessor definitions (I want to add STRICT) -C/C++ settings --> Preprocessor --> Additional Include Directories There is no C/C++ setting tab at all in my Project --> Properties menu. Thanks in advance. NRF Since the forum is specific for VC2005, here is how to do it there: http://msdn2 ...Show All

  • Smart Device Development capture event key when a webBrowser is on a form

    Hello, I develop on vb.net with compact framework 2.0. I set the KeyPreview of the form to true and capture all key events, UNTIL I put a webbrowser on the form ! Then i can't capture the event of the key, in particular action key .... Thank's for your help, stephan We are looking into this issue as a bug in the .NET Compact Framework David Wrighton .NET Compact Framework ...Show All

©2008 Software Development Network