In a perfect world, I wouldn't have to do this, but I'm at the mercy of event scripting for a program.
there's an event that runs every so often that triggers an subroutine. I'd like to declare a variable in that subroutine, but not have to worry about it when an event triggers it again. If I just go:
Public variable As String
.. it will give an error. I need to check if the variable exists... can that actually be done? I've yet to see a method to check if a variable exists.
plz help. Thanks.
there's an event that runs every so often that triggers an subroutine. I'd like to declare a variable in that subroutine, but not have to worry about it when an event triggers it again. If I just go:
Public variable As String
.. it will give an error. I need to check if the variable exists... can that actually be done? I've yet to see a method to check if a variable exists.
plz help. Thanks.
Comment