Drstein99
Well-known member
I want to dim a boolean object in the beginning of the form, as public.
Dim eTest as boolean = false
Now I want to add an event, changed to be executed when I change the state from "true" to "false" and vice-versa. Like this:
private sub eTestChange() handles etest.statechange
end sub
But I know thats not how I do it. How would I create an event that triggers when that memory variable is changed?
Dim eTest as boolean = false
Now I want to add an event, changed to be executed when I change the state from "true" to "false" and vice-versa. Like this:
private sub eTestChange() handles etest.statechange
end sub
But I know thats not how I do it. How would I create an event that triggers when that memory variable is changed?