I know how to retrieve words from MS access but what about pictures. E.g

Private Sub Command1_Click()
sName = Combo1.Text
Set RS = DB.OpenRecordset("SELECT * FROM tblmachine WHERE MachineName = '" & sName & "'", dbOpenDynaset)
Combo1 = "" & RS!MachineName
Text2 = "" & RS!MaxPower
Picture1 = ????
RS.Close
Combo1.SetFocus
end if
End Sub

What do i type in for picture1 in order to retrieve different picture of items from a table in MS access?

Thanks for the help!