yeh yeh yeh, him asking silly questions again.
is it possible to get access to ‘know where it is’? as in the database I’m working on, I have it in two locations, I have my dirty copy and a copy thats there for people to look at so they can see my progress ( I export data from one to another ) I use pictures in one of the forms and the pictures location is relative to the database, I can’t seem to get them to hook up unless I use a hard coded file path which I would rather not do.
I have this but it dosent work
On Error GoTo bugger
Me.Photo.Picture = "\Photo\" & Me.Service_No.Value & ".jpg"
exitsub:
Exit Sub
bugger:
Me.Photo.Picture = "\Photo\No_Image.jpg"
I get errors saying it can’t find the image
anyone?