ameedoo3000
IS-IT--Management
hi
how can i hide the titlebar of report preview
how can i hide the titlebar of report preview
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Do foxypreviewer.app
loPV = CreateObject("previewform")
loPV.Show()
Report form myreport.frx preview in Window PreviewWindow
So you have to define such a form class. You can't set a form you create via CREATEOBJECT("form") As top level form after it already is created, it has to be set as top level form beforehand.myself said:The previewform class has to be a form class you define with ShowWindow set to 2 and Name set to PreviewWindow.
case not empty( THIS.oReport.commandClauses.InWindow )
*--------------------------------------------
* Determine the kind of host window:
*--------------------------------------------
local host
host = THIS.getWindowRef( THIS.oReport.commandClauses.InWindow )
if not isnull( m.host )
*--------------------------------------------
* Make sure it is active:
*--------------------------------------------
activate window (THIS.oReport.commandClauses.InWindow)
endif
release host
Unzipping FoxyPreviewer v299z35.zip you get a folder Sources, where sources of the app are located.myself said:open up foxypreviewer.pjx from the folder Sources
myself said:go to the Classes tab, in the classlibrary treeview expand the frxPreview library (click on the [+]), select the frxBaseForm and finally click Modify. Now in the class designer open properties window, if it isn't open all the time already and set Titlebar = 0 in there. Save.
myself said:Recompile via the project managers Build button as APP and use that modified app.