| Thread | Last Post | Replies |
|
| interlock problem | 28 Sep 2006 06:23 GMT | 2 |
I have Download form, that starts Download file thread which uses interlocked Stop variable to stop thread when Dispose will set Stop to true; bool nExit; readonly object exitLock = new object();
|
| Datetime - how to get that | 28 Sep 2006 03:23 GMT | 1 |
How do I get the current date and time ?
|
| get TableAdapters command at run-time ? | 27 Sep 2006 23:58 GMT | 1 |
I have multiple tables that have the same structrues that I need to switch at run-time. for example, I have table A, B and C, they all have the same structure. At run-time, the GUI will determin which table I'll be queriying on.
|
| strange build error | 27 Sep 2006 23:39 GMT | 2 |
Hi all, when I try to build my solution in Release mode (debug mode is ok), I get following error: Error 74 Could not find file 'Microsoft.Windows.CommonLanguageRuntime, Version=2.0.50727.0'.
|
| Best approach | 27 Sep 2006 23:02 GMT | 1 |
Hello All, Before I starting writing the code, I would like to figure out what the best approach to this problem would be. I want to create a process that imports a text file (Pipe | delimited), then after looping through the entire file, puts each field into a SQL Server ...
|
| String Separator | 27 Sep 2006 22:49 GMT | 4 |
Can anybody help with this , I have a String like"ABCDE", I wanted to convert this into string array String array[]={"A","B","C","D","E"}. I know we have to use string.Split(). But not sure how to send the Delimiter.
|
| What does this mean []? Attributes? | 27 Sep 2006 22:21 GMT | 2 |
take this snippet from 4guysfromrolla: namespace skmCalendar { [ ToolboxData("<{0}:HoverCalendar
|
| SQL Data Source, refresh and access data rows in web forms Codebeh | 27 Sep 2006 22:20 GMT | 2 |
I'm new to both VS2005 and C# Web Forms (Though I have tons of experience with VB.Net and VS2003). Creating a Data Source visually in VS2005 is easy as pie - I love it, but how do you or would you ever use this control to create a dataview or dataset
|
| string diff algorithm | 27 Sep 2006 21:33 GMT | 1 |
Does anyone know of a good string diff algorithm they could point me in the direction of? I just need to display the differences between two reasonably large strings in a pretty format on a web page. Thanks in advance,
|
| Recognizing Page Refresh in On_Unload | 27 Sep 2006 21:03 GMT | 1 |
Hey all, Does anyone know how i can detect a refresh of the page in the unload event on the server? The problem I'm having is that refresh automatically calls the previous
|
| Delegating Events | 27 Sep 2006 20:13 GMT | 1 |
Say you have a class that raises an event: public class SomeClass { public event EventHandler SomethingHappened;
|
| Installer class oddities | 27 Sep 2006 20:06 GMT | 3 |
I have a C# service where I have included a ProjectInstaller class to handle the installation. I experiance a number of oddities, and I don't know if I'm doing anything wrong, or if the Installer class is behaving odd. 1. I added code in the Committed event handler to start the ...
|
| 'Debugger Users' group error | 27 Sep 2006 19:08 GMT | 1 |
I'm receiving this error when trying to run a C#2003 ASP.NEt application. The error is the following: Error while trying to run project: Unable to start debugging on the web server. You do not have permissions to debug the server. Verify that you are a member of the 'Debugger Users' ...
|
| Directory.GetFiles for multi-language file names? | 27 Sep 2006 19:06 GMT | 3 |
Is there a way to get Directory.GetFiles to return multi-language file names? I haven't found any overloads that allow any such parameter. The way I am using it now is: foreach (string d in Directory.GetDirectories("C:\\")) {
|
| BUG: Binary Serilization on DataSet and Windows XP in .NET Remoti | 27 Sep 2006 18:33 GMT | 7 |
If you do .NET Remoting and Binary Serilization with DataSet it does not work. If you set the Serialization type to Binary on DataSet, it does not seralize it correctly on windows xp. To do this set the serilization to Binary and use it in remoting on Windows XP.
|