AddMetrix 1.4
  • C++ Builder:
    C1 C3 C4 C5 C6 C2006 C2007 C2009 C2010 
  • Delphi:
    D1 D2 D3 D4 D5 D6 D7 D8 D2005 D2006 D2007 D2009 D2010 DPHP DPRISM Delphi/400 
  • Kylix:
    K1 K3 



Metrix has one purpose: to save and restore your form's position and size, As well as your splitter controls.

Changes

* Added WindowState ( I know, it should have been there the whole time )
* Reference the Splitter directly!
* Resolved Alignment Issue
* Fixed Exsisting Metrix file dependancy
* Optimized code ( Increased Speed )

To save Metrix:

procedure TForm1.FormCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
// saving the form size and position.
SaveMetrix(Self);
// Saving the splitter...
SaveMetrix(Splitter1);
end;

To Restore Metrix:

procedure TForm1.FormCreate(Sender: TObject);
begin
// Restoring
RestoreMetrix(Self);
RestoreMetrix(Splitter1);
end;

  • Category:
    Forms/Application
  • Author:
    (More by this author)
  • Info:
    Freeware
  • Date added:
    15 July, 2006 16:23
  • Views:
    1169
  • Downloads:
    453
UsefulnessPoor
DocumentationPoor
StabilityPoor
ValueFair
Ease of UseFair
Level of UseZero
1 people have rated this applicaton
Total AverageZero
 
You can submit your own rating, for this you must be logged in.
Files:
Related Downloads
Metrix 1.3 - 03 July, 2006 - G. M. Faggiano

*Resolved Alignment Limitation *Resolved TPanel Dependancy metrix is a Unit designed to easily save and restore your form and Splitter size and position. To Save... procedure Form1.OnCloseQuery(Sender: TObject); begin...

Metri x - 30 June, 2006 - G. M. Faggiano

Metrix is a Unit designed to easily save and restore your form and Splitter size and position. To Save... procedure Form1.OnCloseQuery(Sender: TObject); begin SaveMetrix(Self); SaveMetrix(Panel1); // See README file for more...

Related Information
  • SYSTRAY (2002-04-01 07:18:07)
    var TrayWnd: HWND; R: TRect; begin TrayWnd := FindWindowEx(FindWindow('Shell_TrayWnd', nil), 0, 'TrayNotifyWnd', nil);...
  • TRYING TO GET THE CLASSTYPE OF AN OBJECT (2006-06-30 06:53:36)
    Controls aren't necessarily created in the same order as they are in the Components array. You have no way of knowing the order that they were...
  • FORMS RESIZE THEMSELVES??!!!! (2006-09-12 05:16:07)
    Yeah, I've toyed with that idea...reinstalling, that is. If this starts happening to more of my forms I think I might have to. I guess I'll just...
  • TSPLITTER PROBLEM (2006-11-21 15:14:12)
    Try this... http://www.delphipages.com/edit/count.cfm?ID=5670 Just add Metrix to your uses list and use it as follows... //To save metrix:...
  • SPLITTER (2006-12-10 12:13:15)
    Ok, I'm giving these instructions with the assumtion that your splitter is vertical... 1) The panel on the left of the splitter should be...
Categories

Latest Forum Entries