i have record saved in msaccess which i want to display on an SSTab containing text boxes and combo boxes. i have created a procedure to display the record on click of the ID which appears on a list box. this is he code:
Private Sub lstSearch_Click ()
If cboCategory.Tex t = "SKIN" Then
DisplaySkinReco rd
Else
DisplayStateRec ord
End If
End Sub
this is the procedure:...