happycozy 发表于 2004-11-1 11:26:30

请问怎样将一个变量i的值(如i是从1递增到100)输入到editbox里?

用inputkeys函数好像不行,请问有没有其它可以用的函数,或者其它方法?

pcl2004_27 发表于 2004-11-2 00:15:02

dim i as integer

for i=1 to 100
   其他脚本
   InputKeys "This is Robot.{Enter}" + str(i)

nexti

happycozy 发表于 2004-11-2 13:14:20

谢谢版主!I see!

tomqi 发表于 2004-11-2 16:50:07

dim i as integer

for i=1 to 100
   其他脚本
   InputKeys ""&i

nexti
页: [1]
查看完整版本: 请问怎样将一个变量i的值(如i是从1递增到100)输入到editbox里?