| Thread | Last Post | Replies |
|
| Unable to load DLL - The file is there | 15 Mar 2006 11:03 GMT | 7 |
I have a problem loading a DLL file that is exactly in the same directory of the executable. The DLL is not in .NET format but can be accessed through P/Invoke. This never happened to me.
|
| Property Attributes c# | 15 Mar 2006 10:13 GMT | 5 |
I am displaying a list of properties on my GUI. All the properties have combo boxes that shouldn't be allowed to be edited. At the minute this works fine for bool values, see the code below for the Enabled property:
|
| Working with oracle! | 15 Mar 2006 10:12 GMT | 1 |
I'm not beeing lazy. I serached for sometime the way to use the newest .net classes for calling executing an oracle stored procedure with the parameterdirection property se to output. I'm probably beeing unlucky finding the right C#.
|
| C# connection and file access question | 15 Mar 2006 10:04 GMT | 3 |
In C# the SqlConnection= "data source=192.168.100.100;uid=MyID;password=MyPwd;database=ETCserviceTest "; and it is for SQL data connection.
|
| XmlTextReader Hack | 15 Mar 2006 09:41 GMT | 4 |
I am trying to use an XmlTextReader to retrieve data. I need to use an XmlTextReader because it is faster than using an XmlDocument. I have found an inelegant way of retrieving each item's title and description using string methods. See my code below. I would like to know how
|
| DHCP reservation | 15 Mar 2006 08:55 GMT | 5 |
Is there any sample code for making a DHCP reservation via C#? Thanks in advance
|
| 2005 Studio headache | 15 Mar 2006 07:32 GMT | 3 |
Hi all. Sorry about the crude headline but this problem is really giving me a headache. See I am currently deloping an app in Visual Studios 2005 C# Lanuage and the thing is like this: I have a DataGridView on my form. In this DataGridView is a
|
| Problem displaying 40,000 - 60 char entries in a text box. | 15 Mar 2006 06:00 GMT | 4 |
I have a problem that should be relatively easy to fix but the solution just seems to elude me. I am creating a Windows app that contains a text box that I wish to fill with data from a file. The file contains approximately 40k, 60 character
|
| XML as a DataBase | 15 Mar 2006 03:29 GMT | 2 |
I thought accessing XML with DOM functions and structure is the best for XML. A developer at my company told me that there is a way to access XML files as Databases, Datasources or something like that.
|
| opening excel file in ASP.net 2.0 | 15 Mar 2006 01:32 GMT | 3 |
i have an excel file stored in C:\Test.xls(server driver) i would like my web application to allow this file to be opened by the client by prompting the save as dialog..how can i do this in C#
|
| C# vs C++ | 15 Mar 2006 00:50 GMT | 33 |
Is there a difference of opinion between C# users and C++ users as to whether C# is generally a replacement for C++? I asked this in the C++ thread and most people people who responded say that C# is not a replacement for C++. Do C# promoters have a different view?
|
| Wait() and Set() | 14 Mar 2006 23:39 GMT | 3 |
I am using Manual Reset Event by defining it in a thread and than doing mre.WaitOne(), in the other thread which is activated in a handler which is called due some event I am doing mre.Set() But There is no way that the part of mre.Set() i reached although when I
|
| How to use MsgBox in C# | 14 Mar 2006 23:02 GMT | 2 |
There is a MsgBox function in VB. Have there equivalent function or calss in c#?
|
| Safer locking support | 14 Mar 2006 22:57 GMT | 11 |
Using lock(this) has been much maligned since someone external to your object can lock causing possible deadlock and forcing you to now create an extra object lock_=new object(); in any classes using locking with nothing better to lock on.
|
| Read-Only and edit states for a from | 14 Mar 2006 22:55 GMT | 2 |
I amplanning on having a rea-only and edit states for my form. But it do not want my form and its controls to look different or disabled. I am planning on having a edit button that brings the form from read-only to a edit state. Is there any easy or built-in way of doing this in ...
|