VB实现定时中断问题!!!!!
VB中如何实现定时器中断 就是程序当前在执行一段循环语句时,每过一秒就进行中断,跳出循环执行其它语句!执行完了在返回循环语句执行
有一个思路你试试:
Apoint:
atimer = timer '记录时间
循环…………
if timer - atimer >= 1 then exit loop
…………语句
其它语句…………
goto Apoint