dear sir
i have one check box and one button.when i open form above button is hide. if i tick check box and close the form and when i re open form i want to display above button please help me how to do it.
thank you
wansa
Public Class Form1
Dim settings As New My.MySettings
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If My.Settings.check = True Then
Button1.Show()
Else
Button1.Hide()
End If
My.Settings.Save()
End Sub
End Class