Software Development Network Logo
  • Windows Forms
  • Visual Basic
  • Visual J#
  • SQL Server
  • Microsoft ISV
  • Windows Vista
  • Windows Live
  • .NET Development
  • Visual C#
  • Visual C++
  • Visual FoxPro
  • VS Express Editions
  • Visual Studio
  • Game Technologies
  • Architecture

Software Development Network >> Marc Cauchy's Q&A profile

Marc Cauchy

Member List

franking
Alexander S. Manenko
Sidney A Williams Jr
4pbears
Kache4
Nic Butler
Ivan Ivanyuk
AdrianGodong
John Sheppard
GuitarArlen
cominfo
Radu C-tin
John Morales
Tduffy77
Justin Pinnix
heri_09
Guy Harel
jmealing
Zowdi
Shibu Shaji
Only Title

Marc Cauchy's Q&A profile

  • .NET Development web service authentication

    how can i athenticat in web service and is it secure Hi pooya, This page contains the most common authentication scenarios for Web Services with code samples. http://msdn.microsoft.com/webservices/default.aspx pull=/library/en-us/dnpag2/html/wss_ch1_intro.asp Regards, ...Show All

  • .NET Development Compile Error Can't find project or library

    I have the following code in my Excel VBA.      Dim conn As New ADODB.Connection     Dim rs As ADODB.Recordset                 Set conn = New ADODB.Connection         Set rs = New ADODB.Recordset                  DSNtemp = "DRIVER={Microsoft Access Driver (*.mdb)}; "         DSNtemp = DSNtemp & "DBQ=" & HistoTableLocation             ...Show All

  • Visual Studio Team System COOKBOOK for TFS server installation - please

    Hi I've been trying to install TFS server beta 3 refresh for more than a week - it feels more like a month... Has anyone written down the complete cookbook for a successful installation If so pls. forward that, because this seems very difficult to do correctly. The very best would be a cookbook that starts off with a 'clean' virtual server, and leads me by the hand through this labyrint of strange options and issues. Thanx jcjj pls. MS do supply some diagnostic tool to pinpoint faults in the setup.... JCJJ I'm sorry to hear that you're having trouble getting things set up. There are indeed a lot of options to get configured correctly ...Show All

  • Software Development for Windows Vista The workflow failed validation

    Does anyone know why the below would occur if I simpily moved it to a different assembly Thanks in advance, Mardo -- Server Error in '/Mimi' Application. Put a try catch block around the call to CreateWorkflow, catch WorkflowValidationFailedException and look at the Errors property. Like below: WorkflowInstance instance = null ; try { instance = workflowRuntime.CreateWorkflow(Type,Dictionary<string,object>); } catch ( WorkflowValidationFailedException exp) { StringBuilder errors = new StringBuilder (); foreach ( ValidationError error in exp.Errors) { errors.App ...Show All

  • Visual Studio Team System Graphs in Team Edition for Software Testers

    Hi I have created a load test and I ran it for 100 Vusers and for a duration of 10 minutes. I have added several counters to the test. Now, in the graph that I see, in the results; I could not identify what does Y axis refer to. Can anybody please explain me what does the Y axis refer to X-axis is of course showing the time in seconds. Does the Y-axis value depend on the counter we select or is it constant for any type of counter For ex: if we select pages/second counter, I assumed that the value for Y axis indicates the number of pages received per second. Similarly when I selected the average response time counter, I assumed that at ...Show All

  • .NET Development Web Service state question

    Hello, Is it possible to maintain a database connection via a web service If I have 1000 clients hitting a web service, is there a way to have them all use the same database connection instead of opening a connection, passing some sql, then closing the connection I assume this is not possible, if it is not what suggestions would you offer Thank you. If you are using the same connection string (same userid/pwd) you can receive the benefit of connection pooling. Start your research there... ...Show All

  • Visual Basic Deployment Problems with .msi

    My application will be deployed with the build-in setup project function to generate a msi package. Tried the function out with a simple form application and it works out fine as expected. However, I came out with several problems when work it out on my solution. The solution contains several projects which only a few exe are compiled whilst the rest are all dll . 1. One of these exe will be running on the client machine and launched through a batch file. The bat works fine in its own directory but not the shortcut on the desktop. I managed to create/place the shortcut on the desktop directory with the file system editor . Why 2. ...Show All

  • Windows Forms Filling a Combo box

    Hi, can anybody tell me the way to fill a combobox without using a dataset (arraylist for example). I want the combobox to display a special string like a name for example, and i want the value to be a string (not simply the index). Thank. You could use those two properties here, too, but not if you bind the control to a generic& ...Show All

  • Windows Forms How to Use .Net Windows Applicaion in Internet Explorer

    Hi, I want to use my . Net Windows Application in Internet Explorer . What are the steps I have to adopt to use My Windows Applicaion in Internet Explorer(Web) . This is very urgent. You want to embedd your app in IE As a web app Did you write your app properly, that is, is your UI layer seperate from your business logic If so, you can write a web UI using your business objects.  Of course, a web UI is not as rich as a Winforms one. ...Show All

  • .NET Development how web service client will know about user defined data type?

    If a web method returns user defined object how web service client will know about user defined data type Usually proxy wizard generates class skeletons used for webservices. And webservices transfer only data. Thus it doesn't matter to client where the original class comes from as long as the class on the client side can be used for deserialization (having same properties, etc.) ...Show All

  • Visual Basic Name "________" is not declared

    Hello, With some of my codes, an error comes up saying Name 'RadioButton1_Checked' is not declared. I am using some code snippets to build this script, and I get that error when typing in the script. Private Sub Button1_Click( ByVal sender As System. Object , ByVal e As System.EventArgs) Handles Button1.Click If RadioButton1_Checked True Then MsgBox( "You are incorrect" , MsgBoxStyle.Information, "Wrong Answer" ) End If   So, if you can't tell from the code, I want this to happen: If the person has checked RadioButton1, I want a message box to come up and say incorrect answer when they click the ...Show All

  • Windows Forms DataGridView SortOrder property not same type as parameter to DGV Sort method

    The Sort method of the DataGridView has the following signature: Dim dataGridViewColumn As DataGridViewColumn Dim direction As System.ComponentModel.ListSortDirection Dim dataGridView1 As DataGridView dataGridView1.Sort(dataGridViewColumn, direction)   The SortOrder property of the DataGridView is of type System.Windows.Forms.SortOrder. The question I have is why are they not the same   These enumerations appear to have different underlying values.  Thus, you can't simply assign one to the other.  If you want to track the current sort order of a DGV you have to convert between the two types.  Is there some r ...Show All

  • Visual Studio Team System Version Control Best Practices?

    Can somebody please provide some best practices in the use of Team System Version Control Especially in the area of mulitple builds, etc. Here is an example: We have a single code-base with 2 different clients.  We do daily builds for our internal QA folk.  Usually on a bi-weekly basis we do a build out to the production server as well.  A couple of days later we may do another build that is put out to the production server for the 2nd client.  How can we best manage these multiple versions If we do a production build on Monday, then do 3 more daily builds internally, then realize we need to "hotfix" something on the pro ...Show All

  • Visual C# how to set default dataGridView row Height

    I am using a DataGridview while i am setting the height from the code it is not working if (dgviewSearchResults.RowCount != 0) { foreach (DataGridViewRow row in dgviewSearchResults.Rows) { row.Height =5; } } i am using the above code But it is not working for me Hi, It can do your work: foreach (DataGridViewRow row in DataGridView1.Rows) { row.Height = 5; } Thank you ...Show All

  • Visual Basic unhandled exception error

    hello all, I am getting an error when I try to run my project.  I am using VB.Net 2003. The error states: An unhandled exception of type 'System.Data.OleDb.OleDbException' occurred in ScottsClientTracker.exe. The following is the code it's stopping at: Public Overloads Shared Function ExecuteDataset(ByVal connectionString As String, ByVal commandType As AccessCommand, ByVal commandText As String) As DataSet         If (connectionString Is Nothing OrElse connectionString.Length = 0) Then Throw New ArgumentNullException("connectionString")         'Create &a ...Show All

©2008 Software Development Network