need help with C# System.Windows.Forms.MessageBox.Show
i want that the message box only 10 secound appear and then close.
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}");
}
}
i want that the message box only 10 secound appear and then close.
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}");
}
}
GUI/Windows-Forms in C++ 04/01/2012 - C/C++ - 8 Replies Hey Leute,
ich lerne jetzt schon seit gut einem halben Jahr C++ und es klappt auch alles wunderbar und ich habe auch schon die ersten kleinen Spiele(Snake, Tetris) in der Console programmiert. Doch jetzt will ich auf GUI umsteigen, finde aber überhaupt keine guten How To's :(
Kennt ihr ein gutes How to, welches sich mit Windows Forms(Visual Studio), beschäftigt?
C# | MessageBox Show?! 03/09/2012 - C/C++ - 7 Replies Hey,
progge derzeit nen Bot und so..
Jetzt bräucht ich kleine Hilfe!
Ich möchte einen Button erstellen, und wenn amn draufklickt soll sich ein neues Fenster öffnen mit meinen bestimmten Text.
Windows Forms and Threads. 09/21/2011 - CO2 Programming - 7 Replies I know it's not a conquer related question, but since a lot of people here is C# programmers I just thought I would ask here.
Why is it exactly you cannot enter Windows Form Controls from another thread?
Not asking how to do it, but why it's not allowed.