---------------------------------------------------------------------------
| 680 | } |
| 681 | //--------------------------------------------------------------------------- |
| 682 | void SaveFormPosition(TMYIniFile * p, TForm * f) |
| 683 | { |
| 684 | try |
| 685 | { |
| 686 | p->WriteInteger(AnsiString(f->Name).c_str(), "Left", f->Left); |
| 687 | p->WriteInteger(AnsiString(f->Name).c_str(), "Top", f->Top); |
| 688 | p->WriteInteger(AnsiString(f->Name).c_str(), "Width", f->Width); |
| 689 | p->WriteInteger(AnsiString(f->Name).c_str(), "Height", f->Height); |
| 690 | } |
| 691 | catch(...) {} |
| 692 | } |
| 693 | //--------------------------------------------------------------------------- |
| 694 | void LoadPosition(TForm * f, int * param, int count) |
| 695 | { |
no test coverage detected