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