| Thread | Last Post | Replies |
|
| wake from screen power save | 29 Sep 2006 23:02 GMT | 1 |
Is there a way to to "wake" a win xp machine from screen power save using c#? I got a computer that turns off the screen after a while and i'm programming an app that reads smart cards and I want the screen to "power on" as soon as
|
| Is it possible to use .net framework 2.0 in VS2003 | 29 Sep 2006 22:46 GMT | 1 |
I have VS2003 which use .NET framework1.1. VS2005 use .NET framework 2.0 I just wonder if it's possible to download .NET 2.0 from somewhere to use in VS2003 or is the only solution to get VS 2005 if I want to use .NET
|
| Memory Management Problem | 29 Sep 2006 22:43 GMT | 5 |
I've got a Windows Service written in C# that is having some unfortunate memory issues. I've been working with .NET MemProfiler and AllocationProfiler. But you don't have to use those programs to notice the memory leak. The memory usage in the TaskManager for the process
|
| Hashtable question | 29 Sep 2006 22:20 GMT | 3 |
I am using a hashtable as a cache. I am only allowed for the cache to take up a certain amount of memory. I think I can state how large I want the hashtable to be on creation. What I need is someway to monitor the size of the hashtable so that as it
|
| Identity in sqlbulkcopy | 29 Sep 2006 21:49 GMT | 3 |
How do you handle identity fields when using SqlBulkCopy ? textfile - no identity to sql server identity field - only additional field in sql server.
|
| About syntactic sugar | 29 Sep 2006 21:46 GMT | 13 |
While discussing C#'s using statement, a guy and I had an argument. In C# spec (15.13), there's an explanation like the following. using (R r1 = new R()) { r1.F();
|
| How do I Bind Data to a Datagrid in a C# Windows Application? | 29 Sep 2006 20:01 GMT | 2 |
The below code works in a Web application, but does not work in a Windows application. The DataBind() command only exists for Web forms. How do I write this code for a Windows app? Can you give me the code on how to do that? this.sqlConnection1.Open();
|
| Beside string, what can I used to store line greater than 2046 bytes | 29 Sep 2006 19:05 GMT | 2 |
In my code, I accept very long string, which may be greater than 2046 bytes. String can not exceed this limit. What else can I use to store these very long string? Thanks,
|
| Accesing property name at design times | 29 Sep 2006 18:44 GMT | 4 |
Please look at the code sample below. Class Customer { private string _ID;
|
| HTML DOM Tree | 29 Sep 2006 17:34 GMT | 4 |
I want to construct a DOM tree from the HTML source code. How can i get it ? Do you show me some source code for this. Thanks.
|
| Random Double with a given Range | 29 Sep 2006 17:34 GMT | 1 |
I´ve to implement an array which sum always have to 1. In the API Documentation I´ve found Random.NextDouble(), but it always returns a value x with 0.0 <= x < 1.0. Is there a range to specify the random value a bit more?
|
| Can't step into source code | 29 Sep 2006 17:33 GMT | 2 |
I have a 3 layer (data access, business logic and UI which is a web project) and up to now I have had full ability to step all the way down to the data access layer. For some reason now I can only step into the business logic and when I get to the data access layer I get the ...
|
| Need to generate a text file. | 29 Sep 2006 17:07 GMT | 3 |
I need to generate a flat text file where aeach is made up os fields and space. To automate the process, i want to define an xml file that describe the file form mate in term of
|
| Accidentally deleted assemblyinfo.cs! | 29 Sep 2006 16:19 GMT | 3 |
I wasn't looking carefully and accidentally deleted the wrong assemblyinfo.cs! Is there a way to generate the file again, or can I just hand code the entire file?
|
| How to change attribute in derived class | 29 Sep 2006 16:00 GMT | 3 |
Is there a clean way to change a property or method's attribute in a derived class without redefining the property/method itself. That is, redefining the property/method in the derived class simply to change its attribute is ugly IMO. I assume you can do this and then simply ...
|