Using the method on this website:
http://www.vbworld.com/demos/choosecolor/
(That may be it, if not serch for it)
I want to choose a custom color so that next time you choose a color, it shows your previously chosen custom colors.
Any ideas?
Printable View
Using the method on this website:
http://www.vbworld.com/demos/choosecolor/
(That may be it, if not serch for it)
I want to choose a custom color so that next time you choose a color, it shows your previously chosen custom colors.
Any ideas?
Code:'a place to start
Private Sub ChooseColour_Click()
'add a label Label1
Dim oldColor As String
oldColor = Me.BackColor
Label1.BackColor = oldColor
Label1.Caption = "This was the last color used."
'etc