Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I simply tried the search option in the combo box and followed the wizard. This may be the problem?
Might use an autonumber in my Size Table especially if you enter something like #16 or 3/4".
FWIW, I almost always use an autonumber primary key on all tables. I don't waste time thinking about it anymore. I just add the first field as the primary key autonumber. I have too many decisions to make and don't need another. I also do a fair amount of web development and having a consistent numeric primary key simplifies my life.
Option Compare Database
Option Explicit
Public faytProducts As New FindAsYouTypeCombo
Private Sub Form_Load()
faytProducts.InitalizeFilterCombo Me.cmbProducts, "ManID", False
End Sub
Private WithEvents mCombo As Access.ComboBox
Private WithEvents mForm As Access.Form