| Thread | Last Post | Replies |
|
| Assign repeated tasks back to the threadpool? | 08 May 2007 16:17 GMT | 5 |
I'm developing an application that gets data from 100 sources (via telnet connections, but you can think stock quotes from a webservice if you like). I was planning on using the thread pool (25 at a time). I know I would start all 100 at once and as threads finish, a new thread ...
|
| Marshal.GetLastWin32Error() | 08 May 2007 16:11 GMT | 4 |
Does anyone know if this (example) is safe: [DllImport("user32.dll", SetLastError = true)] internal static extern int GetWindowRect(IntPtr hWnd, ref RECT rect);
|
| TableAdapter generate identity | 08 May 2007 16:02 GMT | 1 |
I add new row to DataTable (typed). I called TableAdapter.Upadte method. I noticed that field 'ItemId' (which is specified as Identity in SQL Server) has a value of new added item.
|
| -=--= | 08 May 2007 15:57 GMT | 2 |
|
| Repost: VS2005 - is DataGrid.IsSelected( ) broken ? (still an MS 'managed' group?) | 08 May 2007 15:17 GMT | 2 |
The following code works great in C# Net 1.0 & Net 1.1 apps ... doesn't work for Net 2.0 apps. Cannot get pDg.IsSelected(i) to toggle to 'true' for 'highlighted' rows in a DataGrid control.
|
| RegEx.Replace() to remove double-backslashes in a path | 08 May 2007 14:44 GMT | 3 |
OpenFileDialog gives me the following, which I place in tbDevPath.Text: x:\\myVob\\mySolution\\mySolution.sln I really need this path to be single-backslashes, not double-backslashes, so I tried the following:
|
| Modifying private variables from outside the containing class? | 08 May 2007 14:08 GMT | 2 |
Is it possible to set a value for a private variable from outside the class in which it was declared using perhaps reflection? Something like class A {
|
| Scanning byte arrays | 08 May 2007 13:24 GMT | 7 |
If im looking for a pattern of byes in a byte array, what would be the best approach? I could convert the array into a string and use IndexOf recursivly by remembering the last position I encountered a match, but it seems to
|
| Force update of Databinding | 08 May 2007 13:18 GMT | 1 |
I've got a combobox where the SelectedValue property is bound to a class property by a code like this: MyComboBox.DataBindings.Add("SelectedValue", MyClass , "MyID"); My problem is that the MyClass.MyID property gets updated when the focus
|
| need help using system.Threading... | 08 May 2007 13:03 GMT | 4 |
i've created a little test app where i send an email to myself and select a number from a combobox how many times to send it. My sending function is called void doMailSend() {
|
| Prevent row high | 08 May 2007 12:41 GMT | 2 |
How do I prevent row high (user can't change row high) in DataGridView? Thx PawelR
|
| IDE Code Templates | 08 May 2007 11:14 GMT | 2 |
does VS2005 have code templates? for example in the editor one might type: "fore" and then the spacebar and then it would be replaced with foreach(var $ in $)
|
| best db wrappers? | 08 May 2007 10:56 GMT | 2 |
What are the best C# (.NET) wrappers for these databases? MySQL 5 PostgreSQL 8.1 Sqlite3
|
| associate help file with F1 key | 08 May 2007 10:45 GMT | 1 |
Hi i have an app that i am writing and i have a help file that is called by the help menu. I would like to associate this help file with the F1 key but when i use the following code, i dont get the help file up.
|
| Problem with generic | 08 May 2007 10:25 GMT | 4 |
I have a class that is generic and can only be used with numerical types like double or decimals A example code is: class<NumType>
|