| Thread | Last Post | Replies |
|
| Question for invoke | 14 Sep 2006 14:06 GMT | 1 |
In a form called "frm", if there is a text box called "txtBox". When I want to update the text box by another thread, I need invoke a method to update the text box. The delegate method may be "UpdateTextBox". Now, another thread can call frm.BeginInvoke or txtBox.BeginInvoke to ...
|
| File permissions to delete own on-the-fly-generated assembly files | 14 Sep 2006 13:34 GMT | 2 |
I haven't done anything yet to study the securiy subject. I'm developing a product where I will have to learn a lot about security in .NET applications but for now I have a "simple" isolated problem: In my main component I'm building some assemblies on-the-fly. I'm loading
|
| constructor syntax | 14 Sep 2006 13:29 GMT | 3 |
I've been looking at a csv parse I found on CodeProject, and I don't recognise the syntax used in the constructors. Here's an example: public CachedCsvReader(TextReader reader, bool hasHeaders) : this(reader, hasHeaders, DefaultBufferSize)
|
| How to put a clickable button on a PropertyGrid ? | 14 Sep 2006 13:06 GMT | 1 |
I'm using the PropertyGrid control, and I want it to show a button. But I set the PropertyGrid.SelectedObject with a object that as a Button property, the PropertyGrid shows the buttons properties, and I want the button to be shown as drawn and clickable button.
|
| USB Keyboard / USB Barcode Scanner HELP! | 14 Sep 2006 12:17 GMT | 1 |
I'm working on an application (OEM) using c# that uses input from a keyboard and a USB Barcode Scanner. I need to be able to identify keystrokes from the barcode scanner and remove them from the message queue, regardless of what application has focus.
|
| a urgent help | 14 Sep 2006 11:37 GMT | 1 |
Can anyone tell how can i enable/disable serial port? sample code would help. Either using win32 apis or uing .net framework will help. A sample code will be of great help. Varun
|
| cast IDictionary key type (.NET 2.0) | 14 Sep 2006 11:11 GMT | 10 |
I have an OrderedDictionary object where the key is an enum. Is there an easy way to cast it to an integer? Examples/document appreciated. Thanks Andrew
|
| keeping form visible when "show desktop" is clicked | 14 Sep 2006 11:00 GMT | 6 |
how can i do this? I have a form, which i do not want to keep on top of all others (TopMost), yet i dont want it dissapearing when the "show desktop" button is pressed. Now i know that the show desktop button doesn't minimise all forms, it sets
|
| Static DAL and BL | 14 Sep 2006 10:47 GMT | 7 |
I was wondering... If I'd create a (web)application using static methods in both DataLayer and BusinessLayer, could it happen that, in case of multiple concurrent visitors/users, the applications throws a sqlexception, because multiple
|
| ImageFormatConverter to convert a 32Bit BMP image to a 256 BMP Ima | 14 Sep 2006 09:33 GMT | 1 |
VS2005 - C# - .NET2 I am trying to convert a 32Bit BMP image to a 256 BMP Image, after various searches, i found the class: ImageFormatConverter. In the MSDN is stated: “ImageFormatConverter is a class that can be used to
|
| persistent route | 14 Sep 2006 09:26 GMT | 1 |
Is there any way to set persistent ip route programmatically in win2k3? Like we can do so from cmd with -p option. Any code will be of great help Varun
|
| Memory occupied by ArrayList | 14 Sep 2006 09:14 GMT | 2 |
My program fills an arraylist with custom objects. I would like to know at runtime the amount of memory this arraylist occupies. Is it as easy as using the SizeOf() method or do I have to do something else? Thanks
|
| Why ValueType is class? | 14 Sep 2006 09:01 GMT | 6 |
Just curious to see why ValueType (which the base for all value types) is a class. I thought "class" would make a type a reference type. However, IsValueType for ValueType is returning true. --Musthafa
|
| Data Acess aplication block | 14 Sep 2006 08:21 GMT | 6 |
I have Microsoft Enterprise Library 2005 installed on my local system. I m also using ASp.net 1.1 And C3 as coding language , I have MS Sql Server 2000. I am developing a web application in which i am using data Access
|
| Question for Invoke | 14 Sep 2006 08:07 GMT | 1 |
In a form called "frm", if there is a text box called "txtBox". When I want to update the text box by another thread, I need invoke a method to update the text box. The delegate method may be "UpdateTextBox". Now, another thread can call frm.BeginInvoke or txtBox.BeginInvoke to ...
|