Microsoft
Software
Hardware
Network
Question : VBA concatenation of form names
I have a form that I need to set the visible property to true or false. How can I set this up so that I can use a variable in where CompanyContacts is
Me.subfrm_CompanyContacts.
Visible = True
I tried this but it won't work.
Me.subfrm_ + tableName + .Visible = True
Answer : VBA concatenation of form names
use this format
me("subfrm_" & tableName).visible=true
or
Forms("nameoFMainform")("s
ubfrm_" & tableName).visible=true
Random Solutions
How do I insert an automatic check box for Word 2007
vba code to close form (with a subform) after user clicks on the back record navigation selector button
The semaphore timeout period has expired. Unable to create folder.
SQL 2008 Transaction log
Fox 9 Validation routine
form set focus vb.net
OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction
OL2k3: Unable to open your default e-mail folders. The information store could not be opened.
how to create tables in SQL Server 2008
How to calculate 25th percentile on an Access report