| Thread | Last Post | Replies |
|
| Pass a Delegate 2 levels instead of just one | 12 Oct 2006 23:54 GMT | 6 |
This may be an easy question, but I cannot stumle upon the correct way of doing this. I have a function in a base class. I then pass it to a class as a delegate so I don't have to repeat the code within that class. But then that class, calls another class and needs that same ...
|
| Convert C# "writer.Write(@" to VB ? | 12 Oct 2006 23:32 GMT | 5 |
I'm trying to convert the following statement to VB.NET: writer.Write(@"<some html here>"); I tried simply removing the semicolon, but VB chokes on the @-sign. Unfortunately, when searching online, I can't find any information on what
|
| Master project file | 12 Oct 2006 22:34 GMT | 2 |
Sorry if this is the wrong group. We have many C# project files at my company. I would like to force certain settings across all project files. For example, enable the documentation build. There are other examples.
|
| How to use a huge memory in C#? | 12 Oct 2006 22:19 GMT | 13 |
My system has 4GB memory and My program in C# is really memory consuming. and I noticed that when the memory I used is more than 2GB I will get an exception. How to solve this? thanks a lot
|
| Bound DataBoundGridRow table index number | 12 Oct 2006 22:10 GMT | 3 |
Simple question.... I think.... How can I establish the TableRow index that a particular DataGridViewRow is bound to ? Thanks
|
| BinaryWriter Array | 12 Oct 2006 20:56 GMT | 1 |
Is it possible to create an array of BinaryWriters? I need twenty BinaryWriters available to filter data into from a larger binary file. I would like to be able to access them by index rather than creating a large If statement. If is is possible to create an array of
|
| Pass a Delegate 2 levels instead of just one | 12 Oct 2006 20:50 GMT | 1 |
This may be an easy question, but I cannot stumle upon the correct way of doing this. I have a function in a base class. I then pass it to a class as a delegate so I don't have to repeat the code within that class. But then that class, calls another class and needs that same ...
|
| Creating a Blank C# project from command line | 12 Oct 2006 20:26 GMT | 2 |
I would like to know if there is any method of being able to create a blank/barebones C# project from a command line. I have tried using devenv, but I dont think that helps. It would be most useful to me if i can also specify the type of the project that I am trying to create.
|
| Passing a method as a parameter | 12 Oct 2006 20:22 GMT | 2 |
I'm creating a toolbox of useful functions, and I've added a function that recursively drills down through a file system searching for files. I've created a number of variations of this function, and I imagine I'll continue to have use for it.
|
| Retrieving Values from a Multi Select List Box | 12 Oct 2006 19:25 GMT | 1 |
I have a multi select list box that is bound to a datatable. I am trying to retrieve the user's selections from the list box. I am using the code below. foreach (System.Data.DataRowView item in lstServices.SelectedItems) {
|
| Maximal path and maximal file name length | 12 Oct 2006 19:10 GMT | 6 |
Where in .NET are definded constants for maximal file name length and maximal file path? Thanks, Lubomir
|
| easy ? arbitrary Path for folderBrowserDialog | 12 Oct 2006 18:35 GMT | 1 |
This should be easy, but the the RootFolder property has a fixed set of environment folders. How can I set the Root elsewhere as a suggested start place ?
|
| Process.Start() and Process.WaitForExit() | 12 Oct 2006 18:34 GMT | 1 |
I have a Windows Forms application which has buttons to click to run other programs. One of the applications it must run is a ClickOnce Windows Forms application, so the Application Reference in the start menu is the only
|
| Phone number regex | 12 Oct 2006 17:41 GMT | 2 |
I'd like to validate a string input as a phone number using a regex matcher. This is the criteria: * at least 10 numbers, * only numeric and the following special characters should be allowed:
|
| List Breakpoints | 12 Oct 2006 17:20 GMT | 2 |
In Delphi you can get a window that lists all of the breakpoints that have been set. Is there an equivalent in the .NET environment? tia, rts
|