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
Getting wav files to play over RDP
MYSQL query syntax, subquery joins alias
Best recomended anti virus for Windows 2003 server operating sytem
Groupby in a recordset in a Access VBA code module.
How to change background html element when focus and lost focus?
SQL 5 Express Install Errors PLEASE HELP!
missing the users & groups in my computer management
DAO recordset edit problem
Opening an Excel File from an Access Form button
How automatically Rightfax a report via a MS Access Macro/VBA