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
Artifact created with LinearGradientBrush and FillRectangle
Excel marco (close excel file and auto rename)
Exchange 2003 or 2007 with VMWARE
Fixing - Cannot perform an aggregate function on an expression containing an aggregate
Windows form dialog box Refresh parent
Open a form and populate an unbound field on the form being opened
Advice needed... getting data from another application into Access
ASP.Net asynchronous sql execution
xp professional service pack 3
How do I programmatically set the recordsource in a subreport?