<< Prev        Next >>

ID : 9092

String

Function

To present String Type data.

Description

This is used together with "Dim" in declaration of String Type local variables.

Related Terms

Integer, Single, Double, Position, Trans, Joint

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 : 9092

<< Prev        Next >>