| Thread | Last Post | Replies |
|
| Enumerate Culture Info? | 06 Aug 2004 18:42 GMT | 1 |
I am looking for a way to enumerate all if the CultureInfo values supported by the .NET Framework. Is there a CultureInfo collection? I can do this: CultureInfo svCulture = new CultureInfo(0x440A,false);
|
| How to extract the NT username from NTLM message? | 06 Aug 2004 18:15 GMT | 2 |
I would like to implement a server side script that extracts the NT username from the "Authirization:" header that is sent from the client. I configured IIS to use Windows Authentication and disabled anonymous access in order to force the client send its credentials.
|
| Execute a .SQL File | 06 Aug 2004 15:42 GMT | 10 |
In my application, i get datas that i put in a .SQL f.ile I would like to execute this file for integrate the data onto a Sql Server database. I know that i can parse the file line by line for executing the SQL
|
| Exception in configuration section handler | 06 Aug 2004 14:13 GMT | 1 |
I have a weird problem and the error I get is not very helpful. My code simply calls a function in a DLL. If I impersonate another user, I get something like "Exception in configuration section handler, line 92", but if I impersonate as myself (seems moot but I was testing if
|
| HELP: How to convert a Region object to a GraphicsPath object | 06 Aug 2004 13:52 GMT | 11 |
I have a complicated Region object, which I need to draw the outline, but not fill How can I convert the Region object to GraphicsPath object? or How can I draw the outline of the Region object?
|
| WindowsForm Application in C#.NET | 06 Aug 2004 11:19 GMT | 3 |
I have created a WindowsForm application in C#.NET. When I try to run the exe on some machine without .NET framework it errors out and prompts for .NET framework installation. Do I need to install the complete the .NET framework on the machine I am runing it on or can I
|
| Error installing .net framework 1.1 | 06 Aug 2004 08:16 GMT | 1 |
I need to install the .net framework 1.1 to run a financial software on my Widnows ME. I received a message that the "setup cannot acess Microsoft Windows Installer component". Based on the dotnetfx.log the setup cannot find "C:\windows\installer" folder. I received a message the ...
|
| MSSupport: Compact Framework connection issue | 06 Aug 2004 02:36 GMT | 6 |
"Unable to read data from the transport connection" error received when trying to connect to a website through a firewall that requires a username, password, and domain. The code works from behind firewalls that don't require domains.
|
| HELP: Error creating window handle | 06 Aug 2004 02:33 GMT | 4 |
I have 30 - 40 type of different window. For each type I need about 20 instances of the window. When I try to create them, I get "Error creating window handle" My guess is there is a maximum number of window handle, because if I reduce
|
| Reverse DataColumn order in a DataTable | 06 Aug 2004 02:27 GMT | 1 |
Does anyone know how to do this ? I've searched for some tips but nothing...... Thanks. --
|
| .Net Scalability problem | 06 Aug 2004 01:28 GMT | 2 |
Actually I need Technical Support I finished a Great project using .Net and SQL Server and .Net Mobile Control My Business case is to implement this Program to accept about 1
|
| C# question that should be simple... | 05 Aug 2004 23:59 GMT | 1 |
Friends, How can I make a shallw copy of any object in C# .NET? For example, I want to make a copy of a managed DX9 Directplay NetworkPacket. The class is sealed so I can't derive from it and use MemberwiseClone. I'm sure there is a simple (and probably obvious) way to do this ...
|
| ByVal bug in VB.NET 2003 | 05 Aug 2004 23:45 GMT | 1 |
I've been using VB.NET for almost a year now and something that has continually confounded me is how the ByVal statement doesn't seem to apply in some cases. It seems to happen when you have a class that contains a structure and you try to pass that structure ByVal to some other ...
|
| Strings.. Objects or not??? | 05 Aug 2004 22:39 GMT | 57 |
I am wondering why string's are not true objects?.... Let me explain... If i write the code Dim x1 as String = "veg" Dim x2 as String = "veg"
|
| HELP: How to get the outline GraphicsPath? | 05 Aug 2004 21:01 GMT | 6 |
I have n number of circles. Some of them might overlap. I need to draw the outline of all circles but not those overlap areas. Initially, I am try to use a Region, because a Region object has a Union function
|