| Thread | Last Post | Replies |
|
| Implementing data sharing between processes in .NET | 12 Feb 2005 08:35 GMT | 4 |
I know how to share data between different processes in WIN32 world. But, I don't know on how to do the same in .NET world. Can you please tell me an efficient way to do it? I appreciate your help.
|
| How to migrate Microsoft (Visual basic) apps to a unix O.S. | 12 Feb 2005 08:31 GMT | 3 |
How to migrate Microsoft Application (Visual basic) apps to Mac Machine thats using Unix Operating System.. Is it possible in Visual Basic 6.0 ?? Is it practically possible in .Net framework 1.1??
|
| How to get the fully qualified machine name? | 12 Feb 2005 08:22 GMT | 1 |
Is there any way to get the fully qualified machine name? The System.Net.Dns.GetHostByAddress method used to find the machine name sometimes returns NetBIOS names and sometimes returns fully qualified names. This depends on the machine.
|
| some questions from a beginner | 12 Feb 2005 08:05 GMT | 2 |
I have some varient questions, and sorry in advance for my novicity.. A- I once had a situation where I had to use an integer type as key in a hashtable. I knew that would involve boxing. The software engineer at my office adviced me to solve this by using (int.ToString()) ...
|
| Reflection: Inherited Class Static Method | 12 Feb 2005 04:24 GMT | 7 |
I have a parent class that has a static method on it. Of course it's inherited by the children which is what I want. However, in that static method, I need to know the child that the method was called from. (specifically the Type)
|
| How much is Bill worth right now? | 12 Feb 2005 03:22 GMT | 18 |
From: http://evan.quuxuum.org/bgnw.html#Worth Interesting stuff. read for yourself: ----------------------
|
| SQL Server | 12 Feb 2005 00:40 GMT | 4 |
Maybe it's just a rumor, maybe not. I've heard that there is a "student/academic version" of SQL Server that is available for free for academic purposes. If so, I'd like to know more about it.
|
| typed DataSet not firing RowDeleted | 11 Feb 2005 23:17 GMT | 5 |
I have a typed dataset and I have the following loop. foreach (DataTable myTable in DataStore.Tables) { myTable.RowChanged += new DataRowChangeEventHandler( Row_Changed );
|
| Trickey problem with editing enum based properties | 11 Feb 2005 21:40 GMT | 8 |
I have a problem that I havent really come accross before. I need to be able to allow the user to set a dropdown control to a particular colour value. The permissable values come from the Color enumeration and unfortunately I can't change this implementation detail.
|
| No FTP Support? | 11 Feb 2005 20:26 GMT | 3 |
I just read that the .NET framework does not support access to the FTP protocol (in other words, no FTP class). If this is true (I would be shocked - .NET is supposed to be a world class internet development tool), does anyone know if it is provided in 2.0? I know there are ...
|
| How to extract selective bits from BitArray | 11 Feb 2005 20:07 GMT | 2 |
I have a BitArray that contains a value --> 1011001 (89) I want to extract four bits (bits 0-3) of the BitArray --> 1011 (11) Is there an easy way to do this that I'm missing? Or would I have to create another BitArray and iterate through the 4 bits of the original BitArray that
|
| Wrong uri encoding | 11 Feb 2005 19:59 GMT | 1 |
I have a simple but strange problem. I'm creating an Uri with the following code: Uri myUri = new Uri(url); the url string is:
|
| selectedindex changed event & oracledatareader problem | 11 Feb 2005 19:58 GMT | 2 |
I have a dropdown list (ddljurisdiction) that when the selectedindex changed event is fired fills a oracledatareader that fills other dropdowns.. this works fine on the first event.. however on the form if the user selects another value from
|
| ASP.NET import code | 11 Feb 2005 19:47 GMT | 5 |
I know in PHP it's possible to import another PHP file, so that you don't have to type the same code over and over again. I've been trying to find out how to do this with ASP.NET but haven't found a way. The code I have so far is:
|
| MemoryStream?? | 11 Feb 2005 18:31 GMT | 4 |
I am working on an updater that Retrieves a file from a web page. GetRequest.Method = "POST" SW = New StreamWriter(TheRequest.GetRequestStream) SW.WriteLine(TransferName)
|