Hi All,
I have a minor issue with pictures, currently I'm using vba to set all pictures throughout my db,
All pictures are set to (none) & Linked prior to opening the db
This all works fine as shown below
'OnOpen Me.Page1.Picture = DbPath & "DbIcons\jeep.ico"
'OnChange Me.image_company_selected.Picture = DbPath & Me.selected_company + " logo.bmp"
While going in/out of design mode, I see that the picture location actually updates to the file location and this is then saved with the form.
E.G. Me.Page1.Picture = G:\my company name logo.bmp
The same thing happens with option button captions.
Me.option1.caption = Me.selected_company
It does work ok until I change the location of the db. Then it can't find the pictures, because the location is now an actual location and when the form opens it says it can't find them.
I guess if I have to that when I finish my design I have to set them all back to none.
But will they revert back any other way?