This instruction is only for the advanced user who has experience in programing.
Set the value of a variable and resize the variable's buffer. The instruction is useful to the instruction "Call an External DLL". The user uses the instruction to initialize the variable which
would be a parameter for DLL function.
| Code of Data Type | Short Code | Data Type | Description |
| Integer | I | Integer | 2 bytes, the hexadecimal notation 0x is supported. |
| Long | L | Long | 4 bytes, the hexadecimal notation 0x is supported. |
| Byte | B | Byte | 1 bytes, the hexadecimal notation 0x is supported. |
| String[length] | S[length] | Text in DBCS | The member's size will be determined by the optional length or the actual size of the content.
If the character space is included in the text,
the text must be quoted by the single or double quotation marks. In this case, the quotation marks could be represented
by \' or \". |
| WString[length] | W[length] | Text in Unicode |
| Date | D | Date and time | 16 bytes (same as SYSTEMTIME in Windows API), the content should be
quoted by the number sign '#'. |
| Pointer | P | Pointer | 4 bytes, a pointer to the buffer of a variable. |