| Thread | Last Post | Replies |
|
| windows service in c# | 11 Nov 2005 11:41 GMT | 6 |
Hello to all I have to make windows service(in C#.NET) and use (ATL Com dll made in visual studio 6) in my service How can i use that.Is by just add reference or there is some other way
|
| How does C#.Net update data? | 11 Nov 2005 09:26 GMT | 1 |
In my C#.Net Windows Form, I can insert 10 rows into MyDataBase.MyTable, using SqlDataAdapter and SqlParameter with no porblem. But this raise my question, HOW does this 10 rows insert into the MyTable. Is this 10 rows inserted into the MyTable one by one, or that 10 rows is
|
| Express Editions | 11 Nov 2005 08:10 GMT | 1 |
If you have not downloaded the free Express edition of Visual Studio C# and C++ you are missing out on a great deal :) I have tried using both and I am impressed. With the new managed syntax it is just as easy to write managed code in C++ as in C#. I was able to implement
|
| Logging soap requests in a web service client | 11 Nov 2005 08:10 GMT | 2 |
Hello, I want to log the soap requests (and responses) in my C# webservice consumer. I have extended my class with the SoapExtension, but the debugger don't step into the overridden methods. The WSClient class is running as part of a console application as administrator.
|
| db choice with c# .net | 11 Nov 2005 08:07 GMT | 3 |
I have a small application connected on MS Access db. MS Access is not safe DB and everybody can open it irrespective on password protection. I would like to get a little more protection with DB and question is what kind of DB I should use (I am using VS.Net and c#. ). Chosen db ...
|
| double.Parse(double.MaxValue.ToString()) yields an Exception | 11 Nov 2005 07:37 GMT | 5 |
"double.Parse(double.MaxValue.ToString())" yields the following Exception: Value was either too large or too small for a Double. at System.Number.ParseDouble(String value, NumberStyles options, NumberFormat
|
| Initialising when an Assembly loads | 11 Nov 2005 06:44 GMT | 8 |
I want to perform some initialisation when an assembly is first loaded. I know about static constructors, but that's not what I want. A class's static constructor is not called until something uses the class at run time. That may be too late.
|
| Inheritance and static factories | 11 Nov 2005 05:53 GMT | 2 |
I have a class C that uses a static factory and a protected constructor to create instances. I now want to derive a class from C. What I can't figure out is how to create either a public constructor or static factory (either would work) for the derived class. Can anyone give ...
|
| How to gather the ture short date format? | 11 Nov 2005 01:07 GMT | 6 |
I set the date format as "MM/dd/yyyy" on control panel. Then, I use System.Globalization.DateTimeFormatInfo.CurrentInfo.ShortDatePattern to return short date format. But it has not return my expected format, which return 'M/d/yyyy'. How should I do?
|
| full window | 10 Nov 2005 23:57 GMT | 3 |
I have a application that should cover the whole monitor (not just max state of the window). It should also cover the desktop status bar below the monitor. How can i do so?
|
| javascript : catch a click before asp net | 10 Nov 2005 23:38 GMT | 2 |
I got a usercontrol which generates LinkButton objects. I want that when the user click on it, a "confirm" javascript is generated. After reading http://groups.google.co.uk/group/microsoft.public.dotnet.languages.csharp/search ?group=microsoft.public.dotnet.languages ...
|
| listbox object different from listbox item name | 10 Nov 2005 23:23 GMT | 6 |
I added an object to a listbox. This object is a complex number and not a string so it shows "Consolapplication.Complex" as a list item. If I convert the complex number to a string then it shows a string which is correct but also store's it in the listbox as a string. I wan't to ...
|
| C# vs VB | 10 Nov 2005 22:49 GMT | 28 |
Any good resources regarding benefitis by using C3 over VB? /Andy
|
| combox not changing when it's bind to a listbox with dataview sour | 10 Nov 2005 22:22 GMT | 2 |
I have a window application. On one of the form, there is a listbox and a few combox. The lstSchItem has a dataview as a datasource. The comboxes are bind to its selected value but through the dataset table. Now when I change the selection in the lstSchItem the comboxes are ...
|
| basic listbox question | 10 Nov 2005 22:21 GMT | 1 |
How do I add an item to the listbox and label it? The "...Items.Add" property only takes one argument. That confuses me. for example: ListBox.Items.Add("My Car", picture object); //this does not work How would I store picture objects but label them with strings that show in
|