L
lmefford
Ok, so I've got a weird question. I'm working with an outside class
that someone made that will save the application settings in the
Application Data Folder. However, one problem I'm having, and I
already found the (lengthy) fix for is that I'm not able to mix
handles:
Private Sub uicheck1_CheckedChanged _
(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles _
uicheck1.CheckedChanged, _
uicheck2.CheckedChanged, _
uicheck3.CheckedChanged, _
uitext1.TextChanged
What happens when I run my code like that, it won't run the portion to
save whatever check boxes are checked, however; it saves the changed
text in my textbox just fine. Is there something that I'm missing
here, because when I remove the uitext1.textchanged, it works
perfectly fine. The problem with that is that I'm kind of wanting to
cut down on the code on this part of the app since it's a bit silly to
copy and paste my saving and loading code several times.
that someone made that will save the application settings in the
Application Data Folder. However, one problem I'm having, and I
already found the (lengthy) fix for is that I'm not able to mix
handles:
Private Sub uicheck1_CheckedChanged _
(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles _
uicheck1.CheckedChanged, _
uicheck2.CheckedChanged, _
uicheck3.CheckedChanged, _
uitext1.TextChanged
What happens when I run my code like that, it won't run the portion to
save whatever check boxes are checked, however; it saves the changed
text in my textbox just fine. Is there something that I'm missing
here, because when I remove the uitext1.textchanged, it works
perfectly fine. The problem with that is that I'm kind of wanting to
cut down on the code on this part of the app since it's a bit silly to
copy and paste my saving and loading code several times.