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
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
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
Nevermind that his question regarding F5 has already been answered in one of his many threads.
Thanks