Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'********************
'first declare the new type of variable:
Type TestResult
Today As Date
TimeOfTest As String * 8 'rem: means 8 characters in each string
Var1 As Single 'or Integer if ther are no decimals
Var2 As Single
Var3 As Single 'even more "Varx" as you need them
End Type
'then declare the array made of your new type of variable:
Public TestResults(100) As TestResult
'*********************
'*********************
Private Sub Command1_Click()
TestResults(50).Var1 = 5.2
Debug.Print TestResults(50).Var1
Debug.Print TestResults(50).Var2
End Sub
'*********************