Delay Function in VB6 - Visual Basic 4 / 5 / 6
Hello all, I want to put delay in my loops as we use in c/c++.. Is there any delay function in vb6 which put delay between any code??? Thanx ... Try: system.threading.thread.sleep(miliseconds) I wouldn't try that in VB6, you might hurt yourself. :) You mi...