NauticalGent
Ignore List Poster Boy
- Local time
- Today, 06:43
- Joined
- Apr 27, 2015
- Messages
- 6,872
MarkK, thanks for the example. I fiddled with it to suit my needs and although some might argue that I am using a bazooka to kill a mosquito, there are some distinct advantages that I think are available to me now.
I was using Public Type Variables to hold user info - I thought they were neat because they were always at the ready but I didn’t like having system resources been used on holding it in memory. Probably over reacting but I am a product of the DOS/64k generation.
Also, although I have not been able to duplicate the event, I have experienced where my application “forgot” the user info after the user had logged in.
What I like about your Class Module is how I can recall what I need on demand regardless of what hiccups may occur during a session, not to mention future expansion if I need to add user validation-based input and how to handle those situations.
Thanks again for posting...
I was using Public Type Variables to hold user info - I thought they were neat because they were always at the ready but I didn’t like having system resources been used on holding it in memory. Probably over reacting but I am a product of the DOS/64k generation.
Also, although I have not been able to duplicate the event, I have experienced where my application “forgot” the user info after the user had logged in.
What I like about your Class Module is how I can recall what I need on demand regardless of what hiccups may occur during a session, not to mention future expansion if I need to add user validation-based input and how to handle those situations.
Thanks again for posting...