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
Insert ArrayList into SQL Database
DateTimePicker to DateTime SQL Server format
TCP/IP Send/Recieve Files
Microsoft SQL Server certification
can I partition Win 7 xp mode drive
Windows Mail to Outlook Express
insert missing deleted rows in a table from a backup
Need to know how to access a user control (.ascx) to build a StringBuilder() in another User Control
SMTP Mail
Extract sender,subject,priority,at<wbr />tachment from ms outlook using vba