| Thread | Last Post | Replies |
|
| Is this a bug in .net file io? is there a work around? | 28 Sep 2005 23:15 GMT | 3 |
Is this a bug in .net file io? is there a work around? when writing a large file with using(StreamWriter ... if the network drive of the share is removed then the file is never closed. I tried doing the using clause, i tried both close and closehandle in the finaly clause. in
|
| buffer??? | 28 Sep 2005 23:03 GMT | 1 |
it is typical to highlight something in one app and then press copy to copy the highlighted text. Once copied you can go to some other app or somewhere else in the same app and press paste this will insert copied data. I want to beable to get the copied buffer, how can i do this?
|
| CryptoStream // Memory Problems | 28 Sep 2005 21:34 GMT | 3 |
I need to encrypt about 5 million records in a flat file. For a specific reason, each record (32 bytes) must be encrypted by itself, (not all records can be encrypted at once). Also I must use the Rinjndael encryption. So I am running into memory problems, because I am creating a ...
|
| How do I embedd the MediaPlayer ocx | 28 Sep 2005 20:55 GMT | 2 |
How do I embedd the MediaPlayer (msdxm.ocx) in a Windows Form using C#? I do something like the code below: Player=new WindowsMediaPlayer(); Player.URL="http://"+RemoteIPTextBox.Text+":8080/";
|
| If clients don't subscribe to events | 28 Sep 2005 20:16 GMT | 6 |
I have a class which exposes number of events. If client doesn't subscibe to an event, I get a runtime error when event is raised. What's the way to deal with it?, other than making sure all events are subscribed to.
|
| regex + regexoptions | 28 Sep 2005 20:05 GMT | 2 |
I have been using regex for some time now in VB.Net, there I had to put a Or between the options. How do I have to do this with csharp? Please help!
|
| Resizing System.Drawing.Image | 28 Sep 2005 19:51 GMT | 1 |
How can I resize picture loaded in System.Drawing.Image?
|
| System.FormatException: The string was not recognized as a valid DateTime. | 28 Sep 2005 19:47 GMT | 6 |
I know I need to use the parse method of the DateTime but am unsure where or exactly how to do it. I am trying to update a SQL database with an unspecified amount of data and am passing in several columns whose datatype is of type DateTime. Below is my code.
|
| how to free memory? | 28 Sep 2005 19:45 GMT | 16 |
In .NET Compact Framework, Can I free memory explicitly without waiting for garbage collector to frr the memory?
|
| Object reference not set to an instance of an object | 28 Sep 2005 19:20 GMT | 1 |
I'm getting this error on this line after inicializing the RTCClient: oProvisioning2.GetProfile(sipUsername, sipPassword, userURI, sipServer, RTCTR_UDP, 0); i have declared oProvisioning2 in:
|
| Datatype error, I think | 28 Sep 2005 19:02 GMT | 7 |
I'm trying to edit data in a dataset, and keep getting errors. I'm selecting data from SQL, and a few different fields are either 1 or 0 based on the way questions were answered originally. I'm trying to change the 1's to "Yes" the 0's to "No", but I'm having no luck.
|
| Identify common items in multiple arraylists | 28 Sep 2005 18:27 GMT | 2 |
I am trying to identify items that are common to 2 or more arraylists e.g. a = {2,4,6,8} b = {4,5, 6,7,8}
|
| What is vbCrLf counterpart in C# | 28 Sep 2005 18:27 GMT | 7 |
Hi, friends, In VB, there is a vbCrLf for a new line. What is the counterpart in C#? Thanks.
|
| Automatic OS suspend-resume loop | 28 Sep 2005 18:15 GMT | 2 |
I'm porting a piece of code from C++ to C#. This code makes automatic suspend and resume of OS in a loop (N times), i.e. that the application N times does something, then suspends OS, after OS resume (NOT manual, but from the timer) it returns to the
|
| XML Instance from XML Schema | 28 Sep 2005 18:12 GMT | 2 |
How do I create an instance of XML from XML Schema (xsd to be specific) and instantiate its elements in C#? Thanks!
|