Well close but no cigar.

This works, but it is erratic.  Clicking on [OK] while Form2 is showing always 
takes me back to showing Form1.  However sometimes the [OK] changes back to [X] 
just fine, and other times I have to click somewhere on Form1 to make it change 
back!

No Pattern that I can see to it.  Test logic:

Dim Form2Showing

Sub mnuForm1Next_Click 'Show Form2 with OK
    Form2_Show
    Form1_Hide
    ShowOKButton True 'Set Close button to OK
    Form2Showing = True
End Sub

Sub Output_Close 'If showing Form2 go back to Form1
    If Form2Showing Then
        Form1_Show
        Form2_Hide
        ShowOKButton False 'Set Close button to [X]
        Form2Showing = False
    End If
End Sub

--- In nsbasic...@yahoogroups.com, "michiman56" <rriemer...@...> wrote:
>
> Thanks Chris,
> 
> This looks good.  I'll check the documentation changes notes and try working 
> with the examples you've outlined.
> 
> Bob

-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@googlegroups.com.
To unsubscribe from this group, send email to 
nsb-ce+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en.

Reply via email to