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
Ftp Password
How to check open ports in remote computers?
intermittent dead keys while typing
Java issues with IE8, also can't install Firefox or Chrome
Access variable field locking
No Netware NDS Trees detected
Cannot Open Very Large Word Document
Deploy Access Application with runtime and revise Table links - Inno - XP Developer - Iexpress
Any free software for getting stats reports from Print servers.
Is there a cmd to see active sessions in SQL 2005?