In the Help File (and possibly the Manual) there is an example of one dialog opening a second.
It is under the Heading "The Dialog Function". It does not work as shown, however if the following line is added...
DlgVisible "History"
In Case 2 beneath DlgVisible "Chk2" as shown below, then it will work.
Code: Select all
    Case 2
        If ControlID$ = "Chk1" Then
                               DlgEnable "Group"
                               DlgVisible "Chk2"
			       [b][i]DlgVisible "History"[/i][/b]
        End If