- Home
·
- Graphics
·
- Set any dynamic color to back of textbox in simple way
Set any dynamic color to back of textbox in simple way
Set any dynamic color to back of textbox in simple way
API Declarations
'Take 3 Labels for display values of Hscroll & Change name label3,label8,label9
'take text box change name txtrno
Rate Set any dynamic color to back of textbox in simple way
(1(1 Vote))
Private Sub HScroll1_Change()
Label3.Caption = HScroll1.Value
txtrno.BackColor = RGB(HScroll1.Value, HScroll2.Value, HScroll3.Value)
End Sub
Private Sub HScroll2_Change()
Label8.Caption = HScroll2.Value
txtrno.BackColor = RGB(HScroll1.Value, HScroll2.Value, HScroll3.Value)
End Sub
Private Sub HScroll3_Change()
Label9.Caption = HScroll3.Value
txtrno.BackColor = RGB(HScroll1.Value, HScroll2.Value, HScroll3.Value)
End Sub
Set any dynamic color to back of textbox in simple way Comments
No comments yet — be the first to post one!
Post a Comment