---------------------------------------------------------------------------
| 790 | } |
| 791 | //--------------------------------------------------------------------------- |
| 792 | void __fastcall TMainForm::mOpenMainFormClick(TObject *Sender) |
| 793 | { |
| 794 | // open the application if it is minimized |
| 795 | Application->Restore(); |
| 796 | |
| 797 | // If the main form is minimized or hidden |
| 798 | if( WindowState==wsMinimized ) |
| 799 | WindowState = wsNormal; |
| 800 | else |
| 801 | Show(); |
| 802 | |
| 803 | // bring to the fore |
| 804 | Application->BringToFront(); |
| 805 | } |
| 806 | //--------------------------------------------------------------------------- |
| 807 | void __fastcall TMainForm::aExitExecute(TObject *Sender) |
| 808 | { |
nothing calls this directly
no outgoing calls
no test coverage detected