| Thread | Last Post | Replies |
|
| Video stream projects.. | 20 Dec 2006 21:57 GMT | 1 |
Hi Experts, Is possible to develope video stream projects in c#.Net using Xml and Xsl ?
|
| Double to String mask | 20 Dec 2006 21:03 GMT | 3 |
32.0 transformed to 000000320000000000 I guess the above would be equivalent to an numeric(18,10) datatype the first 8 digits represent the whole part of the double the last 10 represent the decimal part
|
| Type scope confusion. | 20 Dec 2006 20:13 GMT | 1 |
I have a project at the moment which is working fine. I originally coded my code in form1.cs, as this was the default code file generated by Visual Studio. However now i'm trying to organise it better, so have renamed the file to ChooseWindow and chose the autorename feauture, and
|
| Amazing!!! ListViewItemCollection interfaces | 20 Dec 2006 17:31 GMT | 3 |
Hi, guys! I'm trying to write collection and in example to do this I observed ListViewItemCollection public methods and properties. I was impressed when I find that the methods definitions in ListViewItemCollection different from
|
| Problem trying to position a process window - please advise | 20 Dec 2006 17:21 GMT | 11 |
For this first time today I used the System.Diagnositcs namespace to launch a program from my c# code. The program launches OK but I have something which has completely stumped me. The SetWindowPos method does not work. If I run the code as it is
|
| Casting a 'sender' argument in an event handler | 20 Dec 2006 15:44 GMT | 5 |
I'm using VS 2005 C# Express. I have an event handler that is called when the text cursor leaves one of many different text boxes. When this is called, I want the text colour in that text box to change to Red. I assume that the "sender" argument in the call is the text box that ...
|
| Need to retrieve nodes from xml page. | 20 Dec 2006 15:23 GMT | 2 |
I'm having this problem, the following code is used to request a page where I want to be able to read the response, which is an xml page: string sUrl = "http://www.thirdpartysendingsms.com"; HttpWebRequest myRequest =(HttpWebRequest)WebRequest.Create(sUrl);
|
| Efficient way of querying datasets in c# | 20 Dec 2006 15:04 GMT | 5 |
Guys, I have an XML file which is 233MB in size. It was created by loading 6 tables from an sql server database into a dataset object and then writing out the contents from this dataset into an XML file.
|
| ref struct in mc++ to c# | 20 Dec 2006 14:15 GMT | 2 |
I wrote a classlibrary in vs 2005 mc++ and declered inside it a struct like this: public ref struct FGBITParam {
|
| dll from C to C# | 20 Dec 2006 14:11 GMT | 10 |
I have a problem. Function in C is : __declspec(dllimport) void cipher(char *key, char *input, char *output, int choice)
|
| DBNull with SQLBulkCopy | 20 Dec 2006 13:56 GMT | 1 |
While using SqlBulkCopy to load data into a SQL Server 2005 database, I've noticed an occasional exception that is saying one of the fields in my DataTable object contains a null value and this is failing the not null constraint on the table.
|
| Handle Exception over Remoting | 20 Dec 2006 13:40 GMT | 2 |
I use Framework 2.0, .Net Remoting, Client with WinForms and a Server. Everything works fine, but i can't catch Exceptions on the Client, which have been thrown on the Server. I would like to catch the ArgumentOutOfRangeException on the Client (if
|
| Creating multi-threaded code to break locked/wait state | 20 Dec 2006 13:13 GMT | 5 |
If I make a call to function which is in external library, and it goes into wait sate.. disabling my app to proceed further, how can I break this state elegantly? So far, I had to kill my process. Someone suggested to code multi-threaded app in which one can monitor
|
| Why can't you define a variable as public within the Main() method? | 20 Dec 2006 11:37 GMT | 8 |
The following piece of code appears in an example i'm reading after the class has been named. public string userMessage; However if i move that into my main method, i'm told that the keyword
|
| Server.MapPath Failed to map the path error | 20 Dec 2006 11:15 GMT | 4 |
The below code is what I'm using to upload JPG's to a Shared folder on my web server. The folder \\GLSDBS03\Entry$ is outside my Web folder. When using FileUpload, and trying to save the JPG, I get a "Failed to map the path '/GLSDBS03/Entry$'" error. I'm open to suggestions or a
|