Hello,
I was thinking of implementing the ribbonbar control to modernize the MDI app.
But I can't find any easy way to get rid of the title bar(!!)
Space is always a big issue, and so far I've managed to remove the app menu and the toolbar menu (enclosed image)
<m_menuitemname>.visible = false //on menu items totally removed the mdi menu from the frame window)
this.ToolbarVisible = False //removed the toolbar from the frame window.
The functionality needed to minimize, maximize, or close the app can be added in the ribbonbar.
Searched the forum, but there's really nowhere to describe how to resolve the matter.
Some C/C++ code is suggested, but really no working example and those cases remain unresolved.
Does anyone have any suggestions on how to remove the titlebar on the frame in an MDI app?
The boolean titlebar = false in my test MDI app regrettably didn't do the trick either.
global type w_ribapp_frame from window
integer x = 256
integer y = 132
integer width = 2382
integer height = 1548
string menuname = "m_ribapp_frame"
boolean border = false
boolean titlebar = false
windowtype windowtype = mdihelp!
windowstate windowstate = maximized!
long backcolor = 79416533
event type integer ue_new ( readonly string as_sheetname )
event type integer ue_open ( )
event ue_postopen ( )
event type integer ue_close ( )
event type integer ue_print ( )
event type integer ue_print_query ( )
mdi_1 mdi_1
end type
global w_ribapp_frame w_ribapp_frame
Regards
Brage Mogstad