ID : 337
String
Function
To present String Type data.
Description
This is used together with "Dim" in declaration of String Type local variables.
Attention
-
Example
'!TITLE "Declaration of String Type Data"
' Assign a string to declared variable and display it on the message output window
Sub Sample_String
' Declare a variable named aaa in string type data
Dim aaa As String
aaa = "Denso Corporation"
' Display "Denso Corporation" on the message output window
PrintDbg aaa
End Sub
ID : 337