I'm a bit messing around with the demoversion, to be a bit more prepared for the eventual purchase with the GUI module :P
I want this:
But.. it doesn't work.. :/
So, yes: I want functions to assign a type to a variable. How can I make this work?
Note that according to the compiler the actual test=Create() doesn't give errors.. I just can't use members.
I want this:
Type tType Field a,b,c Method Blah() Notify "byebye w0rld "+a+" "+b+" "+c End Method End Type test=Create() test.a=1 test.b=2 test.c=3 test.Blah() End Function Create:tType() Return New tType End Function
But.. it doesn't work.. :/
So, yes: I want functions to assign a type to a variable. How can I make this work?
Note that according to the compiler the actual test=Create() doesn't give errors.. I just can't use members.