| Thread | Last Post | Replies |
|
| How do I reference my new class? | 16 Sep 2006 13:35 GMT | 9 |
I have a .aspx file and it's src. I also have a third file, a class that the src references. Everything is in the same directory/folder. Everything has the same namespace. How do I reference the class in my c# .src file? I don't believe this is an ASP.NET question, but a OOP
|
| Timer in a Windows Service not firing? | 16 Sep 2006 12:09 GMT | 3 |
I have a service I am writing. The last step of the onLoad event is to enable a timer, however this timer never seems to fire. I have added a line of code after the timer enable line to write the status to the event log, and this definitely says the enabled property is true... ...
|
| Why doesn't tabaleadapter wizard code implement SelectParameters ? | 16 Sep 2006 09:30 GMT | 3 |
I have MSDev2005. I create a new TableAdapter using the designer. The designer does not implement SelectParameters, and this pproperty seem to not exists at all on the adapter.
|
| Help With Using System.Text.Encoding To Download File | 16 Sep 2006 07:16 GMT | 4 |
I am using the following code to download multiple file types from a server. .txt files transfer fine. however Word .doc files come through garbled and I don't know enough about encoding to understand why.
|
| Replacing text in a very large file | 16 Sep 2006 01:15 GMT | 3 |
I have a very large file containing fixed-length records. I'd like to create a method to update one of those records without incurring the cost of rewriting the entire file. Is such a thing possible in C#? Nothing that I've seen in System.IO
|
| bool and Boolean | 16 Sep 2006 00:43 GMT | 3 |
Should I use bool or Boolean to define a variable?
|
| Generic helper function to check for dbnull value for any type? | 15 Sep 2006 23:17 GMT | 2 |
.NET 2.0. Is there a generic single function to check for a dbnull regardless of data type? John Dalberg
|
| Dropping information into Excel from a Grid | 15 Sep 2006 23:09 GMT | 1 |
I know how to drag and drop information when I'm the one receiving it, but I don't know what format to put the data in so excel would accept it, if it was dragged over to it. Can anyone please point me in the right direction?
|
| Is there anything like *static destructor*? | 15 Sep 2006 23:00 GMT | 4 |
In C#, we can initialize static member variables in static constructor. Now, when to destruct these static member variables? If these variables hold external reference(e.g. log file stream), it is supposed to be disposed in *static destructor*. However, there is no so-called *static
|
| Obfuscator | 15 Sep 2006 22:52 GMT | 1 |
What obfuscator protects MSIL the best? Thanks, Sharon.
|
| Reducing reserved memory | 15 Sep 2006 21:56 GMT | 6 |
how can I reduce reserved memory for my process? Because according to ProcessExporer (and GC.GetTotalMemory() and taskmanager) I use about 5-6MB and reserved memory is nearly 70MB. I don't need such amount of memory, after start I nearly don't need to allocate more memory.
|
| stored procedure output to generic list, noob | 15 Sep 2006 21:00 GMT | 1 |
I've got this really simple table with two fields book: name varchar(50) phone varchar(50)
|
| What class is the object ?? | 15 Sep 2006 20:33 GMT | 13 |
I need to figure out what kind of class a object is: public class ClassA { public string Name = null;
|
| System.Timers.Timer() sometimes gets stuck and disappears?? | 15 Sep 2006 20:20 GMT | 7 |
Wow...I have one for you all and hopefully I am not understanding this timer object correctly. I have a timer setup that pulses a connection through a socket every 60 seconds. But it seems recently connections just drop off because the timer stops firing.
|
| How does one check if an object's reference is NULL? | 15 Sep 2006 20:04 GMT | 4 |
How does one check if an object's reference is null? I'd like to check that rather than catch a nullreference exception. thanks.
|