Android Question b4a Option "Explicit"

Ed Brown

Active Member
Licensed User
Longtime User
I would say the short answer is 'No'.

B4x requires that all variables be declared prior to their use in code.
 
Upvote 0

Cableguy

Expert
Licensed User
Longtime User
... but you can, however, define and set an initial value

Private myvar = 1234 as int
 
Upvote 0
Top