| Thread | Last Post | Replies |
|
| interesting problem with events inherited from interfaces | 16 Sep 2005 15:27 GMT | 2 |
suppose there are two interfaces that contain methods with the same name but different signature: interface I1 { void F(); } interface I2 { int F(); }
|
| Question with BinaryReader | 16 Sep 2005 15:15 GMT | 6 |
I use BinaryReader to read my binary dafa files, when i call ReadBytes, why it always return more 4 bytes. The following is my code. FileStream fs = new FileStream(file, FileMode.OpenOrCreate, FileAccess.Read); BinaryReader br = new BinaryReader(fs);
|
| Getting IP adapters list | 16 Sep 2005 15:06 GMT | 2 |
In a sample code I do something like this: //Populate IP List IPHost=Dns.GetHostByName(Dns.GetHostName()); DefaultIPCombo.Items.Clear();
|
| Poor Coding? | 16 Sep 2005 15:06 GMT | 19 |
I have a try block that attempts to call a web service. The web service requires a token that can expire at any time, so I am using a catch block to refresh the token and then try the call to the web service again. This seems a little poor the way i'm doing it, so just wanted ...
|
| Importing CSV to Dataset Problem | 16 Sep 2005 14:22 GMT | 1 |
Can anybody please help me? I am trying to write my first project in ASP. NET (C#) and I am having some issues trying import a CSV file to populate the form with values I have a basic CSV file (bookName, bookPrice) and on the PageLoad event I
|
| Opennig Word document stored in database | 16 Sep 2005 14:13 GMT | 1 |
It is possible to open word document from database without storing it in temp file? (c#, office 2003) Thanks for any help Przemysalw Gawron
|
| How can a parent know if a child control chages | 16 Sep 2005 14:11 GMT | 6 |
We are building a framework in C#. One thing that we would like to do is know when any child control (checkboxes, radio buttons, etc.) is changed in a container of controls (such as a panel or a form). This seems like it ought to be simple, but we cannot figure out how to do it
|
| upload files | 16 Sep 2005 13:44 GMT | 7 |
I want to upload files without file control. suppose i have string "c:\test.txt" i am using this FileInfo Myfile= new System.IO.FileInfo("c:\test.txt");
|
| IntelliSense TextBox Control | 16 Sep 2005 13:41 GMT | 1 |
I want a textbox control which support like-as IntelliSense feature to allow user select a word when inputting text. Is textbox control support it? Or Are there any third party control support it?
|
| ValueMember = This ? | 16 Sep 2005 13:26 GMT | 3 |
I am binding a combo box to an ArrayList of objects with a property called "Name" that is assigned to DisplayMember. How can I have the SelectedValue of the combo
|
| multi-threading problem...help | 16 Sep 2005 12:20 GMT | 9 |
Ok, I have a thread that I start when user clicks to start: ThreadStart myThreadDelegate = new ThreadStart ThreadFunction1.getOneAtATime);
|
| relational operator on basic type | 16 Sep 2005 11:19 GMT | 1 |
I would like compare all type. I try with this function but I get System.NullReference.Exception if pass in Compare function two int type. Why relational operation isn't defined for basic type as int?
|
| SetSecurityDescriptor error 1307 | 16 Sep 2005 10:51 GMT | 2 |
I have a .Net console application. It creates a user's folder, sets permissions using WMI, then fails to give the ownership of that folder to the user (for quotas). This all executes on a single 2003 server, within a larger domain. My
|
| Dispose Method question | 16 Sep 2005 09:32 GMT | 3 |
If I did something like this :- ======================================================================================= //Method to return a ref to an SqlConnection private SqlConnection GetConnection()
|
| public static and static | 16 Sep 2005 09:14 GMT | 2 |
What's the difference "public static" and "static"? Do we have "protected static" and "private static"? If we do, in what situation will we apply them? Thanks for help.
|