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
T-SQL: calculate totals in SELECT statement witout GROUP BY
Error when updating from MS Money 2000 to MS Money 2008
How to input form data into table or query
Stored Procedure Fails To Populate Recordset
OCS 2007 Issue
Need an XSD viewer
Trace dependents/precedents on multiple cells in excel (macro)
Open form in acDialog command not working
Installing PFBackup under Windows 7
Change a SQL Service account