Recent content by GeorgeBakoyannis

  1. G

    Open Form with instance method & wait to close?

    'FINALLY Eureka ! '------------------------------------------------------------------------------------------------------------------------ Private Const GW_HWNDNEXT = 2 Private Const SYNCHRONIZE = &H100000 Private Const WAIT_TIMEOUT = &H102 ' Private Type PROCESS_INFORMATION hProcess As...
  2. G

    Open Form with instance method & wait to close?

    I need instances because I open same forms many times from my app. When from close I can raise an event and execute the specific block of code. DoCmd not works with instances. And my specific question is same. How to open form with instance method & wait to close without using 99% of processor...
  3. G

    Open Form with instance method & wait to close?

    I am newbie for this forum and I make error.
  4. G

    Open Form with instance method & wait to close?

    Hello, I am creating forms instances in code, using. Set frm = New Form_frmBase (http://allenbrowne.com/ser-35.html) frm.Visible = True Now frm is visible but code continues run. The DoCmd.OpenForm xxx,,,,,acDialog pause execution of code but dot works this form instances. When I use below...
Back
Top Bottom