Monday, October 24, 2011 8:11 AMi got 2 program here.. A.exe and B.exe.. B.exe is external program..how can i run my program just once at same time? all start from A.exe.. if A.exe running twice, a messagebox appear "A.exe already running".. if A.exe detect B.exe was...
Monday, September 24, 2018 11:45 AM ✅AnsweredStay away from thread.sleep unless you really know what you're doing. It is not threadIgnoreUIButKeepWorking. The entire thread will be asleep, unresponsive, and do nothing, react to nothing. Sleeping a thread is generally the last thing you...
Private Sub TextBox1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown If e.KeyCode = Keys.Enter Then e.SuppressKeyPress = True 'Do something here if you need to when Enter is pressed End If End Sub If you say it can`t be do...