Hi all. :wave:
Saving parameters for keeping data after shutting down is possible through Project>Settings.
I already used several items to save (fonts, checkboxes booleans, strings, etc.)
Code overview would look like this:
*Some graphical settings were also done.
- (ApplicationSettings)
(PropertyBindings)
Value: digitm1
The problem is, how can I save some UserControl array, control values in settings and recall them in every opening?
Saving parameters for keeping data after shutting down is possible through Project>Settings.
I already used several items to save (fonts, checkboxes booleans, strings, etc.)
Code overview would look like this:
Code:
Private my_digit1 As Boolean
Public Sub New()
InitializeComponent()
InitializeSettings()
End Sub
Private Sub InitializeSettings()
my_digit1 = My.Settings.digitm1
End Sub
- (ApplicationSettings)
(PropertyBindings)
Value: digitm1
The problem is, how can I save some UserControl array, control values in settings and recall them in every opening?