11-12-2023, 05:49 AM
(11-12-2023, 05:46 AM)eoredson Wrote: Neither of these 2 functions work:Bit length variables and arrays are not allowed inside UDTs.
Code: (Select All)Type BitStruct
xbit As _Bit
End Type
Dim BitStructure As BitStruct
BitStructure.xbit = 0
Print BitStructure.xbitCode: (Select All)type StructType
Array(10) As Integer
End Type
Dim Structure As StructType
Structure.Array(10) = 10