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
Image Printing in Forms
closing form without saving
Restoring a CString From a LPARAM
Terminal Server - Outlook configures automatically when users login
SQL Express 2005 ODBC Connection Error 67 and 17
RRAS & VPN install on Server 2003
RPC/HTTP won't accept password on Exchange 2007 unless the Default Web Site is restarted
IF Statement with Index formula
Can an Outlook calendar be imported into SharePoint?
I am trying to install ADFS on Windows server 2003 R2 - I can get the ADFS web components installed but...