| Thread | Last Post | Replies |
|
| exception handling wrapper | 16 Dec 2004 10:24 GMT | 1 |
Hi, is there a way to create some kind of class that you can set to have event that will fire when exception is throws? instead of having a try .. catch block whenever the class is in scope, is exception is thrown a functio (event) is called, and the class can act to handle the ...
|
| file system transaction | 16 Dec 2004 10:13 GMT | 1 |
Hi, what are my options for using transaction in dot-net framework (thoes that work now and will continue to be supported in the future )? can i have some kind of file-system transaction (with or without database transaction as well)? is it possible to save a file to disk and ...
|
| Framework 2.0 | 16 Dec 2004 08:39 GMT | 2 |
When will version 2.0 be released ? I am looking forward to master pages... Thanks Murphy
|
| SqlTransaction issue | 16 Dec 2004 08:29 GMT | 5 |
The question is about how to check if the transaction is still active. Let's say, that I am using a 3rd party stored procedure, that cannot be changed. Sample is (Of course, the real one is much more complicated): CREATE PROC test AS IF @@trancount > 0 ROLBACK TRAN
|
| Security: Shared Drive and EXE | 16 Dec 2004 05:49 GMT | 1 |
I have an WinForms-Exe which will be started from a Shared Network-Drive. Without configuration I get a security exception (FileIO-Permission). Which is the best way to give this EXE or drive the same rights as an EXE in 'Local Computer' zone?
|
| Download a file from internet | 16 Dec 2004 05:24 GMT | 1 |
Somebody know how to download a file from internet ? I write a script with C#, and run with CSC I do not find what is the best class ... ? System.Web. ... ???
|
| File.Move / File.Copy exception | 16 Dec 2004 03:09 GMT | 2 |
I'm having a lot of trouble try to move files from one directory to another. See below test harness: string[] Files = Directory.GetFiles(@"C:\Temp\Test1\", "test*.txt");
|
| Managed Code vs Unmanaged Code | 16 Dec 2004 01:27 GMT | 4 |
Apologies if this has been discussed before. I have a hard time understanding the difference between the two above. Can someone in simple layman terms please explain why C/C++ is unmanaged while C# or anything in .Net is managed. Believe me when i say that I have really searched ...
|
| Configuration error | 16 Dec 2004 01:03 GMT | 1 |
Hi I have a web app that was working, recently copied some files over and now getting the error below. c:\winnt\microsoft.net\framework\v1.1.4322\Config\machine.config error on line <add assembly="*"/>
|
| Visual studio .net setup project and registry values? | 15 Dec 2004 22:34 GMT | 1 |
How can i add a programs installation path in the registry keys in a setup project? since i dont know where the user installed the program i need to set a registry key
|
| Start Stop Restart Service | 15 Dec 2004 21:25 GMT | 1 |
I would like to be able to write a web app that will allow my administrators to Start Stop and Restart services from a webform. Is this possible with ASP.Net? I am using VB.Net. Thank you in advance for your responses.
|
| System.Xml - Controlling linebreak/indentation on child/inline ele | 15 Dec 2004 19:55 GMT | 1 |
I'm going insane fighting against the xml reader/writer. I have xml that should look like this: <source><g>varname</g> some text <g>varname</g> <g>varname></source> This is a simplified version, but the point is that all spaces in the
|
| Connections Strings | 15 Dec 2004 19:44 GMT | 2 |
I have created a web site that is being run on a Web Server (Computer #1) and information from the web site is stored in an access (Jet 4.0) database on another computer (Computer #2). Computer #2 is a domain controller and has a folder that is shared to hold the database. When ...
|
| Memory | 15 Dec 2004 19:29 GMT | 1 |
I have a C# .NET Console application which, in spite of garbage collection and the fact that I'm pretty sure I have no lingering references, slowly takes more and more memory as it runs (as shown in the task manager) until it slows to a crawl.
|
| Print from server side code in ASP.net? | 15 Dec 2004 19:05 GMT | 4 |
Print from server side code in ASP.net? is that possible I think without using Javascript. Can u tell me a tutorial bout this: I saw somewhere usiing the printdocumento bject
|