| Thread | Last Post | Replies |
|
| would someone else try this? | 24 Jul 2008 19:19 GMT | 3 |
I am getting an error i don't understand. I would like for someone else to try and repeat it if possible. I am on Sql2005sp2. The goal is to take a string and split it based on a delimiter. The following is the split function. You may recognize the form. I found it from this ...
|
| firing Multi-Threads sometimes misses | 24 Jul 2008 18:41 GMT | 4 |
I am new to multi-threading. Here is my scenario: foreach (<file in a certain folder>) new Thread((ThreadStart)(delegate { processFile(<file>); })).Start(); sometimes misses firing some threads to process files. It misses
|
| interface and refresh | 24 Jul 2008 18:01 GMT | 5 |
I have an interface I am using to get access to some of the objects on my form: a textbox (Status) and my statusbar (StatusBar). In my class, which is actually in another class from my form I have the following: public interface IStatusDisplay
|
| Huge data file | 24 Jul 2008 15:08 GMT | 5 |
I have a data file which is 2.1GB (zipped), when the exe runs, it copies the content of the zip file to a destination folder. What is the best way to achive this? Current implementation is to zip the file at the source and at the destination unzip the file and if the file
|
| linq query help | 24 Jul 2008 14:56 GMT | 2 |
I need some assistance with a LINQ query. I've got a simple query: var q = from t in db.Table1 select t; Based on user input I'm adding some where clauses: if (condition1)
|
| How to create a new PowerScheme and set its Settings through C# | 24 Jul 2008 12:59 GMT | 3 |
I would like to create a new power scheme and set its settings appropriately. Are there any APIs available in .Net? If not please suggest me, how can I achieve this through C# code. Thanks
|
| DataGridView question | 24 Jul 2008 12:32 GMT | 1 |
No matter how hard I try, I cannot force my DataGridView to use specific font in column headers: it seems to be always the same as container's font (which is form in my case). I set styles:
|
| WPF: Binding Control (Non-List) to Specific DataTable Row and Colu | 24 Jul 2008 12:21 GMT | 5 |
I have a custom control (not a listbox or other hierarchical or list control) that I would like to bind to a specific row and column from a DataTable. Each row of the datatable will have columns like PropertyName, IsEnabled,
|
| Getting information from IEnumerable | 24 Jul 2008 11:45 GMT | 9 |
At this point, i usually use a foreach-loop to run through all the XElement's in my IEnumerable<XElement>. I noticed, i'd like to address the elements using brackets and
|
| Proper design of classes | 24 Jul 2008 11:32 GMT | 8 |
I have a couple of questions about the proper design of classes. I'll use a simple Customer class for my question. 1) Lets say that I have this Customer class like I said, and I want to distinguish
|
| Vista development, the do's and don't??? | 24 Jul 2008 11:31 GMT | 6 |
OK, it is finally time for me to clean up my application so that it will run on Vista. Does Microsoft have a web page out there somewhere that will point me in all the right directions? One thing the C# program is doing is starting a web server that is
|
| java app in webbrowser control | 24 Jul 2008 02:07 GMT | 3 |
I recognize that this question has a substantial Java component and I have cross posted it on Sun’s website. But it is a problem of interface with VS.NET and I suspect they will angrily redirect me to a .NET forum. I have a device that serves a picture by way of a Java app. I can ...
|
| Free obfuscator for C# express | 24 Jul 2008 00:44 GMT | 4 |
C# Express does not contain obfuscator. Which free obfuscator I can use with it ? Andrus.
|
| Side by Side object question | 23 Jul 2008 21:29 GMT | 2 |
I came across a situation where I have a dll that is downloaded as a activex control. When I tried to run the web app which this control is used, the control load fails looking for VS 2005 SP1. I found the 2 dependent dll that was causing the problem from VS 2005 SP1. I copied
|
| How can I programmatically multiselect items in a ListView? | 23 Jul 2008 21:18 GMT | 1 |
I can set the selectedItem as a one-off selection but how do I set a multiple selection from code? All the item selection properties are ReadOnly and if I just set Item.Selected the selection changes from one to the next but it never selects more than one.
|