| Thread | Last Post | Replies |
|
| Unable to find an entry point named EnumerateSecurityPackagesW in | 18 Aug 2005 08:23 GMT | 2 |
I am trying to solve the following exception. The exception occurs when my ASP.NET code behind code attemtps to access a remore site using SSL. Please note that all certificates are valid and the remote site is trusted. Also, my web site uses a custom HTTPModule implemented in a ...
|
| Best practice for for regex and match objects | 18 Aug 2005 04:27 GMT | 1 |
If I need to reuse regeex pattern or let non dotnet com client to reuse the pattern to match against different strings, what is the best way? How should I free up the resources held by regex? Right now, I am leaning towards this way
|
| re-install? | 18 Aug 2005 03:34 GMT | 2 |
I've made some changes to machine.config which didn't work out as we expected. When I changed back to the original version, none of the sites work(including reporting services). I get an "Access is denied. " exception with the following message:
|
| DLL's and EXE's | 18 Aug 2005 02:52 GMT | 6 |
I'm trying to start to implement DLL's in my Windows Application solutions, but I'm having a liitle problem. Can I access members of executables projects from DLL projects? Thanks!
|
| SerialPort and hardware flow control | 17 Aug 2005 23:28 GMT | 4 |
After some tests with a serial connection and the SerialPort class, I found out that in hardware flow control, you have to manually stop sending data when the CTS ligne goes low. I made some test and the SerialPort class doesn't seem to react to the CTS signal. If you tell to ...
|
| Misbehaving COM object? | 17 Aug 2005 21:10 GMT | 18 |
We have a .NET project that makes pretty regular use of a COM object that appears to be misbehaving. Am I correct in understanding that setting a COM object to nothing should act the same way that it would have in VB6? By this I mean it is actually destroyed and not marked for
|
| Allowing .NET code to run from a network share | 17 Aug 2005 21:09 GMT | 2 |
I understand that there's no way to run .NET compiled code from a network share without security modification but here's my issue - the code needs to run on a number of workstations (50 or more) and having each one modify their individual workstations would be an
|
| C# code to read from a CD | 17 Aug 2005 20:06 GMT | 1 |
Is there any way to read files from a CD with C#. Thanks in advance. regards
|
| how to build executables for .NET 1.1 on vs 2002 | 17 Aug 2005 19:39 GMT | 1 |
HI every one, I really tried all I know on how to make a windows application (compiled) on visual studio 2002 I am using C# to I have tried to reference the DLLs in the 1.1 folder but it will crash as soon as I use any class that is not in the 1.0 example
|
| Computer Resources | 17 Aug 2005 18:02 GMT | 3 |
I have an application that is using ODBC drivers that are eating VERY Large amounts to computer resources when performing queries against a database. When the application first starts the query is performed at an acceptable rate, but after the first query if another one is ...
|
| Graphics/Image Conundrum | 17 Aug 2005 17:22 GMT | 2 |
I have a C# application that manipulates images. The application provides the ability to pan around the images. Normally you can "grab" the image and move it around and it moves in real time with the mouse cursor. There is very low friction. It slides easily.
|
| Hash Codes: Can C# and J#/J++ values be reconciled? | 16 Aug 2005 21:32 GMT | 1 |
C# and J#/J++ return very different HashCodes for the same string. Is there a reliable and generic way to reconcile these values? For example: [C#] string foo = "BOB";
|
| Help in Design Mode | 16 Aug 2005 21:00 GMT | 1 |
I have a question. Writing an add attribute statement, the following help in a tooltip appears: Add(key As String, value As String) Key:
|
| sqlDataAdapter Error | 16 Aug 2005 20:46 GMT | 1 |
I have the following code attached to the click event of a button. It fails on the line "da.Fill (ds, "Results") The error is below the code. Any suggestions would be greatly appreciated. Thanks. Dim cmd As SqlCommand = SqlConnection1.CreateCommand
|
| Namespace organization | 16 Aug 2005 20:37 GMT | 5 |
Any advice on how to organize my core class library project into sub-namespaces? What are the general rules of thumb regarding cross-namespace references? Can I have a class in namespace A have a function or a property that returns a class from a different namespace?
|