I am currently using Transfertext method in a "print" button's on click event to save a .csv file.
I would like to disable autosave for this form, once the user clicks "save" have access save the current record and keep track of this record until it is "printed" to currentdate.csv.
I have worked out the logic below but I do not possess the knowledge to execute it. Any help on this would be great.
___________________________________________________________________
---user form---
disable autosave
on save = save to "tblename" &
set record to: printed = false
---db manager form---
on print = get "unprinted records" from "tblename" &
tranfertext from query of "unprinted records" to currentdate.csv &
set "unprinted records" to: printed = true
-dimmech
I would like to disable autosave for this form, once the user clicks "save" have access save the current record and keep track of this record until it is "printed" to currentdate.csv.
I have worked out the logic below but I do not possess the knowledge to execute it. Any help on this would be great.
___________________________________________________________________
---user form---
disable autosave
on save = save to "tblename" &
set record to: printed = false
---db manager form---
on print = get "unprinted records" from "tblename" &
tranfertext from query of "unprinted records" to currentdate.csv &
set "unprinted records" to: printed = true
-dimmech