Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text generator

Status
Not open for further replies.

ooananoo

Programmer
Joined
Apr 27, 2001
Messages
4
Location
US
Hi!
I'd like to write a program that will automatically generate number of files named frame1, frame2, frame3...and so on(increasing number) upon user request.
How would I do this?
 

keep a counter for the number of frames

Dim Frame as Integer

when you write the file...

Filename$ = "frame" + str$(frame) + ".bmp"

frame = frame + 1(upon user request)

 
Thanks! I have another question. How would I save these files to a specific location?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top