Wish

Smee

Well-Known Member
Licensed User
Longtime User
Great improvements in V8 now for wish in V9


Wish 1
When in a sub for example EditText

B4X:
Sub etOptions_EnterPressed

end sub

It would be good to have a drop down list in the menu bar of all the possible events for that sub, not just ones that have been written. Then clicking on one of them would create or generate the empty sub. This saves having to generate alll the subs when using the designer or trying to remember what possible events are available.

Wish 2
When compiling the program have the compiler check for an attached device before compiling instead of at the end

Wish 3

Allow for all properties of a control to be set using something similar to VB's With & End With statement

B4X:
With Label1
       .Text="something"
       .Height = 300
       .Width=400
       etc
End With

I think this always makes for much neater code and apparently in VB it is faster execution

Keep up the good Work Erel

Now back to testing
 
Last edited:

MrRey

Member
Licensed User
Longtime User
All 3 are great ideas. I've been hoping for #2. And #3? Oh yeah. :D
 
Top