[RESOLVED] FRM file generated coding format error
Hi.
My project consist in creating frm files. I've done all my routines perfect.
My only problem is that my chr(13) appears like a little square. What should I do to prevent this?
Also, vb6 doesn't recognize the form run-time created as a form, but as a module.
I think my problem is abount char codification (ANSI, Unicode, etc...)
Thank you in advance.
Re: FRM file generated coding format error
Instead of Chr(13) use:
VbCrLf
or
VbNewLine
Re: FRM file generated coding format error
I've used VbNewLine.
That worked well.
Thank you.