I want a combo box to display a list of tables beginning with "src". Any suggestions?
D DevDaniel Feb 2, 2007 #1 I want a combo box to display a list of tables beginning with "src". Any suggestions?
D Douglas J. Steele Feb 2, 2007 #2 Set the RowSource to: SELECT [Name] FROM MSysObjects WHERE [Name] Like "src*" ORDER BY [Name]
D DevDaniel Feb 2, 2007 #3 Thanks, Doug! I appreciate all the help you have given me on these forums over the past two years. Douglas J. Steele said: Set the RowSource to: SELECT [Name] FROM MSysObjects WHERE [Name] Like "src*" ORDER BY [Name] -- Doug Steele, Microsoft Access MVP (no e-mails, please!) DevDaniel said: I want a combo box to display a list of tables beginning with "src". Any suggestions? Click to expand... Click to expand...
Thanks, Doug! I appreciate all the help you have given me on these forums over the past two years. Douglas J. Steele said: Set the RowSource to: SELECT [Name] FROM MSysObjects WHERE [Name] Like "src*" ORDER BY [Name] -- Doug Steele, Microsoft Access MVP (no e-mails, please!) DevDaniel said: I want a combo box to display a list of tables beginning with "src". Any suggestions? Click to expand... Click to expand...