ReneMiner
27-01-2015, 11:21
something that annoys probably not me only, is the situation if creating some new udt and finding names for the udt-elements - and 99% of those i would like to use are occupied by some thinBasic-keyword already :tears:
Can't we write those udt-element-names optional in quotes to avoid this?
They always have a dot in front in all other cases - so not very likely to get interpreted as keyword then (except from thinAir)
Type t_example
"Name" As String
"User" As Long
End Type
dim my as t_example
my.Name = "René"
With my
.User = 123
End With
PS- there's some new keyword "Version" - because of that - and something else - Petr's TBASS-3d-Sound-unit does not work any more
and there's some other reason - somethings wrong with TBASS i fear- i don't get sound :(
Can't we write those udt-element-names optional in quotes to avoid this?
They always have a dot in front in all other cases - so not very likely to get interpreted as keyword then (except from thinAir)
Type t_example
"Name" As String
"User" As Long
End Type
dim my as t_example
my.Name = "René"
With my
.User = 123
End With
PS- there's some new keyword "Version" - because of that - and something else - Petr's TBASS-3d-Sound-unit does not work any more
and there's some other reason - somethings wrong with TBASS i fear- i don't get sound :(