i want that the message box only 10 secound appear and then close.
[Only registered and activated users can see links. Click Here To Register...]
edit :
public class Program
{
public static void Main()
{
System.Windows.Forms.MessageBox.Show("test");
System.Threading.Thread.Sleep(1000);
System.Windows.Forms.SendKeys.SendWait("{Enter}");
}
}
funktioniert leider nicht..
[Only registered and activated users can see links. Click Here To Register...]
edit :
public class Program
{
public static void Main()
{
System.Windows.Forms.MessageBox.Show("test");
System.Threading.Thread.Sleep(1000);
System.Windows.Forms.SendKeys.SendWait("{Enter}");
}
}
funktioniert leider nicht..