-
ApplicationHelper: https://gist.github.com/reinaldoacdc/3fcc92a6610bfb07d3ddc68b14e54164
-
BitmapHelper https://gist.github.com/reinaldoacdc/5d8bffa7eb0d03c105cbac44e99c02e7
-
ClientDatasetHelper https://gist.github.com/reinaldoacdc/aca5ebc481e6267ab856c2b7cf708a7b
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 JsonObjectHelper; | |
interface | |
uses DBXJSON, Character; | |
type TJsonObjectHelper = class helper for TJsonObject | |
public | |
//Helper to find a JSON pair based on the pair string part | |
function Get(const PairName: UnicodeString): TJSONPair; overload; |
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 StringGridHelper; | |
interface | |
uses | |
Vcl.Grids; | |
type | |
TStringGridHelper = class helper for TStringGrid |
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 ApplicationHelper; | |
interface | |
uses Vcl.Forms; | |
type | |
TApplicationHelper = class helper for TApplication | |
procedure OpenForm( frm :TForm; obj :TFormClass); | |
procedure CloseAllForms; | |
procedure Log(text: String); |
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 StringHelper; | |
interface | |
type | |
TStringHelper = record helper for string | |
function OnlyNumbers :String; | |
end; | |
implementation |
NewerOlder