Ok i Got the Form1 and the Dialog3
i can save the trackbar1.value but when i save and close and open the application in the dialog3 says the value of the trackbar1 but the form1 opacity dont save :S
----- Button1 to save -----
Button1:
My.Settings.TaxiTransparency = TrackBar1.Value
My.Settings.Save()
Dialog3_Load:
TrackBar1.Value = My.Settings.TaxiTransparency
Label5.Text = My.Settings.TaxiTransparency
TrackBar1:
Form1.Opacity = TrackBar1.Value / TrackBar1.Maximum
AboutBox1.Opacity = TrackBar1.Value / TrackBar1.Maximum
Dialog1.Opacity = TrackBar1.Value / TrackBar1.Maximum
Dialog2.Opacity = TrackBar1.Value / TrackBar1.Maximum
Label5.Text = TrackBar1.Value
TrackBar1.Value = Label5.Text
So can anyone help me how to make it save that when i open again the app is already in the opacity
in Form1 i just put
Me.Opacity = Dialog3.TrackBar1.Value
but didnt work :(