| Thread | Last Post | Replies |
|
| How do I split this String? | 12 Jun 2006 17:18 GMT | 6 |
I am looking for some expert advise to get me out of trouble. I am looking for a solution in C# which will allow me to split the below string in the format provided. The String.Split() allows only a single char as a delimiter.So I cannot use that as well. Original String "*** ...
|
| Using a String as the name of a struct's field | 12 Jun 2006 17:05 GMT | 4 |
Well here is some code that will help explain the situation: I first make a struct that actually will be used to save some server informations: struct Server {
|
| String.Concat vs String.Format | 12 Jun 2006 17:04 GMT | 18 |
I know its a sin to use strings, lets skip that part... Which of these is faster and uses less memory? String.Format("SomeValue='{0}'", m_Value); or
|
| Custom Control Event | 12 Jun 2006 16:37 GMT | 3 |
Hello to everybody. I have a little problem with a Custom Control that I have created. The thing is that in my control, when I click a button, it should create another object in the main form.
|
| Get Windows directory | 12 Jun 2006 16:24 GMT | 2 |
How can I get name of Windows directory in c# without using API??
|
| Microsoft.Office.Interop.Excel doesn't like me | 12 Jun 2006 16:21 GMT | 5 |
Ok, I've tried everything I could come up with but nothing is working. I am creating an application which needs to post information into an excel document. I have not yet had a chance to play with any of the methods because I cannot pull in the Microsoft.Office.Interop.Excel
|
| shorthand for T | 12 Jun 2006 16:13 GMT | 4 |
Suppose i have this code: int value = 0; // TODO: Initialize to an appropriate value Parameter<int> target = new Parameter<int>(value); Assert.AreEqual<int>
|
| Process StandardInput Limitations ? | 12 Jun 2006 16:11 GMT | 4 |
I'm building a software to interface with an .exe that will parse a text file (a lex program build in cygwin that works great when it's executed on it's own). The OutputXML is more than 150 000 characters and the software always
|
| Validate SQL Expression | 12 Jun 2006 15:59 GMT | 1 |
How to validate a SQL Expression in C#? Thanks!
|
| Using NAnt RC4 to build .Net 1.1 Code | 12 Jun 2006 15:53 GMT | 1 |
I am in a conversion project of Code from .Net 1.1 -->.Net 2.0 . 1. I am going to build all my projects with NAnt RC4 version and also with VS2005 to check the affected Areas. 2. I have both the Versions of my code in my machine, 1.1 and 2.0.
|
| Thread DataSlot | 12 Jun 2006 15:37 GMT | 3 |
The Thread class exposes AllocateNamedDataSlot() and AllocateDataSlot() methods which allow allocating memory for thread-specific data. How is this different from encapsulating each running thread in a class and using that class to store the data?
|
| Auto-Updates using MSI | 12 Jun 2006 15:26 GMT | 1 |
I need to implement Auto Updates in my application wherein I will be installing the application using msi. First time I will be installing it through CD.( Directly running the MSI file) Next time any of my clients run the application and if newer
|
| C#, dao, optional parameters and Seek method | 12 Jun 2006 15:25 GMT | 1 |
I need to use DAO in one of my applications. It was too hard to pass through by optional parameters for several methods, but now I'm totally lost at DAO seek method (the main method for key s). The method has a next declaration:
|
| Suggestion on Developer workstation please | 12 Jun 2006 15:17 GMT | 4 |
We are working on a large web project which will be implemented in C#2.0 and SQL2005. Our developers are going to get new workstations and we are in the process of acquiring workstations. Please kindly provide the configuration you are using now, so I can prevent
|
| Disable Checkbox in TreeView control | 12 Jun 2006 15:17 GMT | 3 |
Does anyone know how to disable a single check box in a Windows Forms TreeView control.
|