S
Sondra
Using Access 2002
I have created the following to use in a WordMerge Document:
Private Sub Form_Close()
DoCmd.DeleteObject acTable, "tbl_DSCRMERGE"
DoCmd.OpenQuery "qry_DSCRForm_RUN", acViewNormal
DoCmd.OpenForm "DSCR_frm"
End Sub
However, I want to add a line to have a field in the Table formatted so that
the number:
83175 shows as 08D-3175
I know that if I go into the table after this is run each time I can do
this; however, is there a way to add that to the above programming so that it
automatically does it before the User closes the database.
I'm very novice and write very "easy" processes. Any help would be great.
Thanks.
I have created the following to use in a WordMerge Document:
Private Sub Form_Close()
DoCmd.DeleteObject acTable, "tbl_DSCRMERGE"
DoCmd.OpenQuery "qry_DSCRForm_RUN", acViewNormal
DoCmd.OpenForm "DSCR_frm"
End Sub
However, I want to add a line to have a field in the Table formatted so that
the number:
83175 shows as 08D-3175
I know that if I go into the table after this is run each time I can do
this; however, is there a way to add that to the above programming so that it
automatically does it before the User closes the database.
I'm very novice and write very "easy" processes. Any help would be great.
Thanks.