Babycat
Member
- Local time
- Tomorrow, 01:28
- Joined
- Mar 31, 2020
- Messages
- 285
Hi Everyone
The table PRODUCT has field image to store its image name (supposed i already have folder with images). The ProductID is an auto-number field
The default image is "Default.JPG", when I edit anything on form, the image field will be set to ProductID.JPG such as 1.JPG, 2.JPG... This is accomplished by AfterUpdate event. It looks fairly fine. However It is not working on new record.
For example, I am on record ProductID = 9, I click newrecord on navigation bar then type the name into ProductName textbox. Now I navigate to other record, AfterUpdate event triggered as expect.
I thought at this moment newrecord (ID=10) already saved into table and i am now on record 10. Thus, I try to save its image name by
But strange is that rs!ProductID = 9, but not 10.
So It failed to save image name of ID 10.
May anyone help to explain and advise a solution?
The table PRODUCT has field image to store its image name (supposed i already have folder with images). The ProductID is an auto-number field
The default image is "Default.JPG", when I edit anything on form, the image field will be set to ProductID.JPG such as 1.JPG, 2.JPG... This is accomplished by AfterUpdate event. It looks fairly fine. However It is not working on new record.
For example, I am on record ProductID = 9, I click newrecord on navigation bar then type the name into ProductName textbox. Now I navigate to other record, AfterUpdate event triggered as expect.
I thought at this moment newrecord (ID=10) already saved into table and i am now on record 10. Thus, I try to save its image name by
Code:
rs!Image = rs!ProductID & ".JPG"
But strange is that rs!ProductID = 9, but not 10.
So It failed to save image name of ID 10.
May anyone help to explain and advise a solution?
Attachments
Last edited: