VBA 自訂資料型態

有時候想要自己定義資料的型態(Type),所以就需要先宣告:

Type PersonalDataType
Name As String
ID As Integer
Address As String
End Type


然後指定變數自訂的資料型態後,就可以使用了。

Dim PersonalData As PersonalDataType
'設定變數值
PersonalData.ID = A12345
Please follow and like us:

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *