Hi,
This is my first coding experience with Windows Service. I have a Windows
Service that connects to remote drives using UNC paths (no drive letters). I
make the connection with the remote drive in my OnStart procedure. I run the
service with my username so that the service can have en...
more >>
I want to multiple two decimal numbers and get the normal result...instead,
I get a very large decimal result. Any idea how I can correct this problem?
double d1 = 5.21;
double d2 = 8.8;
double d = d1 * d2;
// d is now 45.848000000000006 in debugger or WriteLine
Thanks for the help.
A...
more >>
How to catch the windows exception that shows a window with the name of
the executable program and a messege saying : "[Program] has encounterd
a problem and needs to close. We are sorry for the inconvenience", and
three buttons, "Debug", "Send Error Report" and "Don't Send", in a
dotnet applica...
more >>
Hi guys,
I am developing a windows services which periodically connects to a
database, fetches data in a dataset and do so work. I have chosen to
use a thread to do this job. Since the thread monitors the situations
every 2 hours, I put the thread in a sleep state. On my WinXp machine
everyth...
more >>