Will the event routines directly have typed variables ?
Like: Sub frmMain_MouseDown (x As Number,y As Number) Sub cbxMatrix_SelectionChanged (Index As Number, Value)
instead of Sub frmMain_MouseDown (x, y) Sub cbxMatrix_SelectionChanged (Index, Value)
This is a very good question. For now it will not work (actually it will only work in the IDE and it is a bug that it works there).
The main problem here is that the untyped version must be supported for backwards compatibility and there is a problem with supporting several sub signatures.
I had added the variable types in the event routines in the 'Dynamic simulations' program but hadn't tested them yet.
Removed them now because the routines don't work.