I have a client-server DB, main tables in back-end, forms in front-end. The front-end is on each person's individual PC. I'm using the following code to declare a recordset and an instance of Powerpoint.
Then I am assigning records in the table to objects on the Powerpoint.
For some reason, there are records that have been deleted from the tables that are still being printed on the presentation. Does anyone have any idea of why this might be happening? I thought I had fixed the problem, but they are back.
Thanks for any help.
CC
Code:
Set db = CurrentDb
Set rs = db.OpenRecordset("SELECT * From WEEKLY_UPDATE_TABLE ORDER BY WEEKLY_UPDATE_TABLE.ENTRY_DATE DESC , WEEKLY_UPDATE_TABLE.ENTRY_TIME", dbOpenDynaset)
rs.Requery
Set ppt = New PowerPoint.Application
ppt.Activate
Set Presentation = ppt.Presentations.Open("C:\WeeklyStatReport.pot")
For some reason, there are records that have been deleted from the tables that are still being printed on the presentation. Does anyone have any idea of why this might be happening? I thought I had fixed the problem, but they are back.
Thanks for any help.
CC
Comment