| Thread | Last Post | Replies |
|
| regular expression - matching a string | 16 Oct 2007 22:28 GMT | 2 |
I need the regexp pattern to match a single quoted string. its a bit tricky since double single quotes in the middle are part of the string, and we should continue to capture till the next single quote. an example:
|
| Grid class and additional column types | 16 Oct 2007 22:00 GMT | 1 |
I would like to know several things about the Grid class from System.Windows.Controls : 1. Can we define new types of columns (e.g. columns only with SpinBoxes, or Progressbars, or comboboxes, ...) ?
|
| find a TreeNode in a TreeView., how? | 16 Oct 2007 21:13 GMT | 3 |
.NET 2.0 I'm trying to search a TreeView control for a specific TreeNode The code below doesn't work because it only searches the the top level of the nodes. I would like to program it so that it can find a TreeNode
|
| Generic Addition Required | 16 Oct 2007 20:58 GMT | 3 |
Is there a generic means of adding two values together in C# using the + operator? I would like to be able to write one method for int, double, decimal, all the other numeric types.
|
| App. crashes on assigning arraylist to DataGridView datasource | 16 Oct 2007 20:26 GMT | 1 |
I am assigning an arrlist to the datasource property of the datagridview. In short, i want to update the datagridview. But the moment, i assign it. The application crashes. It does not display the updated state of the datagridview neither throws any exception. Here
|
| <newbie> need a bit help on this code | 16 Oct 2007 20:21 GMT | 6 |
.NET 2.0 VS2005 I've created a TabControl based on this example: http://www.codeproject.com/cs/miscctrl/closabletabcontrolpage.asp
|
| to integrate HTML | 16 Oct 2007 19:50 GMT | 3 |
i'm learning asp.net 2.0 and when i want to import a flash movieclip, what i do is this: I) First: a) create the movieclip that i need with Flash;
|
| Garbage Colletor | 16 Oct 2007 19:10 GMT | 75 |
Hellow I'am not sure what to think about the Garbage Collector. I have a Class OutlookObject, It have two private variables. Private Microsoft.Office.Interop.Outlook.Application _Application = null;
|
| Find drives in the PC | 16 Oct 2007 18:51 GMT | 1 |
I have a program in the network location, which when running, it needs to find out what are all the drives available in the PC. I have the following code in my program using (ManagementClass netwConn = new
|
| Getting application location! | 16 Oct 2007 18:45 GMT | 1 |
I have a program sitting in the network, when I double click the program, first thing I want to do is find the application execution path. I am using the following code Assembly execAssembly =
|
| Broadcasting UDP datagrams | 16 Oct 2007 18:02 GMT | 1 |
I am writing a WinForm application that will broadcast a UDP datagram to multiple of embedded controllers. The controllers in return will send a response to the WinForm application. When I create the WinForm socket and assign the remote IP to the broadcast
|
| import/export of forms, possible? | 16 Oct 2007 17:52 GMT | 2 |
VS2005 .NET 2.0 In a project in VS2005 I've got a form. I would like to have this form in another project I have in VS2005. How do I do that? is there a way I can for
|
| Rounding decimals to interger | 16 Oct 2007 17:07 GMT | 3 |
i would like to know how can i round to next greater than integer if not integer already what i mean is: 5.00000000000000000000000001 rounded to 6
|
| Setup project - stop a service? | 16 Oct 2007 17:01 GMT | 3 |
I have a setup project that copies a bunch of files, a small management program, and also another .exe (that is run by a custom action) to install and start a service. Works fine first time, but the second time (i.e a user upgrades) the
|
| BitConverter.ToInt16 doesn't work correct | 16 Oct 2007 17:00 GMT | 12 |
Hello. I have a problem with getting short value from 2 byte array. I have this code. There are 2 short values in bytes. byte[] cast = { 18, 152, 00, 80 }; Int32 port = BitConverter.ToInt16(cast, 0); // -26606 - wrong!
|