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
Access database and VB.NET program error: The Microsoft Jet database engine cannot open the file
Terminal Server 2008 TSWEB Opening more than one App
The "Vbc" task failed unexpectedly.
Programmatically manipulate a result dataset in Reporting Services?
Microsoft Exchange Service Host Fails to start
The subscription(s) have been marked inactive and must be reinitialized
Seeking an example database that uses ADO coding
VBA Loop through record names
Slow Logon
I need to strip out every vbCrLF from a field