Results 1 to 4 of 4

Thread: Modal Form

  1. #1
    Addicted Member
    Join Date
    Dec 11
    Posts
    243

    Modal Form

    Hi

    I have 1 MSFlexgrid on a form . I want when user presses f5 new modal form should open which have all rows in msflexgrid . Modal form will also show same data in msflexgrid.

    Thanks

  2. #2
    PowerPoster
    Join Date
    Feb 12
    Location
    West Virginia
    Posts
    4,948

    Re: Modal Form

    If the form is to be the same as the form you already have then you can show a copy of it else you will need to create a new form, place a flexgrid on it and write the code to populate it as needed.

    To show a copy of form1
    Code:
    Dim tmpForm As Form
    Set tmpForm = New Form1
    tmpForm.Show vbModal

  3. #3
    Fanatic Member
    Join Date
    Sep 12
    Location
    To the moon and then left
    Posts
    528

    Re: Modal Form

    Nevermind that his question regarding F5 has already been answered in one of his many threads.

  4. #4
    Addicted Member
    Join Date
    Dec 11
    Posts
    243

    Re: Modal Form

    Thanks

Posting Permissions

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