' Since all Rapid-Q programs normally minimize on your desktop, you'll ' need to implement this cheap trick to counter that SUB DummyProc:END SUB CREATE Form AS QFORM Caption = "Mini-me" Center WndProc = DummyProc '-- Here's the trick, override the default '-- windows handler for this form ShowModal END CREATE 'Notes: Make sure you call WndProc after any Center statement, and not ' before. Center seems to take back control of your windows proc.