I utilize WORD templates driven by a vba front end that creates letters using combination of pulling data from an access data base (name address etc), and user input to complete the letters.
We have another database for project managment, I would like to take the data from the user, e.g. date a contract is appoved and write that back to the project managment data base.
I was trying something like:
SQL$ = "f:\psr\PSR97TEST; SQL INSERT INTO Construction.cop approved VALUES Today WHERE IDGRANT# = IDGRANT"
ChanNum = DDEInitiate("MSAccess", SQL$)
DDETerminate ChanNum
I am trying to put a date into a database called PSR97TEST into the Construction Form into the COP APPROVED FIELD for the record with IDGRANT
Is there a better way to do this??
DJ
We have another database for project managment, I would like to take the data from the user, e.g. date a contract is appoved and write that back to the project managment data base.
I was trying something like:
SQL$ = "f:\psr\PSR97TEST; SQL INSERT INTO Construction.cop approved VALUES Today WHERE IDGRANT# = IDGRANT"
ChanNum = DDEInitiate("MSAccess", SQL$)
DDETerminate ChanNum
I am trying to put a date into a database called PSR97TEST into the Construction Form into the COP APPROVED FIELD for the record with IDGRANT
Is there a better way to do this??
DJ