Results 1 to 3 of 3

Thread: MIDI Forms. Show one and all others go small.

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Sep 1999
    Posts
    154
    I have an App that uses MIDI Child forms. I want to keep form B(Child) up and maximized while I call form A(Child). I want form A to look like a message box.

    Set A as new frmMessage
    load A

    When I call A, form B goes smaller so the screen looks funny.

    I do not want to start form A outside the app (i.e Midi child = false because the user could minimize the app and still have form A open)

    Any ideas on how to leave Form B fully maximized and in the background while form A shows on top???

    Thanks

  2. #2
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649
    Set the MDIChild property to False and load it either as modal or if you want it modeless set the MDIForm as the parent. In that case the form will be minimized when the MDIForm is minimized.
    Code:
    frmMessage.Show vbModal
    'or
    frmMessage.Show vbModeless, frmMDI 'or whatever your MDI form is called
    Good luck!

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Sep 1999
    Posts
    154
    Thank you very much.

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