Hi,
I have to do search engine for shop (my course assessment) it have to search produckts by code and description. I dont really know how to do it. Can someone help me?
that what i have:
Private Sub Command1_Click()
Dim code(6) As String
Dim description(6) As String
Dim price(6) As Currency
code(1) = A349
code(2) = B359
code(3) = C369
code(4) = D379
code(5) = E389
code(6) = F399
description(1) = Keyring
description(2) = Mug
description(3) = Scarf
description(4) = Pen
description(5) = Doll
description(6) = Pencil
price(1) = 5.99
price(2) = 9.99
price(3) = 14.5
price(4) = 2.49
price(5) = 7.99
price(6) = 0.85
End Sub