| Thread | Last Post | Replies |
|
| Get properties on interface (runtime/reflection) | 10 Dec 2006 11:13 GMT | 7 |
I am developing a c# application. I have a interface (which can change therefore my problem) If i do like this: List<PropertyInfo> properties = new List<PropertyInfo>();
|
| Managing DHCP Servers using C# | 10 Dec 2006 11:05 GMT | 1 |
After finding nothing anywhere in google I am posting this so everyone can benefit by it. The formating is not pretty since I copied it from my word document, but you should benefit by it. Managing DHCP Servers using C#
|
| process.start - slow startup times | 10 Dec 2006 01:35 GMT | 1 |
I am writing a small .net forms app that rquires a word document to be opened. I use the command process.start(filePath). The command does just as it should and opens the document with word.
|
| Regex Question | 09 Dec 2006 23:13 GMT | 1 |
I'm trying to match a string like this: <Site Url="http://server" and extract just the http://server part. I'm using the following regex: @"(((https?))(://)([\w]+)([\.\w+]+))" and it almost works. It matches both http://server and http://server" -- I need it without the ending
|
| Design issues | 09 Dec 2006 22:48 GMT | 5 |
I have a function which gets 6 parameters and needs to check every parameter (existence of it and it value). What is the best design solution for it?
|
| Get list of the Groups a User belongs to | 09 Dec 2006 22:33 GMT | 10 |
How can I get a list of the Groups both Local and Domain groups a User belongs to.
|
| method to add an object to a list from a stream | 09 Dec 2006 22:00 GMT | 3 |
SO I am having issues with adding items to a list....I have created a file StreamReader which reads values from a file I have connected through streams. WHat I am trying to do, is depending on whether the row has 4 values, or 5values instantiate an object(of previous classes
|
| StackTrace class performance | 09 Dec 2006 21:17 GMT | 1 |
I'm writing a log class that uses the StackTrace information in order to write in the log files the name of the classes and methods that produce every log entry. Anyway, doing some profiling, I have found that the instantiation of
|
| xml and sql server 2k problem | 09 Dec 2006 21:10 GMT | 5 |
I have a problem with xml and sql server 2k. first thing i have a website named this-> http://en.infosites.org/info/keyword. when i am entering a value for keyword like this ->
|
| Compilers, parsing, etc... | 09 Dec 2006 21:08 GMT | 3 |
Is there anything like yacc or spirit for C#? What is the "standard" method for parsing grammars in C#? The last few days I have been looking at boost spirit and really like how it works. What I was hoping for is a library that could take an ABNF grammar
|
| System.IO.File.IsBinary() ? | 09 Dec 2006 20:52 GMT | 6 |
Is there a method in the .NET class libraries to know if a given file is binary or just plain text (ASCII)? Thanks in advance. --
|
| Public information | 09 Dec 2006 20:18 GMT | 17 |
In my application, the user must logon with a username and a password. In all the tables in my database, there is a field user. By saving new or changed records, the username is writed to that field. Now I have a class Session with the User-information.
|
| How to share the same value across multiple instances of a class | 09 Dec 2006 17:44 GMT | 4 |
Class A public objX I want to create 2 or more instances of Class A and have the same value for objX in all instances.
|
| Regex - copy pattern from one string to another | 09 Dec 2006 15:36 GMT | 5 |
I am looking for a way to copy a pattern (letter 'A' in the following example) to another string. string str1 = "1111AAAA111111AA"; string str2 = "1111000000001111";
|
| can an owner of a window be changed? | 09 Dec 2006 14:44 GMT | 1 |
Is it possible that i can pick a notepad window, change it owner to my application making it a child window of my app?
|