|
-
Sep 10th, 2012, 02:29 AM
#1
Thread Starter
Fanatic Member
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
-
Sep 10th, 2012, 08:37 AM
#2
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
-
Sep 10th, 2012, 08:53 AM
#3
Re: Modal Form
Nevermind that his question regarding F5 has already been answered in one of his many threads.
-
Sep 10th, 2012, 10:13 AM
#4
Thread Starter
Fanatic Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|