newprogamer
Programmer
Does any one know what irow does?
'open the record set and search for contents in the combo box
Set Rs = db.OpenRecordset("SELECT * FROM tblFileName WHERE Manufacturer = " & cboManufacturer.Text)
Rs.MoveFirst
irow = 3
Do While Not Rs.EOF
Cells(irow, 1) = Rs("Quoter")
irow = irow + 1
Rs.MoveNext
Loop
'open the record set and search for contents in the combo box
Set Rs = db.OpenRecordset("SELECT * FROM tblFileName WHERE Manufacturer = " & cboManufacturer.Text)
Rs.MoveFirst
irow = 3
Do While Not Rs.EOF
Cells(irow, 1) = Rs("Quoter")
irow = irow + 1
Rs.MoveNext
Loop