|
Post by (X) on May 31, 2023 10:26:10 GMT 1
Yet another insightful article.
|
|
|
Post by rogercabo on May 31, 2023 21:14:16 GMT 1
Yes.. This is the reason why I insert an OCX Timer to every program I write, to keep the some real time stuff updated permanently with DoEvents at about 33ms. Now test this in an exe. Even a 16bit Fileselectbox is open OpenW 1 OcxOcx Win_1 Timer Tmr1 = "" Tmr1.Enabled = True Tmr1.Interval = 30
PrintScroll = True PrintWrap = True Do Print "."; Sleep Until Me Is Nothing
Sub Tmr1_Timer DoEvents EndSub
|
|
|
Post by scalion on Jun 6, 2023 14:28:33 GMT 1
Cool, it's true that I found this "sleep" that didn't sleep strange. Now I know why.
|
|