Drawtext loses numerical text...

HarleyM

Member
Licensed User
Longtime User
Hi Everyone,

I'm trying to display text in a bitmap that I have read via textreader from a text file.

It all works ok except that lines of pure numerals are always skipped. The textreader passes them line by line ok, but the drawtext function just ignores them.

Am I missing something here? :sign0085:
 

JogiDroid

Member
Licensed User
Longtime User
Does forcing them to string help??
something like..
newString = "" & textReaderLine
 
Upvote 0
Top