Results 1 to 2 of 2

Thread: External forms?

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Apr 2001
    Location
    England
    Posts
    69

    Talking External forms?

    Please tell me, is it possible for my compiled EXE files to open and show external MDIChild frm files into the MDIParent in my projects? How is it done?

    Martin(UK)

  2. #2
    Megatron
    Guest
    Use the SetParent API
    Code:
    Private Declare Function SetParent Lib "user32" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long
    Usage:
    Code:
    SetParent hwnd_of_app, Me.hWnd

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width