Hi Roland,
so BringToTop=TRUE does not work?
MDI related - Sybase: PowerBuilder - Tek-Tips
Outch..
GetFiirstSheet () :
Obtains the top sheet in the MDI frame, which may or may not be active.
So this code brings the mdi sheet window behind the current first sheet to top.
window lw_sheet lw_sheet = gw_frame.GetFirstSheet() If IsValid(lw_sheet) Then lw_sheet = gw_frame.GetNextSheet ( lw_sheet ) If IsValid(lw_sheet) Then lw_sheet.BringToTop = True end if End If
hth
Arnd