| Thread | Last Post | Replies |
|
| Cannot get ToolboxBitmap to work | 14 Mar 2006 18:11 GMT | 1 |
I have developed a library of controls but for the life of me cannot get ToolboxBitmapAttribute to work -- my image simply will not display in the toolbox of any project using my controls. First, what I have:
|
| Worker thread is blocking UI !!! | 14 Mar 2006 17:59 GMT | 5 |
I am trying to add nodes into a treeview control (through recursion) from a secondary thread. Following is the code snippet class Test {
|
| Simple novice question! | 14 Mar 2006 17:18 GMT | 7 |
I have a program which I am going to install it in a server with short cut to bunch of users to that applicaion. Now, how does the program execute when a user starts the program? Will the program run in server or in client? (it has to be in server but want to confirm). How is the
|
| List.Remove | 14 Mar 2006 17:17 GMT | 2 |
I have a collection class that inherits from CollectionBase. I am using the List.Remove method to remove an object in the collection. When I use it, I get the following error: Exception Details: System.Runtime.Serialization.SerializationException: The
|
| XML Parents | 14 Mar 2006 17:16 GMT | 5 |
I'm trying to create an XML file from a C# application. I can create children of the root using this code: ------------------------------------------------------------- //Save the variables
|
| private static extern int PlaySound(String pszSound, int falgs | 14 Mar 2006 17:13 GMT | 4 |
i am trying to use [DllImport("winmm.dll"] private static extern int PlaySound(String pszSound, int falgs); but it doesn't play the sound although it exists (even by checking
|
| Deserialization and chaning data type | 14 Mar 2006 16:56 GMT | 1 |
I'm using a binder when deserializing our data. We have a few members that were originally serialized using a different version number assembly. Is there a way to tell it to use a new version? I know how to change types using BindToType but not how to tell it a different version ...
|
| Can I select a row in a DataGrid and show that row? | 14 Mar 2006 16:33 GMT | 2 |
I use a DataGrid and I have a search on a specific value in a dataset. Once I find the row that contains the value, I would like that row to be visible in the datagrid window, in other words, to scroll up to that particular row to be the first or last in the visible part of the ...
|
| List Control with multiline text | 14 Mar 2006 16:25 GMT | 2 |
Hi NG, I want to use a List Control, that is able to display the following szenario: [Image] Customer A
|
| XmlTextReader - how find a particular node | 14 Mar 2006 15:50 GMT | 4 |
I am reading an xml file from a URL. I was originally doing this using the XmlDocument class. But this was very slow. The XmlTextReader is meant to be much quicker for forward only retrieval of data. I need to somehow access a particular list of nodes. e.g. I want to loop
|
| windows login username | 14 Mar 2006 15:43 GMT | 1 |
How can I retrieve the currently logged in user's username? I have tried the option below: Request.ServerVariables("LOGON_USER") while denying access to the Anonymous user both in the config and removing the anonymous authentication option in
|
| develope driver for USB | 14 Mar 2006 15:42 GMT | 2 |
Hi.. One of my friend has developed a device that will send Data to a PC (with a protocol). The Communicaton will be over USB. He asked me if I could develope a driver for it in C#. I am new in C#.And I dont know how to begin with it.
|
| Processing Files | 14 Mar 2006 15:24 GMT | 8 |
I am having a problem with users uploading a file. Basically the way my application works is that a user will select a file from the system (csv) and I will take that file and do some processes on it. I am not saving the file or making any changes to it.
|
| Exception Processing | 14 Mar 2006 15:22 GMT | 1 |
If Module A call Module B and Module B throw and Exception (throw new Exception("There are problems in Module B"). If Module A wanted to throw and exception and just pass on the text of Module B exception, would it be coded like "throw new Exception(e.Message)"?
|
| Getting the name of my application at runtime... | 14 Mar 2006 15:09 GMT | 6 |
Is there a way to get the name of my application (as it appears on the list of processes running) at runtime? (Something to do with System.Reflection...?) Thanks,
|