Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Why doesn't the third drop box work? Plese check

Status
Not open for further replies.

spidalegz

Programmer
Oct 14, 2003
11
US
Private Sub Combo0_AfterUpdate()
Combo2.Requery
End Sub


Private Sub Combo2_BeforeUpdate(Cancel As Integer)

End Sub

Private Sub Combo2_GotFocus()
If Len(Trim(Nz(Combo0, "") & "")) = 0 Then
MsgBox "Please Specify Make first"
Combo0.SetFocus
Else
Combo2.Requery
End If
End Sub


Private Sub Combo6_GotFocus()
If Len(Trim(Nz(Combo2, "") & "")) = 0 Then
MsgBox "Please Specify Model first"
Combo2.SetFocus
Else
Combo2.Requery
End If
End Sub

All i get are numbers...that arent the years i want
 
Also, check and tell me if this looks right

SELECT CLyears.id, CLyears.years, CLyears.frn_model_id FROM CLyears WHERE (((CLyears.frn_model_id)=Forms!Banner!combo2)) ORDER BY clyears.years;

will that get my "years," which are actual years, to show up according to the code above? From the combo box above it?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top