in reply to Re: Win32::OLE -- How do you call a function within the application?
in thread Win32::OLE -- How do you call a function within the application?

Thanks for the response, but I wonder if someone can provide an example of doing something like this. My problem is not so much knowing where the user code is as knowing how to pass in the values for the params.

I know where the function is. The function is called TransposeDetails(). It's in a module called basExport. It takes two parameters, a string and an int.
  • Comment on Re^2: Win32::OLE -- How do you call a function within the application?

Replies are listed 'Best First'.
Re^3: Win32::OLE -- How do you call a function within the application?
by Anonymous Monk on Jun 11, 2011 at 01:11 UTC
      The answer, as it turns out, is to use the Application.Run method, like:

      $oAccess->Run("myfunction","arg")

      Best regards,
      John