-
I have an mdb storing 3 fields. Number, PictureTitle, Picture Location
IF I start my image display app with the db empty and I add 3 files...then decide I don't like 2 of them...I delete the 2 and then click return to the image pgm.
Problem. the image app doesn't refresh and I get an empty display...there is one picture in the file and the references are in the mdb...so I should see the picture.
I use...
frmone.visible=false
frmtwo.visisble=false
frmthree.visible = true
Again, a reveres of this problem. I start with 3 pictures
in the app. I delete all 3 pictures and return to the
image app display screen and I still see the image I
loaded when I started...there should be no image as the
mdb is empty.
I have verified that the deletions do take place...the image file and the references to if from the mdb do happen.
Any explanation as to why and how to correct this?
Thanks,
-
Hi,
I don't know if this will help, because its not very clear how you are doing things, but have you tried Recordset.Requery in the Form Activate event of all your forms, so that the forms show an up to date representation of your database.
GRAHAM :)
-
thanks
Will give that a shot tomorrow..it's my home project
that I do at work...if that makes any sense.
Wayne