Posted 26 January 2021, 12:09 pm EST
Hello,
I’m using the code below to change the text color on several Grids, but I reopen the application the color selected is not save. How do I make the change permanent?
Using cd2 As New ColorDialog
If cd2.ShowDialog = Windows.Forms.DialogResult.OK Then
My.Settings.GridTextColor = cd2.Color
My.Settings.Save())
ApplySavedForeColorForGrid(C1TrueDBGrid3)
ApplySavedForeColorForGrid(C1TrueDBGrid2)
ApplySavedForeColorForGrid(C1TrueDBGrid1)
End If
End Using
Thanks,
Victor