Quote:
Originally Posted by edon1337
There's a problem though, even with that stock, how am I supposed to add a character at the start of the text? If I replace " with ;" it will be like this
Meanwhile it should be like this
|
That's basic string manipulation, nothing to do with files.
1.Shift all cell's content one position to the right and then overwrite the first one.
2.Use formatex in another string, like formatex(..., ..., ";%s", Line).
3.Use strcat.
__________________