Mar 25, 2002 #1 drewmann Technical User Mar 25, 2002 2 US Can I get a variable from a module to poulate a text box on a form?
Mar 25, 2002 #2 jimmythegeek Programmer May 26, 2000 770 US You bet. Just make sure the variable in the module is public: Public MyVar As String Then on your form, it is simply: Me.MyText = MyVar Jim Lunde compugeeks@hotmail.com We all agree your theory is crazy, but is it crazy enough? Upvote 0 Downvote
You bet. Just make sure the variable in the module is public: Public MyVar As String Then on your form, it is simply: Me.MyText = MyVar Jim Lunde compugeeks@hotmail.com We all agree your theory is crazy, but is it crazy enough?