求助,如何用VB6记录程序
求助各位,如何用VB6记录某个程序如1.exe启动次数,当达到一定次数如30次,执行2.bat,谢谢各位给个源代码!谢谢!
on erroe resume next open (xxx)for input as #1'xxx自定义 input #1,a close #1 if a = 0 then open (xxx) for output as #1 print #1,"1" close #1 if a > 0 then a=a+1 open (xxx) for output as #1 print #1,a close #1 end if end if end sub