G
Guest
HI everybody,
I am writing a MDB function to write out (export) a dat file for a program that vendor provided.
Their program is running at dos prompt, and using the ANSI coding system, because it require my machine to add to config.sys :
DEVICE=C:\WINDOWS\COMMAND\ANSI.SYS
Let look at this:
?Chr(65)
A <-- represented by Chr(65)
after looking at their file spec. I want to raise a question:
If A = chr(65) then
Chr("?") = "Line Feed" <-- what is '?' "Line Feed" means a character (a code)
Chr("?") = "Carriage Return" < what is '?' "Carriage Return" means a character (a code)
Thanks & Regards!
I am writing a MDB function to write out (export) a dat file for a program that vendor provided.
Their program is running at dos prompt, and using the ANSI coding system, because it require my machine to add to config.sys :
DEVICE=C:\WINDOWS\COMMAND\ANSI.SYS
Let look at this:
?Chr(65)
A <-- represented by Chr(65)
after looking at their file spec. I want to raise a question:
If A = chr(65) then
Chr("?") = "Line Feed" <-- what is '?' "Line Feed" means a character (a code)
Chr("?") = "Carriage Return" < what is '?' "Carriage Return" means a character (a code)
Thanks & Regards!