Hi,
is it possible to assign values to all parts of a variable of a user defined type using only assignment statement?
For example:
type myType
name as string
value as integer
end type
dim myVariable as myType
<<<myVariable = “name”, 0 >>>
… so that myVariable.name gets “name” and myVariable.value gets 0?
Many thanks,
Peter