Hi,
Trying to remove form feed characters from text files... I find no predefined constant, @FF in the manual...
Ideas?
Use the Num2Char() function.
Num2Char(12)
Jim
So then,
FormFeed = Num2Char(12)
page = StrReplace(page,FormFeed,"")
?
That should work. Assuming I read my ASCII chart correctly.
Jim
Works perfectly, Thanks..!