I've got a forms name in a string variable, how can I reference the from through code? Is it possible or not?
Printable View
I've got a forms name in a string variable, how can I reference the from through code? Is it possible or not?
If you just wan't the main instance of the form
forms("formname").caption = "Hello"
If you want to create a new instance of hte form
dim frm as form
set frm = CreateObject("projectname.formname")
frm.caption = "Hello"
Tom Cannaerts
[email protected]
Programming today is a race between software engineers striving to build bigger and better idot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
have also a look here (and rate John and Cakkie reply if they helped you!):
http://codeguru.com/cgi-bin/bbs/wt/s...age=&view=&sb=
Special thanks to Lothar "the Great" Haensler, Tom Archer, Chris Eastwood, Bruno Paris and all the other wonderful people who made and make Codeguru a great place. Come back soon, you Gurus.