in form1 there is a checkbox witch when you click , it will save checked value in xml file
in splash screen its has a label1.text = "welcome "
what i want is ,when splashscreen loading up check if settings of form1.checkbox1.checked if true then
do
[splashscreen]
me.text ="your not welcome"
Private Sub SplashScreen1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If My.Settings.form1_checkbox = Form1.Checkbox1.checked Then
Label1.Text = "your not welcome"
Else
Label1.Text = "welcome"
End If
End Sub