Vb6.0 怎么在timer里用if去判定command1按下去的动作?

如题所述

第1个回答  2016-09-24
比较笨的方法就是使用变量,摁下去a=a+1if a=1 then这样就能判断出摁了什么
第2个回答  2016-10-19
有MouseDown属性
第3个回答  2017-03-12
简单啊,
声明:
dim mouse as string
在chick事件里输入:
mouse=1
,在timer里:
if mouse=1 then
……
mouse=0
end if
相似回答