I have this code in the general declarations section of the form:
and got this in the Form_Load:
then some sort of error comes out. What I have done wrong?
Code:
Option Explicit Type Example Value1 as Integer Value2 as Integer End Type
Code:
Dim Unit as Example Unit.Value1 = 1 Unit.Value2 = 2 Label1 = CStr(Unit.Value2)
Comment