| Thread | Last Post | Replies |
|
| Windows Service | 28 Sep 2005 18:09 GMT | 3 |
I am trying to access the registry from a Windows service... My code is trying to set value to one of the subkey's for HKEY_CURRENT_USER, but it keeps putting the value under HKEY_USERS everytime...I have tried running the service as Administrator, a user with Administrative ...
|
| How can I restart application in program | 28 Sep 2005 17:42 GMT | 1 |
want to renew all values of Application and Session. How can I restart application in program?
|
| before insert sqlDataAdapter | 28 Sep 2005 17:34 GMT | 11 |
i have a query: select id, name from Dictionary field "id" is guid (so not null, and not identity) i show only "name" in the dataGrid how to set new id when i insert a new record?
|
| Package & Deployment Wizard | 28 Sep 2005 16:37 GMT | 1 |
VB 6.0 has "Package & Deployment Wizard", does C# have something like that?
|
| Wrapping label text in C# | 28 Sep 2005 16:12 GMT | 7 |
I am trying to have one label on a form with multi line display of the results from a database query. so my query looks like Select FirstName+" "+LastName+"\r\n"+Address as Info I want to have the label show
|
| FXCop warning with explicit struct layout | 28 Sep 2005 16:04 GMT | 4 |
I got a warning from fxcop from the declararation of a struct. the warning: "Structures with explicit layout containing misaligned fields cause crashes on 64 bit platforms"
|
| when there is stringbuilder, why string ? | 28 Sep 2005 15:57 GMT | 4 |
one question on why string is provided ? stringbuilder offers more performance, less work for GC and good amount of methods to manage text in it. When there are many benefits with stringbuilder, why still string is
|
| Architecture guidelines | 28 Sep 2005 15:56 GMT | 12 |
As a rule of thumb, is it good practice to abstract application functionality from the form code behind in a c# winforms app? I have a single form application, but I'm not sure where I should be doing my main processing, if I should be working with the Form class instance or ...
|
| Any links to show the VB6 equivilent code in C#? | 28 Sep 2005 15:51 GMT | 3 |
I'm producing a data conversion app in C#. I have the code already written in VB6. I would to know if anyone knows of any links that shows the VB6 function/syntax equivilent in C#? For example in the VB6 code it has 'While rsSource.EOF' and 'Set rsTarget = ddTarget ...
|
| 3 -> 0003 Simple String.Format Question! | 28 Sep 2005 15:49 GMT | 4 |
I have an integer whose value varies from 0 to 9999. I want to print it in a four-digit format. Like, 0000
|
| Obfuscator - Crytografy code | 28 Sep 2005 15:15 GMT | 1 |
i would like to know the best obfuscator or the most used one. i need an obfuscator to make harder the job for people who wants to use reverse engineering to read my code. Thanks
|
| ReadToEnd() Blocking | 28 Sep 2005 15:09 GMT | 3 |
I am writing to a network stream using the following code: TcpClient client = new TcpClient(); client.Connect(IPAddress.Parse("192.168.2.100"), 55650); NetworkStream stream = client.GetStream();
|
| Host asp.net web at home | 28 Sep 2005 15:06 GMT | 4 |
I try to host my own web at home, but can not make it work. Env: verizon dsl modem and router combo; win 2000 + sp4; IIS; .net framework 1.1; MS VS 2003… What I did:
|
| How do I embedd an ocx | 28 Sep 2005 15:03 GMT | 1 |
How do I embedd an ocx control in a windows form in C#? Does it inherit from Microsoft.Windows.Forms.Form? Thanks for any response to this newbie question, Nuno Magalhaes.
|
| Solution for the Error : The service did not respond to the Stop call in a timely fashion | 28 Sep 2005 14:56 GMT | 1 |
I am writing a service which takes a long time to stop after the OnStop call is given by the Services Snap-in. The problem is I cannot cut down on the time that it takes to Stop. The Service snap-in gives me the error saying that the service did not respond to the Stop call ...
|