| Thread | Last Post | Replies |
|
| Label.AutoSize is failing to alter Width property. | 17 Nov 2006 13:30 GMT | 1 |
Label label = new Label(); label.Width = 1; label.AutoSize = true; label.Text = "A long string, requiring a width larger than 1.";
|
| about Settings.settings | 17 Nov 2006 13:27 GMT | 1 |
Hi guys, i have a question about Settings.settings I have some datasets in my app, each dataset uses a connection (myCnn) created in Settings.settings if i use
|
| Stored procedure to transfer the data of one row to a single column | 17 Nov 2006 12:42 GMT | 3 |
Hi friends, I have a table structure like this in SQL sever 2000. i want a stored procedure to transfer the data from "tblSurvey" table to "tblRespondent" table.
|
| How to marshall parameters in winhttpopenrequest()? | 17 Nov 2006 12:41 GMT | 1 |
i am using the following c# code in winhttp to open a http request Win32Api.WinHttpOpenRequest(Winconnection,"POST","/winn/01Primary/",null,"WINHTTP_NO_REFERER",WINHTTP_DEFAULT_ACCEPT_TYPES,0x00800000); and my function marshalling looks like ...
|
| Dynamic data casting | 17 Nov 2006 12:16 GMT | 3 |
I have a series of functions which do the following: ValidateData( args ); //args if of type ArrayList // Work out if the data is valid or not, and work out the type of args[1] - int, string, whatever?
|
| Remoting query | 17 Nov 2006 12:10 GMT | 1 |
I have some problem in my .net project. In my project two systems will communicate by installation the client server application in them. They can be 1. Server1--->server2 (run client server application on each system)
|
| System.Data.DBConcurrencyException was unhandled | 17 Nov 2006 09:43 GMT | 3 |
I am using Microsift Visual C# 2005 Express Edition and SQL Server 2005 Express Edition. I have created a few tables in the IDE. When I run my program in debug run the
|
| Problem appending a new element to xml file... | 17 Nov 2006 09:31 GMT | 13 |
I'm trying to distill all of the info from google searches into what I need, with partial success. In truth, the whole xmlNode, Document, Element, etc group of classes & methods is going over my head - lol! The structure of the xml file I'm trying to append to is as follows:
|
| Change VS2005 C# project to use mscorlib 1.1 | 17 Nov 2006 08:21 GMT | 12 |
I have moved a project from VS2003 to VS2005 and now all references point to .NET2.0 libs. How can I change this back to 1.1, but still use VS2005? I need this for compatibility reasons. thanks
|
| System.Security.Cryptography.MD5.Create( ??? ) | 17 Nov 2006 07:47 GMT | 4 |
Does anyone know why the documentation for System.Security.Cryptography.MD5.Create() seems to omit completely any description of allowed arguments. I'm trying to convert some C++ code to C# and seem to be getting different
|
| is local pc online? | 17 Nov 2006 07:27 GMT | 7 |
i'm making a netowork based app. and if i have the UNC path to a local computer is there a way i can check whether the pc is online/offline?? Gideon
|
| tooltip hint | 17 Nov 2006 06:44 GMT | 2 |
i'm somewhat new to C# .. so i might be asking a silly question.. but i have tried searching forums after reading msdn docs , for this. I have a column for dates in my datagridview. As soon as the user starts typing the date into it one of the cells. i want a tooltip to
|
| Formatting a String to a Date String | 17 Nov 2006 06:43 GMT | 16 |
This is driving me mad, should be simple, How can I format a date string "01122006" to be "01/12/2006" I have tried string teststr = String.Format("{d}","01122006");
|
| strange thing using Process class to call outside executable file | 17 Nov 2006 05:21 GMT | 1 |
I've been working on an online judge(for ACM/ICPC) using C#.Programmes submitted by users can now be compiled,and it's the problem to judge.I use the Process class in C#,and my thread is as follows:start a process using this class with parameters such as input file,output file,etc ...
|
| canonical object access | 17 Nov 2006 04:24 GMT | 5 |
What is the cleanest way to gain access to object methods and properties across classes and files in the same namespace? Example: A form object frmForm in file frmForm.cs creates obj1 defined in file obj1.cs, which in turn creates obj2 and obj3 defined in obj2.cs
|