AREV64 Launch (OpenInsight 64-bit)
At 24 OCT 2022 09:12:04AM Karl Pozmann wrote:
Any suggestions on how to launch the AREV64 console programmatically from OI Basic?
Thanks
At 24 OCT 2022 09:23AM Andrew McAuley wrote:
START_WINDOW "AREV64_STANDALONE_FORM"
World leaders in all things RevSoft
At 24 OCT 2022 09:24AM bshumsky wrote:
Any suggestions on how to launch the AREV64 console programmatically from OI Basic?
Thanks
Hi, Karl. I think you should be able to do something like:
CALL START_WINDOW("AREV64_STANDALONE_FORM", @window)
If you're in an MDI frame, and you want the AREV64 window in there, then I think it's:
CALL START_WINDOW("AREV64_CHILD_FORM", @window)
Hope that helps,
- Bryan Shumsky
At 24 OCT 2022 09:45AM Karl Pozmann wrote:
Awesome - thanks to both of you!