How can i save colordialog say for back color or text and load it. Would it need to be converted to string ? If so could you offer an example of it.
I have managed to write my other saves just having trouble with color dialog not sure how to convert that to string if i even have to. If there is another way besides string I know of none . Thank's....
EDIT: I SOLVED THIS !!!
self solved please close !~
This will Absolutely WORK FOR YOU
Code:
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
With Me.ColorDialog1
.Color = Label1.ForeColor
.ShowDialog()
Label1.ForeColor = .Color
End With
End Sub