Hi All;
I am working on a project that involves a Word form and an Access database. The goal is to take the form entries and transfer them to the access database. Because there are different revisions of the form with different variable names, is there a way to have the VB script in Access check the rev version in the Word document?
Is there a way to put a VB Word variable that would indicate the rev level when the VB Access script runs?
Example:
VB Code (Word) - example...
VB Code (Access)...
Thanks for the help,
Mike
I am working on a project that involves a Word form and an Access database. The goal is to take the form entries and transfer them to the access database. Because there are different revisions of the form with different variable names, is there a way to have the VB script in Access check the rev version in the Word document?
Is there a way to put a VB Word variable that would indicate the rev level when the VB Access script runs?
Example:
VB Code (Word) - example...
Code:
public var rev_level = 2
VB Code (Access)...
Code:
Sub Check_rev ()
if rev_level = 2 then 'from the Word Document
import data from Word document
Else
msgbox = "Cannot import data"
end if
End Sub
Thanks for the help,
Mike