Internet PLC Forum
General => Technical support => Topic started by: dk_akj on September 06, 2004, 12:35:42 PM
-
Hi
I need to send the danish character "?" ascii 248 to a modem.
In the view variables window it displays ? but the modem doesnt send it.
Is it the modem or the plc ??
Regards
Anders
-
You should either use the
OUTCOMM 1, 248
or construct a string that include the CHR$(248) as part of the string and send out using the PRINT command:
PRINT #1 "Sending ASCII character:"+CHR$(248)