This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** My dynamic CSS loader for embedding. */ | |
| (function () { | |
| var MDWSLoader = { | |
| /** Sets the CSS files used by the system. */ | |
| setCSS: function (files) { | |
| this.cssFiles = files; | |
| }, | |
| /** Load the css files using document.write(link...). */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit unDebugUnitInitOrder; | |
| interface | |
| uses | |
| Windows, SysUtils, Classes, Forms, StrUtils, JclDebug; | |
| procedure extractUnitOrder; | |
| implementation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program sistema; | |
| uses | |
| unPerfCounter, | |
| Forms, | |
| Unit1 in 'Unit1.pas' {Form1}, | |
| //... | |
| Unit1000 in 'Unit1000.pas' {Form1000}; | |
| {$R *.RES} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit UnPerfCounter; | |
| interface | |
| uses | |
| windows, SysUtils; | |
| type | |
| {: Um contador de alta performance, utilizado para realizar medições de | |
| tempo/velocidade. } |
NewerOlder