Hi Guys
please I need your help.
I'm creating this small application that will control some equipments based on its bar code and the owner picture.
everything is working fine, except the picture.
is there a way to save image to access database using ADO Connections and\or recordsets?
I've head its possible to store the path and the retrieve. does any body have a step by step tutorial?
I would really appreciate your quickest answer
Thank you
my app example
With rs
.AddNew()
.Fields("Nome").Value = txtName.Text
.Fields("CAI").Value = txtCAI.Text
.Fields("Empresa").Value = cbCompany.Text
.Fields("Departamento").Value = txtDepartment.Text
.Fields("Extensao").Value = txtPhone.Text
.Fields("Passe").Value = txtPass.Text
.Fields("Tipo").Value = cbTipo.Text
.Fields("Marca").Value = txtMarca.Text
.Fields("Modelo").Value = txtModelo.Text
.Fields("Serie").Value = txtNSerie.Text
.Fields("Data").Value = Date.Today
.Update()
.Requery()
clear()
rs.Close()
Call Imagem()
End With
'Else
With rs
.Fields("Nome").Value = txtName.Text
.Fields("CAi").Value = txtCAI.Text
.Fields("Empresa").Value = cbCompany.Text
.Fields("Departamento").Value = txtDepartment.Text
.Fields("Extensao").Value = txtPhone.Text
.Fields("Passe").Value = txtPass.Text
.Fields("Tipo").Value = cbTipo.Text
.Fields("Marca").Value = txtMarca.Text
.Fields("Modelo").Value = txtModelo.Text
.Fields("Serie").Value = txtNSerie.Text
.Update()
End With
'End If
End Sub