S
Sash
I have a program that does a lot of stuff and after running through a lot of
criteria and data formatting, I writ the string to a file as follows stType1
being declared as as string:
Print #1, stType1
My probem is that I need to see how many characters are in that string and
pad the end to equal 550.
So it would basically be:
intCount = 550 - (the length of stType1--however I do that)
and instead of the above I would do
Print #1, stType1 & String(inCount, Chr(32))
Any help would be greatly appreciated!!!!
criteria and data formatting, I writ the string to a file as follows stType1
being declared as as string:
Print #1, stType1
My probem is that I need to see how many characters are in that string and
pad the end to equal 550.
So it would basically be:
intCount = 550 - (the length of stType1--however I do that)
and instead of the above I would do
Print #1, stType1 & String(inCount, Chr(32))
Any help would be greatly appreciated!!!!