| Thread | Last Post | Replies |
|
| performace counter and threads | 15 Oct 2007 12:37 GMT | 1 |
Is it possible for two threads or applications running simultaneously to update the same performance counters? thanks m
|
| Getting at items in arraylist | 15 Oct 2007 12:12 GMT | 7 |
I have an arraylist that is made up of Sandwich objects, which have properties for each ingredient. What is the correct syntax to loop through the arraylist and get at each of these properties for each item in the array?
|
| Resize image and keeping aspect ratio | 15 Oct 2007 11:51 GMT | 3 |
I am looking for a way to display images with different aspect ratio into frames with fixed width and height, the problem is some images will look distorted if they are forced into fixed frame due to differnt aspect ratio. Some graphic designer suggests me to keep the aspect ...
|
| dataGridView help | 15 Oct 2007 11:40 GMT | 3 |
I have a dataGridView in my win Form, and i get some information from my DataBase (sql) into a dataTable. I tried and tried and i can't display my result in the dataGridView. in addition, I also want to edit the columns (change the headr and size), i
|
| Thread monitor user input | 15 Oct 2007 10:43 GMT | 4 |
I am trying to figure out how to monitor user input. I have the user typing in a textbox where I fire a method on the text changes event but this fires on every letter and it fies mant times if the user types a long string - I 'd rather just run my method when the user is
|
| Attributes questions | 15 Oct 2007 10:25 GMT | 1 |
I want to apply the [ComVisible(false)] attribute to the GetType method. Problem is GetType cannot be overridden for me to apply the attribute. I read somewhere an attribute can be applied in this situation in 2.0 but the MS help is typically useless and google has proven ...
|
| Duplicate assembly loading | 15 Oct 2007 10:00 GMT | 4 |
.NET 2 WinForms application. In need to load dynamically generated assembly from isolated storage or from temp directory due to Vista UAC. In VS 2005 IDE I stepped over two lines:
|
| Property change does not refresh custom control | 15 Oct 2007 09:02 GMT | 3 |
I have a custom control in which i have a property based on CollectionBase class. like the following one : //------- XGrid.cs file --------------//
|
| Parameter as reference but I am not using "ref" | 15 Oct 2007 08:25 GMT | 4 |
In the follow program I would like to have the parameter "c" in method "doSomething" as a value parameter, but it's running as a reference parameter. Why? How can I get parameter "c" as a value (or clone, copy)?
|
| what is needed to start work with dotnet 3.0 | 15 Oct 2007 03:49 GMT | 3 |
I wanted to move to working with dotnet 3.0 and im having trouble documenting exactly what i need to install I have two development machines i use on XP 1. Visual studio c# express 2005
|
| quit method execution on event | 15 Oct 2007 01:43 GMT | 6 |
Usually when a method is executing and an event occurs the event handler executes then the thread is returned to the original method. I have a case where I want my event handler to cancel execution of any existing methods in process. Is there a way?
|
| need help improving this code | 15 Oct 2007 00:03 GMT | 3 |
.NET 2.0 I've created a window consisting of a treeview control and a tabcontrol. When a leave in the treeview is clicked then the code should check if the specific tabpage already exists in the tabcontrol and give it focus if it
|
| Need a regex for this... | 14 Oct 2007 23:32 GMT | 3 |
I'm trying to learn regex but since I've spent way too much time on the following "simple" case, there's obviously something I'm missing. I need to find all occurrences of a specific non-whitespace character sequence in a string, but only if it occurs somewhere within a set of ...
|
| Test container in C#.NET 2008 | 14 Oct 2007 21:23 GMT | 1 |
I would like to know if the TestContainer still exists in VC#.NET 2008 ? because i have not seen it till now. thx. RAF
|
| adding to array on multiple postbacks | 14 Oct 2007 21:23 GMT | 4 |
I have a form that I using to add details to an array, but I need to continue to add these details to my array on multiple postbacks....how can I do this? Do I need to use a Session object instead?
|