2011
C# has a DateTime structure to hold date and time value in a single variable. The following script will gives you first and last date of given months in two lines of C# code. Assuming that the first and last dates we're looking for is for current month (now), the code would be like this:
DateTime FirstDate = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1);DateTime LastDate = FirstDate.AddMonths(1).AddDays(-1);

Using many "heavy" application/services running at the same time may cause some application to "lock up" or "hang". You can end those application process directly by using Windows Task Manager. But somehow when you try to start the Windows Task Manager, you found the following error message:
Cellular Emulator is included in Windows Mobile 6 Professional SDK Refresh. It is very useful if you currently developing an application which utilizes SMS and/or phone call features on the device. The Cellular Emulator can emulate making and receiving a call to Windows Mobile 6 device emulator, as well as sending and receiving SMS.
For anyone who need to know about commands that shuts down, reboot, hibernate, log off, and/or locking the computer in Windows XP by executing it from Windows XP command prompt or 'console'. This command may be useful in task scheduling or making it programmable.
601 Hits