Francis,

I ran into this problem before and here is how I solved it:

Declare a user event called "ue_check_active" (do not need to map any event
ID)
write the following script to that event:

//Set frame menu toolbar to visible after closing last sheet and close
window display
window lw_active_sheet
lw_active_sheet = THIS.GetActiveSheet()
IF NOT IsValid(lw_active_sheet) THEN
        w_application_frame.ToolbarVisible = TRUE
END IF

And write the following script in Close Event of w_application_sheet (which
inherited from w_sheet):

//Checks for any other open sheets after close.
w_application_frame.EVENT POST ue_check_active() 
//NOTE: w_application_frame inherited from w_frame

Hope this helps

Lynn Nguyen

-----Original Message-----
From: Francis [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 12, 2000 12:14 PM
To: [EMAIL PROTECTED]
Subject: PFCSIG ToolBar


At the opening of the frame after the login, the toolbar is visible.
After the opening of one sheet the toolbar is always visible and attached to
this sheet.
After the closing of this sheet the toolbar of the frame is invisible.
After a passage on my w_about window via the about menu of the frame,
the toolbar is again visible.

How can I correct this?

Francis


> [EMAIL PROTECTED] HOSTED BY IIGG, INC. FOR HELP WITH LIST SERVE COMMANDS,
ADDRESS
> A MESSAGE TO [EMAIL PROTECTED] WITH THE FOLLOWING MESSAGE:   help pfcsig
> SEND ALL OTHER INQUIRES TO [EMAIL PROTECTED]
> [EMAIL PROTECTED] HOSTED BY IIGG, INC. FOR HELP WITH LIST SERVE COMMANDS, ADDRESS
> A MESSAGE TO [EMAIL PROTECTED] WITH THE FOLLOWING MESSAGE:   help pfcsig
> SEND ALL OTHER INQUIRES TO [EMAIL PROTECTED]

Reply via email to