- Joined
- Jul 15, 2007
- Messages
- 216 (0.03/day)
System Name | Monsta AMD |
---|---|
Processor | FX-8120@4.3@1.4v |
Motherboard | Gigabye 990fx ud3 rev 4.0 |
Cooling | custom XSPC EX360 |
Memory | 8Gb Kingston Fury ddr3 1600@1920 |
Video Card(s) | GTX 980 |
Storage | Kingston ssd Now V3, Seagate barracuda 1 TBx3 |
Display(s) | AOC 24" full HD |
Case | In Win Android |
Audio Device(s) | integrated |
Power Supply | evga supernova nex 750g |
Mouse | CM Storm |
Keyboard | iRocks |
Software | win 8.1 X64 |
hi guys im trying to make a little script but I'm having trouble with certain part the output of information to a simply text file
this is the function that I'm having trouble
startnum = 1000000000
endnum = 9999999999
incnum = 1
Const ForAppending = 8
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile("E:\list.txt",ForAppending)
Do until startnum <= endnum
objFile.WriteLine startnum
objFile.Close
startnum = startnum + incnum
Loop
this is the function that I'm having trouble
startnum = 1000000000
endnum = 9999999999
incnum = 1
Const ForAppending = 8
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile("E:\list.txt",ForAppending)
Do until startnum <= endnum
objFile.WriteLine startnum
objFile.Close
startnum = startnum + incnum
Loop