I have what seems like it should be a simple problem, when I use the string() function in this line:
STRING(j + 1,'.bmp')
where j is an integer, i get spaces before the filename created, so that it is in a form:
****1.bmp, where the * is a space. is there a quick way to get rid of these spaces or do I have to convert j from an integer to a character and use the character in the function?
|