<< 向前        下一页 >>

ID : 9092

String

Function

To present 字符串型 data.

Description

This is used together with "Dim" in declaration of 字符串型 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

<< 向前        下一页 >>