Doc. # 1-0000086
Date Updated 07-27-2005 Date Created 07-27-2000
Document Type Knowledge Base Related OS
Related Product GeniDAQ
How to send <CR> under Genie/VisiDAQ/GeniDAQ?
Solution:
The following is for your reference: 1. RS-232 Block: "^M" means under SER, please refer to [Help] to get more information about other terminating characters. 2. Basic Script: ========================== Sub SCR1( ) dim s1 as string ' s1="#010^M" => Syntax is wrong s1="#010" + chr(13) ' chr(13) means under VBA outputs 1,s1 End Sub ========================== 3. User Program Block: "\r" means under UPB, you can add it behind any string.