I am wanting my sub form combo box to show the Cities based on the State Selected in my Form Combo Box. What I have in VBA code after update is...
strSQL = "Select " & Me!LkUpST
strSQL = strSQL & "FROM qryCity_Select"
'Forms!StateCityZipMilage_sfrm!LkUpCity.RowSourceType = "Table/Query"
Forms!StateCityZipMilage_sfrm!LkUpCity.RowSource = strSQL
When I run this I get a "Cannot Find the form 'StateCityZipMilage_sfrm' "
Thank you for your time and help in this matter.
Robert M
strSQL = "Select " & Me!LkUpST
strSQL = strSQL & "FROM qryCity_Select"
'Forms!StateCityZipMilage_sfrm!LkUpCity.RowSourceType = "Table/Query"
Forms!StateCityZipMilage_sfrm!LkUpCity.RowSource = strSQL
When I run this I get a "Cannot Find the form 'StateCityZipMilage_sfrm' "
Thank you for your time and help in this matter.
Robert M