ok, looks like everybody's talkin' alphablend.
You could use the height property to make whatever height you want. In
this case, 20 is the height of the caption bar. Use LEFT & TOP to
relocate it if you want.
GETPROPERTY MainMenu HEIGHT 'vTempHeight'
PROPERTY RBASE_FORM HEIGHT '20'
[your stuff here]
PROPERTY RBASE_FORM HEIGHT '.vTempHeight'
Doug
Dan Goldberg wrote:
I am trying to hide the main menu(which is an external form file) when a
user click on a menu item that brings up a form. That way the user only sees
the form.
I tried:
PROPERTY RBASE_FORM WINDOW_STATE 'MINIMIZED'
But it hides both the menu form and the form it opened. What is the best
strategy to do this??
Dan Goldberg