home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
-
- #include "RichAbt.h"
- //----------------------------------------------------------------------------
- #pragma resource "*.dfm"
- TForm2 *Form2;
- //----------------------------------------------------------------------------
- __fastcall TForm2::TForm2(TComponent *Owner)
- : TForm(Owner)
- {
- }
- //----------------------------------------------------------------------------
- void __fastcall TForm2::FormShow(TObject* /*Sender*/)
- {
- TMemoryStatus MS;
- GlobalMemoryStatus(MS);
- PhysMem->Caption = FormatFloat((String)"#,###' KB'", MS.dwTotalPhys / 1024);
- LPSTR lpMemLoad = new char[5];
- sprintf(lpMemLoad,"%d %%",MS.dwMemoryLoad);
- FreeRes->Caption = (String)lpMemLoad;
- delete [] lpMemLoad;
- }
- //----------------------------------------------------------------------------
-
-