Hidding AccessoryToolbar in Print Preview
Hi!
I'm doing some tests with RB 7.01 and I wanna show the print preview form
without showing the Accessory ToolBar (this will be the default). Later, if
the user want, he can show it again.
How can i do this ?
I've tried the properties OutlineSettings and TextSearchSettings. All I
could do was hide the objects, but the Accessory panel was still there.
TIA
Jose Carlos
Brazil
I'm doing some tests with RB 7.01 and I wanna show the print preview form
without showing the Accessory ToolBar (this will be the default). Later, if
the user want, he can show it again.
How can i do this ?
I've tried the properties OutlineSettings and TextSearchSettings. All I
could do was hide the objects, but the Accessory panel was still there.
TIA
Jose Carlos
Brazil
This discussion has been closed.
Comments
and then register it as the new default Preview window using the following
code in the main form of the application (where TnewPreview is the name of
your new class)
initialization
TppPreviewPlugIn.UnRegister(TppPreview);
TppPreviewPlugIn.Register(TnewPreview);
You will have access to the accessory toolbar in your new class and should
be able to do what you need to it.
Paul Hunt