in reply to Use forms in MSAccess

You could try driving Access via Win32::GuiTest. See also Super Search.

Replies are listed 'Best First'.
Re^2: Use forms in MSAccess
by programerv (Initiate) on Jun 16, 2014 at 11:22 UTC
    http://search.cpan.org/~karasik/Win32-GuiTest-1.60/lib/Win32/GuiTest.pm
    The above link is for GUI Test can I use the samefor executing the form?

      This is just the link I provided. This is the documentation for a module. I'm suggesting you could use it to try to automate MS Access.

        my @windows = FindWindowLike(0, "^Microsoft Excel", "^XLMAIN\$");
        how should I mention access instead of excel?(this piece of code is from the synopsis of the website you mentioned)