View Single Post
  #3 (permalink)  
Old August 2nd, 2010, 04:45 PM
pottsmgg pottsmgg is offline
Registered User
 
Join Date: Jul 2010
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Code:
		/*MessageBox::Show(System::DateTime::Now.Ticks.ToString());
		MessageBox::Show(System::DateTime::Now.ToString("yyyy"+" "+"dd"+"  "+"hh"+"  "+"mm"));
			// displays the full name of the day ( ie Monday );
		MessageBox::Show(System::DateTime::Now.ToString("dddd"));
		MessageBox::Show(System::DateTime::Now.ToString("ss")); */

		System::DateTime today = System::DateTime::Now;
		System::DateTime answer = today.AddMilliseconds(2000);
		while (System::DateTime::Now <= answer);
		//this->button4->Visible  = "False";
		this->button4->Visible  = false;
Dont know about GMT
Martin
Reply With Quote