| Thread | Last Post | Replies |
|
| calling a function without a page load event? | 07 Dec 2005 14:33 GMT | 5 |
I'm storing data on all of the files we upload to our site in a database. Instead of just linking directly to the file, I'd like to link to a page that will then grab the file and update a count in the DB (for traching which documents get the most downloads).
|
| CF 1.0 Socket Receive Timeout | 07 Dec 2005 13:17 GMT | 1 |
I am trying to determine the best way to terminate a synchronous socket receive. Since you cannot specify a timeout value you have to wait until an execption is thrown. I have tried using a timer and then shutting down and closing the socket but
|
| Delegate constraint restriction | 07 Dec 2005 12:28 GMT | 1 |
As my first delve into the version 2.0 framework I am upgrading an application which registers/unregisters ActiveX components. One of the things I wanted to do was update the code which handles the registration of DLLs (previously it had used the technique of creating an ...
|
| compression question | 07 Dec 2005 10:26 GMT | 2 |
I'm using #ZipLib to compress some data. I wonder what's better: - 1. produce a big (tar) file (concatenation of multiple stream) and gzip it - 2. gzip all my element str and tar the whole bunch
|
| Is it possible to throw an exception into parent thread? | 07 Dec 2005 09:05 GMT | 6 |
How should I handle exception inside of a thread seperate from the UI thread? Is this a way to throw them to the UI thread, or just using events that describe an error occured? Thanks,
|
| FileSystemObject / Thread / Application Hangs | 07 Dec 2005 08:37 GMT | 2 |
I use FileSystemWatcher in a module with a Main() function that loads some Forms (Window Forms Application). The starting object of the application is not a hidden form but a module. I have to use the Application.Run() statement, without that the application exits. ...
|
| Writing a string to a file - weird characters | 07 Dec 2005 07:17 GMT | 1 |
I'm wondering if you can help me. For some reason when I use a StreamWriter to write a string to a file there are weird characters appearing at the start of the file. The only reason I can notice these characters is because I'm trying to read
|
| HttpWebRequest with HTTPS URL over proxy | 07 Dec 2005 07:17 GMT | 6 |
I was facing problem using the HttpWebRequest class to make a connection to a secure site with a proxy server. I am getting the below error An unhandled exception of type 'System.NotSupportedException' occurred in system.dll
|
| An unexplainable DllNotFoundException :( | 06 Dec 2005 22:07 GMT | 10 |
I'm having a very odd problem. I have a basic C# form app that pInvokes into a C++ dll. When I build my C++ dll and C# app in Release mode, the C# app can load the dll and call into it just fine. However if I build the solution in Debug mode, the C# app throws a
|
| XmlDocument LoadXml()- problem with utf8 xml | 06 Dec 2005 21:38 GMT | 8 |
I'm using WebClient to download a XML file from a remote server. I then save the xml into a string. The problem is when i use XmlDocument LoadXml() on that string. I get the following exception:
|
| types convertion from C++ API to VB.Net | 06 Dec 2005 19:11 GMT | 3 |
Sorry but this message is a bit long, but I really need your help here. I'm trying to use some API functions that use some trivial types like long pointers to a structure. I just can figure out which type to use in the API declaration in my code
|
| oledb,insert large file stream,SLOW | 06 Dec 2005 18:25 GMT | 2 |
I'm using oledb to insert an uploaded file to access database, for small files it's pretty fast, but if you go to like a 10 megs file it'll take a minute, and seems to be quite consistent all the way up to 100megs taking 10 minutes.
|
| Restricting OpenFileDialog operations. | 06 Dec 2005 16:29 GMT | 9 |
What I want to do is launch an OpenFileDialog/SaveFileDialog so the user can select a path/file. Once the user pushes 'OK' I'll do the work behind the scenes of loading or saving the file. What I don't want, is for the user to be able to delete or copy/cut
|
| WebResponse.Close() not disposing unmanaged resource? | 06 Dec 2005 15:26 GMT | 4 |
I have a .net app that uses a lot of calls to System.Net.WebRequest, and it appears to be leaking memory. I've spent a couple of days working with the excellent .net memory profiler from Scitech (http://www.scitech.se/) trying to find the leak, and all I've managed
|
| DLL hell? | 06 Dec 2005 14:06 GMT | 1 |
I've made an application in VS2002 (actually an add-in for VS) which worked on VS2002/2003. I am trying to port it to VS2005, but leave it backward compatible. I've managed to make it work on VS 2005 only if VS2002 or 2003 is installed
|