摘要: vbs 里有时候我们要"组装" 一些字符串,而我们要用的是这些字符串所代表的值,而不是字符串本身,这个时候就可以使用函数eval() 来将字符串转换为它所代表的值: num1 = 11 num2 = 12 num3 = 13 sum = 0 for i= 1 to 3 sum = sum + eva 阅读全文
posted @ 2020-09-25 14:31 lazybee 阅读(374) 评论(0) 推荐(0)
摘要: Const fileName = "D:\autoSaveParam.txt" Const Forreading=1 Const ForWriting=2 Const Forappending=8 Dim hP100,hP103,hP105 Dim Fso ,tf 'the file exists 阅读全文
posted @ 2020-09-25 14:23 lazybee 阅读(1416) 评论(0) 推荐(0)