i need to annotate these for my software, but i have never used vb. please help me out. i need it by tomorow. my teacher is of no help
' when search by product id is Click
Private Sub search_productid_Click() ‘declare sub
On Error GoTo search_productid_Click_Err
DoCmd.OpenQuery "Search by...
Private Sub Form_Current() ‘declares sub
On Error GoTo Form_Current_Err
TempVars.Add "CurrentItemNumber", "[ItemNumber]"
Form_Current_Exit: ‘closes form
Exit Sub
Form_Current_Err: ‘opens an error message
MsgBox Error$
Resume Form_Current_Exit
End Sub
' Opens a form
Private Sub...
i need to annotate these for my software, but i have never used vb. please help me out. i need it by tomorow. my teacher is of no help
' when search by product id is Click
Private Sub search_productid_Click() ‘declare sub
On Error GoTo search_productid_Click_Err
DoCmd.OpenQuery "Search by...