Click to See Complete Forum and Search --> : Loading a Form Throught It's Name in String Form.


waqas_hussain
July 3rd, 2001, 09:59 PM
I've got a forms name in a string variable, how can I reference the from through code? Is it possible or not?

Cakkie
July 4th, 2001, 12:44 AM
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
slisse@planetinternet.be

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

Cimperiali
July 4th, 2001, 03:31 AM
have also a look here (and rate John and Cakkie reply if they helped you!):
http://codeguru.com/cgi-bin/bbs/wt/showpost.pl?Board=vb&Number=52498&page=&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.