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.
Dim X As Variant, Y As Variant
Y = Me.Combo1
Y = DLookup("[pic]", "CountryDef_tbl", "[Country] = 'Bolivia'")
Me.OLE1 = Y
Y = DLookup("[pic]", "CountryDef_tbl", "[Country] = X")
[blue] X = Me.Combo1.Column(1)
Y = DLookup("[pic]", "Part_tbl", "[partnum] = '" & X & "'")
or
Y = DLookup("[pic]", "Part_tbl", "[partnum] = " & X)[/blue]