| Thread | Last Post | Replies |
|
| Path.GetDirectoryName() \\?\ and long directory names? | 18 Oct 2006 20:01 GMT | 5 |
I know, that Path-names should be shorter than MAX_PATH (250), but the Win32-SDK allows specifiying longer names using the "\\?\" prefix. As I have an application that accesses files directly using the volume name instead of the drive letter
|
| Iterators and static class | 18 Oct 2006 19:59 GMT | 8 |
I have to implement IEnumerator interface in my (static) class. But compilers throws me an error: 'GetEnumerator': cannot declare instance members in a static class For example:
|
| MaskedTextBox and strings | 18 Oct 2006 19:30 GMT | 1 |
I have had a look on google groups for help on the MaskedTextBox and strings but every post I find seems to relate for formatting numbers. So, is it possible to set up a mask on the MaskedTextBox that would force the user to only enter alpha characters (A to Z) or am I condemned ...
|
| Global Assembly Cache | 18 Oct 2006 19:28 GMT | 2 |
I've received a fix for my application in the form of a dll, and this dll needs to go to multiple locations in the OS including the GAC. Instead of having the users copy dlls to these locations on their own I want to create a setup project using Visual Studio 2005 to create an
|
| Configuration Question | 18 Oct 2006 19:09 GMT | 3 |
I asked a similar question yesterday with no responces. I want to read and write to a configuration file with user settings.(Windows App) Are there any good books, or sites that explain
|
| BITS questions | 18 Oct 2006 18:28 GMT | 2 |
Where do I post questions regarding BITS (Background Intelligent Transfer Service) SDK issues and questions ?? Vijay
|
| How can I change the Cursor of THE WHOLE APPLICATION ? | 18 Oct 2006 18:24 GMT | 1 |
- Using C# .NET 2.0 - How can I change the Cursor of THE WHOLE APPLICATION ? I need to access something like : Application.Cursor.Current ( Cursor.Current = this.Cursor.Current = Cursor of the current Form = Not
|
| Generic iterating for dummies | 18 Oct 2006 18:21 GMT | 2 |
Ive been using arraylists in 1.1 to return collections of custom business objects, and thoroughly enjoyed their simple programming style. After hearing of the advantages of generics during a 2.0 app, I decided to try one. I changed a "GetCollectionOfObjects"-type method to return ...
|
| Disposing Objects? | 18 Oct 2006 17:37 GMT | 13 |
I am developing a financial application and you know that there are huge amount of data in these similar aplications. I have a MDIChild form and the other forms are opened in this form. For example, in a form i fetch many rows from the database to show them to the user on the ...
|
| DBNULL to DATETIME | 18 Oct 2006 17:00 GMT | 4 |
how can i cast a null value from a datareader (System.DBNull) to dateTime I have an object. One of its fields is a DateTime type field. From the database i am getting System.DBNull values from its corresponding column. What can I do to cast it? i don't want to implement a custom ...
|
| Is Dump Complete? | 18 Oct 2006 16:41 GMT | 2 |
We have a file that is an extract file that represents data from several different systems (main frame, etc). This data varies and so from day to day the file that gets generated has variant size of data. Sometimes is just 5 meg, other times is can be 10 gig. This means that the ...
|
| Using C written DLL function in C# Programm | 18 Oct 2006 16:34 GMT | 2 |
I have a serious problem, trying to call a C written .dll function in my c# program! The problem is I only have the already compiled .dll file and cannot look into the code. I have no problems calling all functions that are listed in the .dll, that works just fine... except
|
| excel | 18 Oct 2006 16:20 GMT | 2 |
i did not the office version of the system in which the application is going to be deployed. is there any way of opening an excel file which is office independent. My requirement is that i have to open a template file which is in the
|
| MonthCalendar - how to get the value of the selected date | 18 Oct 2006 16:11 GMT | 1 |
Hi, How can I get the value of a selected date (after i changed the date) ? Thanks, Gidi.
|
| Why is image and Bitmap a sealed class? | 18 Oct 2006 15:22 GMT | 5 |
Why did microsoft seal these classes? I would like to add coordinate information to these classes but I can't derive from them ;/ It makes me wonder why microsft choose to prevent anyone from deriving from many classes.
|