eng70640
March 13th, 2001, 10:20 AM
The variable bitmap are defined as string . How can i make use of line 1 to form the string sentence "save capture 1bitmap.wav " if i is 1?
i = i + 1
bitmap = CStr(i) + "bitmap" 'line 1
Cimperiali
March 13th, 2001, 10:53 AM
Hope this help
dim i as integer
dim mystring as string
mystring ="save capture "
for i = 1 to YourNumberOfBmp
mystring = mystring & i & "bitmap.wav"
'do something with mystring,
'next it will be
'save capture 2bitmap.wav
'and so on
next i
Special thanks to Lothar "the Great" Haensler. Come back soon, you Guru.
Cimperiali
March 13th, 2001, 10:59 AM
Hope I understood what you mean...I am not sure: why you choosed Api category?
Special thanks to Lothar "the Great" Haensler. Come back soon, you Guru.