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
Attaching printer to S30 Thin Client
How to repair a corrupt FPT file
SQL Query
Speed Issues when converting Access 97 to Access 2003
Server is not configured for transactions
Changing calendar from 5 days a week to 7
How would I use linq instead of dataset/dataview/datatable<wbr /> in the following scenario
Problem with Check Box Form Control
MS SQL FTS Index Population Error
Can I use union with sql subqueries?