Wish B4X Libraries - Please include Visibility and Enabled properties for setting programatically

rgarnett1955

Active Member
Licensed User
Longtime User
Hi,

It seems every time I try to set B4X View Enable and Visible properties I find that although they are included in the designer you can't set them in the code.

Please include these routinely when designing these libraries.

Examples:
B4XComboBox.Enabled  = False
B4XComboBox.Visible  = True

B4XSeekBar.Enabled  = True
B4XSeekBar.Visible  = True

Best regards
Rob
 

stevel05

Expert
Licensed User
Longtime User
As for all custom views, you need to set these properties on the Base view
You can use:
B4X:
B4XComboBox1.mBase.Visible
B4XComboBox1.mBase.Enabled
B4XSeekBar1.mBase.Visible
B4XSeekBar1.mBase.Enabled
 
Top