Hello,
How can i change button1.Enabled = False color? It stays the same as if it's true when i set custom color on it, any help how to change button color when it's disabled?
Yes, i do it too, but i want to change it's design when it's false.... Or u mean do it manually in the code? If enabled = false then color = black for example?
Dim btnenabled as boolean = False 'whatever you want it to be at first
Sub btn_Click
if(btnenabled)Then
btn.color = colors.green
btnenabled = false
else
btn.color = colors.red
btnenabled = true
end if
end sub