| Thread | Last Post | Replies |
|
| Regex question - why doesn't "(\d+).{\1}" match "3abc"? | 21 Dec 2004 17:32 GMT | 4 |
"(\d+).{3}" does match "3abc", as expected, and "(\d+).{\2}" doesn't compile. So, why doesn't "(\d+).{\1}" match "3abc"?
 Signature programmer, author http://www.midnightbeach.com
|
| Show compilation error if value is not set | 21 Dec 2004 12:49 GMT | 6 |
I have a property UIName, that I want all Application programmers to set when coding using classes derived from my class (UIName is a property of my class), how do I give compliation errors...rather than compile the code and during execution throw an exeception...
|
| WMI | 21 Dec 2004 09:35 GMT | 1 |
Hi all, sorry for my bad englisch . How I enumerate classes in the scope ? thanx marek g.
|
| Child control in non client area ? | 21 Dec 2004 09:25 GMT | 1 |
is it possible to create and display a control (a toolbar in my case) in the non client area of a parent control ? I want this to avoid taking into account the toolbar while drawing in the parent custom control.
|
| Peformance: Processes v's Threads | 21 Dec 2004 08:59 GMT | 1 |
I have a Service which is a single executable and 10-12 remoting threads. Each thread executes database SQL, writes to files on behalf of clients. Will a thread ever block the entire process when waiting for a
|
| What programming language | 21 Dec 2004 03:46 GMT | 17 |
This is going to seem like a generic question that has been posed 1001 times and is probably very subjective, but I need some real world answers, rather than textbook answers. Let me give my background in 2-3 sentences:
|
| Application Icon | 21 Dec 2004 02:37 GMT | 1 |
In a VB.net project's property pages you can set the application's icon using <ProjectName> Property Pages -> Common Properties -> Build -> Application Icon. This allows you to choose any icon that is already within the project (or you can add a new icon to the project from an ...
|
| old fashion sand watch bitween the pages while | 21 Dec 2004 01:40 GMT | 5 |
How can I create some thing like old fashion sand watch bitween the pages while waiting for query to return the result to display? Thanks in advance
|
| MSIL | 20 Dec 2004 22:22 GMT | 3 |
Is there any way to write code with MSIL to compile directly (not first in C# or VB and other .net languages)?I know any .net languages first compile into MSIL and MSIL is a interface between .net(C#) and machine,i consider to write code with MSIL .
|
| Newbie question: DLLs and Config files | 20 Dec 2004 21:53 GMT | 6 |
I have used application configuration files with windows and web apps. Now I would like to create a class library and associate a config file with the DLL. This is to support directory changes that will take place in the future. I want to put directory pathnames in the config ...
|
| Need a book recomendation | 20 Dec 2004 21:48 GMT | 1 |
I want to buy a book about .net Webservices, does any body have a suggestion? Thanks ------------------------
|
| Difference between exe and dll?? | 20 Dec 2004 21:31 GMT | 3 |
hi can nybody help me with the difference between exe and dll in .Net context ??? Amrita Bhatia
|
| How to create an unsigned char in VB.Net | 20 Dec 2004 21:22 GMT | 1 |
I have this C++ code: // Pointer to tranfser buffer unsigned char* theBuffer = NULL; In .Net (Visual Basic) how do I do that?
|
| Can I, in code, set the Log Size properties of Custom Event Logs? | 20 Dec 2004 21:15 GMT | 1 |
Or must the properties of the Custom Event Log be set in the Windows Event Log viewer? The properties I want to control are: 1. Max Log Size
|
| C# Memory Leak | 20 Dec 2004 21:12 GMT | 8 |
Hi, I have the question: If to use static method and allocate new object in it will this new object be collected by GC? For Example:
|