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
Microsoft, Server 2003, SP2 Bugcheck 0x0000000a Problem
warning LNK4089: all references to "WSOCK32.dll" discarded by /OPT:REF
Missing day no. when using FormatDateTime
Corrupt Excel file - unable to recover from all machines
Issue Opening Excel File in MS Excel 2007 w/Embedded Links
How to show number of messages besides a folder
"You don't have the license required to use this Active X Control"
MS Virtual Machine and disk2vhd
How do I change the collating sequence properties at both the database and sql engine level for both SQL 2000 and 2005?
VS 2008 sending html email - form design question