rgarnett1955 Active Member Licensed User Longtime User Nov 6, 2020 #1 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
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 Nov 6, 2020 #2 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
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
rgarnett1955 Active Member Licensed User Longtime User Nov 9, 2020 #3 Ahhh! It all becomes clear Thank's Best regards Rob