Not sure what you mean by nesting.. You can show a modal form from another
modal form.
3 Forms with a command button on each.
'============Form1 Code
Option Explicit
Private Sub Command1_Click()
Form2.Show vbModal
'This doesn't run until Form2 is unloaded/hidden
Debug.Print "Form1:Command1_Click", Timer
End Sub
'============Form2 Code
Option Explicit
Private Sub Command1_Click()
Form3.Show vbModal
'This doesn't run until Form3 is unloaded/hidden
Debug.Print "Form2:Command1_Click", Timer
End Sub
'============
--
Ken Halter
MS-MVP-VB
Please keep it in the groups..
Quote:
> Hi guys,
> Do you how to get more nested modal dialog box in VB?
> thanks
> P.H