| Thread | Last Post | Replies |
|
| Problems with security issues | 31 May 2004 23:01 GMT | 4 |
I'm writing an application that connects to a server and downloads and stores files in subdirectories of the application's folder. This has worked fine...up until I tested the application on an XP limited account. It didn't work on the limited account. One of the
|
| .net windows service. How to set a start sequence | 31 May 2004 21:35 GMT | 1 |
I have 3 .net windows service applications. I need that windows starts them in a sequence First the X service, Second the Y service and third the Z service. Something like
|
| Installation of 1.1 Framework... | 31 May 2004 20:49 GMT | 2 |
This is a newbie question, no doubt. I have recently started writing code using VS C# 2002 and tried to update to the new 1.1 version of the framework. Now the installation says it was successful but in the about box, I still
|
| XML Tables? | 31 May 2004 19:36 GMT | 1 |
Dear friends The XML format for reading from .Net is as this: <?xml version="1.0" standalone="yes"?> <dataroots>
|
| How to loop through ADO.NET recordset... | 31 May 2004 17:49 GMT | 1 |
Hello, in VB6 there were literally tons of examples of how to select a group of records from a database, and then loop through each record, one at a time. I can't find a single example of that for VB.net, though. Could somebody please give a simple example which does this with ...
|
| Error handling: What's recommended for Class Libraries? | 31 May 2004 17:41 GMT | 2 |
I've been searching for some general, practical guidelines that distinguish between when it's the responsibility of the architect to throw errors, and when it's assumed that catching them is going to be the responsibility of the app programmer. As somebody who is new to
|
| Circulat dependency | 31 May 2004 17:35 GMT | 3 |
I am having assembly A with reference to assembly B and B need reference to A. The IDE does not allow it because of circular dependency. How can I solve it (when i cannot change existing code in A or B).
|
| Process.Start() and Childs Process | 31 May 2004 16:32 GMT | 2 |
I have a Process.Start() method that launch a "main.exe" files . The "main.exe" launch 3 sub-file : a.exe b.exe
|
| FileIOPermission issue | 31 May 2004 15:15 GMT | 1 |
I have this code sample FileIOPermission fp = new FileIOPermission(PermissionState.Unrestricted); fp.Deny(); StreamWriter sw = new StreamWriter(@"c:\test.txt");
|
| .Net 1.1 install fails prematurely | 31 May 2004 14:41 GMT | 2 |
I hope someone can help me. HP PSC 1350 all-in-one printer requires .NET 1.1 Framework. I've tried installing it by copy/pasting netfx.msi and netfx1.cab to the hard drive and by downloading it from the Windows Update site. In both cases, I get the "installation has failed ...
|
| WMI for Win32_Volume not working | 31 May 2004 14:27 GMT | 5 |
I'm trying to execute this simple query: ObjectQuery objectQuery = new ObjectQuery("Select * FROM Win32_Volume"); ManagementObjectSearcher searcher = new ManagementObjectSearcher(objectQuery);
|
| Socket.Select() does not block??? | 31 May 2004 13:33 GMT | 2 |
I have a strange problem as Socket.Select() doesn't block when I call it in C#. To be sure that there is no error in my code I went to http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlr fsystemnetsocketssocketclassselecttopic.asp and copied the sample C# ...
|
| ipv6 in compact framework | 31 May 2004 12:11 GMT | 2 |
HI!!! I have a question. I've changed in teh machine.conf file, and I've habilted ipv6: <ipv6 enabled="true"/>. But, when I call to
|
| All Your Thread Are Belong to Us | 31 May 2004 10:33 GMT | 27 |
I have a nasty bug in my multi-threaded app which I think is being caused by "race conditions" with multiple threads. I'm getting data corruption. The app is an HTTP server I'm making just for fun. I noticed the bug
|
| WSAAsyncSelect in .Net framework | 31 May 2004 09:35 GMT | 7 |
is thery any equivalent in .Net Framework of WSAAsyncSelect win32 api function ? I want my application window being notifyed about network events... (asyncroniously)
|