| Thread | Last Post | Replies |
|
| Xml File Reading Issue | 23 Apr 2008 15:29 GMT | 1 |
I am trying to read a large xml file (about 69mb in size) using ReadXML() method of DataSet, it takes very long to do so, i there some other way to read such large XML files. TIA
|
| Regex help | 23 Apr 2008 15:24 GMT | 1 |
6Nov08 6Nov2008 26Nov08 26Nov2008
|
| Hook web service call | 23 Apr 2008 15:15 GMT | 2 |
A windows forms client connect to an ASP.NET 2.0 web service. A proxy class is generated by Visual Studio 2005. How can I simply store (on client side) the time of the last call to the web service, without modifying the proxy generated class file ?
|
| How can I verify .NET 2.0 installation??? | 23 Apr 2008 15:04 GMT | 2 |
I have found ways by checking the registry, but we have hundreds of computers. I have a powershell script that can verify the presence of folders and files. Is there one specific file or folder that .NET 2.0 installs that I can check for?
|
| CryptographicException from System.Security.Cryptography.Protected | 23 Apr 2008 01:17 GMT | 1 |
On some computers running Windows XP, the ProtectData() method sometimes throws the following CryptographicException: Type: System.Security.Cryptography.CryptographicException Message: The system cannot find the file specified.
|
| Are primitive types like bool threadsafe ? | 22 Apr 2008 19:17 GMT | 5 |
Are primitive types like bool threadsafe ? Or do we need to use synchronization when multiple threads concurrently access a value type ? Thanks, Ramesh
|
| Problems Background Printing PDF from C# Application | 22 Apr 2008 14:15 GMT | 1 |
We are having a lot of problems trying to print a PDF file in the background using a C# application that is executed via SQL Server Agent. The output should be printed to a local printer (HP Color LaserJet 1600) connected via a USB port.
|
| EIL Logging to Custom Event Log? | 22 Apr 2008 07:14 GMT | 2 |
Can anyone post an example of how to log to a custom (new) Event Log? I don't want to use Application or System or any of the other built-in ones. I want to write to a new log called "CustLog". I think I just need to see what the .config snippet should look like,
|
| ThreadPool.SetMaxThreads | 22 Apr 2008 05:43 GMT | 4 |
Does the ThreadPool in framework 3.5 honor the SetMaxThreads method? The reason I ask is that I started a program that queued 256 worker threads in the threadpool and after a few minutes, task manager (and the console output) showed all of them working. I have situations where ...
|
| Framework 2.0 to Framework 3.5 | 22 Apr 2008 02:19 GMT | 8 |
I'm using VS 2005, and have a dll in some code (system.core.dll) that was included in something someone sent me to run on my system. I have production on a server using Framework 2.0 that I want to keep intact.
|
| DateTime Adding Parse Help | 21 Apr 2008 21:56 GMT | 3 |
I have a Datetime of "2008-04-17 00:00:00.000" and a Datetime of "2008-04-18 16:55:28.000", and I need to join them to be "2008-04-17 16:55:28.000" What is the best way to parse that?
|
| How to Send a Socket Close Event in .NET Sockets | 21 Apr 2008 20:57 GMT | 1 |
How do I send a Socket Close Event in .NET Sockets? Thanks, Phil
|
| Duplicate 0xFF in Socket.Receive(Byte[])??? | 21 Apr 2008 20:10 GMT | 2 |
I use Socket.Receive(Byte[]) to receive data in server from client over TCP/IP. All byte values of 0xFF sent by client are showing up DUPLICATED in server receive. In other words, if client sends [0xFF, 0x01], then server receives [0xFF, 0xFF, 0x01]. It's as if bytes having ...
|
| Binding to a datagrid | 21 Apr 2008 18:06 GMT | 1 |
Ha all. I have a my custom class with few strings. Then i have a List of my custom class. I' m adding data to list with "mylist.Add(mycustmclass)" I wnat to bind that list to a GridView but i get an exeption
|
| Receiving Socket Close event in .NET Sockets | 21 Apr 2008 17:07 GMT | 1 |
How do you recognize a Socket Close event in .NET. From what I have read on the internet, it is done by checking if the byte count is zero in the EndReceive() callback function in an Asynchronous type of connection. What I can't seem to find out is how you do this if you are ...
|