text stringlengths 14 6.51M |
|---|
unit uFuncoesTempo;
interface
uses System.SysUtils;
function MSecToTime(const intTime: integer): string ;
function dm(seconds: integer): string;
function ds(seconds: integer): string;
implementation
function MSecToTime(const intTime: integer): string ;
Var
intMSec: Real;
begin
intMSec := 1 / 24 / 60 / 60 / 1000;... |
unit RepositorioQuantidadeItemAvulso;
interface
uses
DB,
Auditoria,
Repositorio;
type
TRepositorioQuantidadeItemAvulso = class(TRepositorio)
protected
function Get (Dataset :TDataSet) :TObject; overload; override;
function GetNomeDaTabela :String; overrid... |
unit frameBuscaProduto;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ObjetoGenerico, Produto;
type
TBuscaProduto = class(TFrame)
edtReferencia: TEdit;
btnBusca: TBitBtn;
edtDescricao: TEdit;
StaticText2: TStaticText;
... |
unit MAS6279D8.MMPreparePoint;
interface
uses AbstractStpMethod, MAS6279D8.Stp8TestThread, mas6279d8.DboBase, ToleranceObj,
System.Generics.Collections;
type
Tmasd8PreparePoint = class(TAbstractStpMethod)
protected
function ThreadClass : TStpThreadClass;override;
public
function ModuleName : str... |
unit QDOMarketMonitor;
interface
uses Windows, Classes, SysUtils, Activex, ComObj, IniFiles, Math, QuoteMngr_TLB,
QuoteStruct, QuoteConst, QuoteLibrary, IOCPMemory, SyncObjs, QuoteDataMngr,
GilQuoteStruct, Generics.collections, QDOBase;
const
MAX_MARKET_EVENT_COUNT = 200;
UPDATE_MARKET_EVENT = 1001;
type
... |
unit frmMt3dFilesUnit;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
ArgusFormUnit, Dialogs, StdCtrls, Buttons, framFilePathUnit, Grids,
RbwDataGrid, ArgusDataEntry, ExtCtrls, CheckLst, Spin;
type
TfrmMt3dFiles = class(TArgusForm)
framFilePath2: TframFilePath;
framFi... |
unit TipoBuscaPedido;
interface
type
TTipoBuscaPedido = (tbpTodos=0, tbpFaturados=1, tbpNaoFaturados=2);
type
TTipoBuscaPedidoUtilitario = class
public
class function DeEnumeradoParaInteiro(TipoBuscaPedido :TTipoBuscaPedido) :Integer;
class function DeInteiroParaEnumerado(TipoBuscaPedido :In... |
{ Copyright (c) 1995-2012 Jeroen Wiert Pluimers for BeSharp.net and better office benelux.
Full BSD License is available at http://besharp.codeplex.com/license and http://bo.codeplex.com/license }
{ better than OutputDebugString which:
1. has a bug in Windows 95 that prevents OutputDebugString to be visible in D... |
unit Cidade;
interface
uses
SysUtils,
Contnrs,
Estado;
type
TCidade = class
private
Fcodest : integer;
Fcodibge : integer;
Fcodigo : integer;
Fcep : String;
Fnome : String;
Festado : TEstado;
procedure Setcep(const Value: String);
procedure Setcodest(const Value:... |
unit AppControllerInf;
interface
uses
Winapi.Windows, System.Classes, Vcl.Graphics, Vcl.Forms,
KeyFairySinkInf, WNDataSetInf, GFDataMngr_TLB, UserLocalOperateIntf;
const
C_QueryUFXData = 'UFXDATA';
Con_SkinBlack = 'Black';
CONST_DEBUG_FLAGE = 'debug.debug';
type
// Module 模块 ModuleComp 组件
// ... |
(*
* XSuperObject - Simple JSON Framework
*
* The MIT License (MIT)
* Copyright (c) 2015 Onur YILDIZ
*
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the ... |
{
Soupy Enchantifier 1.0.0
By -- i_am_the_soup
This script is used to enchant selected items in bulk.
Guide:
1. - Select the enchantment(s) to be applied, and the item(s) to apply them to.
2. - Apply the script. A form will open up.
3. - Fill out the textboxes. SUFFIX is the text appended to the end... |
UNIT LexikAnalysator;
INTERFACE
TYPE
Symbol = (plusSy,minusSy,multSy,divSy,leftParSy,rightParSy,numSy,eofSy,noSy);
VAR
sy: Symbol;
numVal: INTEGER;
PROCEDURE InitScanner(filename: STRING);
PROCEDURE NewSy;
IMPLEMENTATION
CONST
eofCh = Chr(0);
VAR
inputFile: TEXT;
line: STRING... |
unit MathUtils;
{$N+,S-}
interface
uses
BaseTypes;
type
TValueSign = -1..1;
const
FuzzFactor = 1000;
ExtendedResolution = 1E-19 * FuzzFactor;
DoubleResolution = 1E-15 * FuzzFactor;
SingleResolution = 1E-7 * FuzzFactor;
NaN = 0.0 / 0.0;
NegativeValue = Low(TValueSign);
ZeroValue = 0;
Positiv... |
unit proj;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Dialogs, treeclass, utils, LazFileUtils, graph, test, Forest, cfg;
type
TErrorObject = class(Exception);
TProject = class
private
// filename and path of projectfile
filename, path: string;
FFileList: TStringList... |
unit uConexao;
interface
uses
FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Error, FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def,
FireDAC.Stan.Pool, FireDAC.Stan.Async, FireDAC.Phys, Data.DB, FireDAC.Comp.Client, FireDAC.Phys.MySQLDef,
FireDAC.Phys.FB, System.SysUtils, FireDAC.DApt, FireDAC.VCLUI.... |
unit StringListH;
interface
uses
betterobject, classes, debug;
type
IStringList = interface
procedure SetTextStr(const Value: string);
function GetTextStr: string;
property Text: string read GetTextStr write SetTextStr;
procedure FreeIfNotInterface;
function GetCount: Integer;
property Co... |
unit uabout;
{$mode objfpc}{$H+}
interface
uses Classes, Graphics, Controls;
procedure ShowAbout(const Developer, Company: string;
HiVer, LoVer, Year: Integer);
procedure ShowAboutDialog(const AppTitle, Developer, Company: string;
AppIcon: TIcon; HiVer, LoVer, Year: Integer);
//procedure VerAboutBox;
implement... |
{***********UNITE*************************************************
Auteur ...... : MC DESSEIGNET
Créé le ...... : 01/10/2001
Modifié le ... : / /
Description .. : Source TOF de la TABLE : etats_PIECES ()
Mots clefs ... : TOF;etats_PIECES
*****************************************************************}
Unit UTOFE... |
unit PXL.SwapChains;
{
This file is part of Asphyre Framework, also known as Pascal eXtended Library (PXL).
Copyright (c) 2000 - 2015 Yuriy Kotsarenko
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
Public License as published by the Free Softw... |
unit AlmacenamientoIndice;
interface
uses classes, windows;
type
TAlmacenamientoIndice = class(TObject)
private
FCarpeta: string;
function GetSizeIndice: Int64;
function GetSizePalabras: Int64;
function GetSizeDocumentos: Int64;
function GetSizeFichero(fich: string): Int64;
procedure ... |
unit uCepWS;
interface
uses
IdHTTP,System.JSON,System.Classes,System.StrUtils,System.SysUtils,
IdBaseComponent, IdComponent,
IdIOHandler, IdIOHandlerSocket, IdIOHandlerStack, IdSSL, IdSSLOpenSSL,
IdTCPConnection, IdTCPClient, IdExplicitTLSClientServerBase, IdMessageClient,
IdSMTPBase, IdSMTP,
FM... |
unit Typelib;
//ix80 Intel 8080 CPU Emulator & Demonstration Model
//Библиотека типов
interface
const
WM_CONTROLS = $0410;
WM_REMCTRL = $0411;
WM_VALUE = $0420;
COLOR_HL = -16777203{12639424};
LOG_LINE = '--------------------------------------------------------------------------------... |
unit TicTacToe_FireMonkeyUIControllerUnit;
interface
uses
TicTacToe_GenericAbstractUIControllerUnit,
FMX.Controls;
type
TFireMonkeyUIController = class(TGenericAbstractUIController<TButton, TButton, TCheckBox, TLabel>)
public
// note: in Delphi you can not use the types used in the Generic cla... |
unit Unit1;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
System.RTLConsts,
FMX.Types, FMX.Controls, FMX.Forms3D, FMX.Types3D, FMX.Forms, FMX.Graphics,
FMX.Dialogs, System.Math.Vectors, FMX.Controls3D, FMX.Objects3D,
FMX.MaterialSources;
type
T... |
{===============================================================================
RzDBNavEditor Unit
Raize Components - Design Editor Source Unit
Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved.
Design Editors
------------------------------------------------------------------------------... |
unit GetANEFunctionsUnit;
interface
uses
Dialogs, ProjectPIE, AnePIE, Forms, SysUtils, Controls, Classes;
procedure GetANEFunctions( var numNames : ANE_INT32;
var descriptors : ANEPIEDescPtr ); cdecl;
const
kMaxPIEDesc = 138;
kMaxAdditionalPies = 0;
var
gPIEDesc : Array [0..kMaxPIEDesc+kMaxAdditi... |
unit Xc12Utils5;
{-
********************************************************************************
******* XLSReadWriteII V6.00 *******
******* *******
******* Copyright(C) 1999,2017 Lars Arvidsson, Axo... |
unit GuiHelpers_DB;
interface
uses
debug,sysutils, typex, systemx, stringx, classes, controls, storageenginetypes, extctrls, stdctrls, variants, vcl.comctrls;
procedure SyncRowSetTocomboBox(rs: TSERowSet; cb: TComboBox; sField: string);
procedure SyncRowSetToListView(rs: TSERowSet; lv: TListView);
procedure SyncRo... |
unit ReadPhalanxScan_fullhtml;
interface
uses
Classes, IniFiles, Contnrs, OGame_Types, html, parser, windows,
ReadReport_Text, readsource;
const
ThtmlPhalanx_inisection = 'html_phalanx';
type
ThtmlPhalanx_fligthclass = (hpfc_none, hpfc_return, hpfc_flight);
ThtmlPhalanx_fligthclassEx = (
... |
// Copyright(C): Advanced Card Systems Ltd
//
// File: Account.pas
//
// Description: This sample program outlines the steps on how to
// use the Account File functionalities of ACOS
// using the PC/SC platform.
//
// Author: Jose Isagani R.... |
unit ReportGeneratorEngine;
interface
uses
Classes;
type
IReportGenerator = interface;
IReportInfo = interface ['{CDF09A38-11B0-4571-8908-AA5486D94A9A}']
function GetClientName: string;
function GetReportDelay_ms: integer;
function GetReportName: string;
function GetWorkerThread: cardinal;
/... |
unit UServerMain;
interface
uses
UFuncoesFormulario, Winapi.Messages, System.SysUtils, System.Variants, IniFiles,
System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs,
Vcl.Clipbrd,
Vcl.AppEvnts, Vcl.StdCtrls, IdHTTPWebBrokerBridge, Web.HTTPApp, Vcl.ExtCtrls,
FireDAC.Stan.Intf, FireDAC... |
unit DW.iOSapi.CarPlay;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library }... |
// Generic object pool implementation.
unit DPObjectPool;
interface
uses
System.SysUtils,
System.Generics.Collections;
type
TObjectPool<T:class,constructor> = class
var
FFactory: TFunc<T>;
FMaxSize: integer;
FPool: TStack<T>;
FSize: integer;
public
constructor Create(maxSize: integer =... |
unit EventBusInterface;
interface
type
TCustomObjEvent = procedure (Sender : TObject; Event : TGUID; Params : Pointer) of object;
IEventBus = interface(IInterface)
['{7E26165B-97FB-4467-AEAF-37D230F083DB}']
procedure Add(const AMethod : TCustomObjEvent); stdcall;
procedure Remove(const AMethod: TCu... |
unit aiddbSelLkpNotes;
{ -------------------------------------------------------------------------------------------------
Name : aiddbSelLkpNotes
Author : Chris G. Royle, 20010912
Description : View & select a note from LookupNotes for AsGroup
See Also : aiddbMtnLkpNotes
Note :
Modif... |
unit MainDataModule;
interface
uses
System.SysUtils, System.Classes, FireDAC.Stan.Intf, FireDAC.Stan.Option,
FireDAC.Stan.Error, FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def,
FireDAC.Stan.Pool, FireDAC.Stan.Async, FireDAC.Phys, FireDAC.Phys.SQLite,
FireDAC.Phys.SQLiteDef, FireDAC.Stan.ExprFunc... |
unit SDQC.Util.LogFacade;
interface
uses
System.Generics.Collections,
Vcl.StdCtrls,
Util.Log;
type
TLogFacade = class
private
FMemoList: TObjectList<TCustomMemo>;
FPFLog: TPFLog;
protected
property MemoList: TObjectList<TCustomMemo> read FMemoList;
property PFLog: TPFLog read FPFLog;
pu... |
{***********UNITE*************************************************
Auteur ...... : N. ACHINO
Créé le ...... : 03/12/2002
Modifié le ... : 03/12/2002
Description .. : Source TOM de la TABLE : AFFCDEENTETE
Suite ........ : (AFFCDEENTETE)
Mots clefs ... : TOM;AFFCDEENTETE;AFFCDE
******************************************... |
unit uQuestion;
interface
type
TQuestion = class(TObject)
public
FAnswer: string;
constructor Create;
destructor Destroy; override;
end;
implementation
constructor TQuestion.Create;
begin
// Calls the parent class' constructor
inherited;
// Do whatever special initialization our class requires.
... |
unit UMain;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls, Clipbrd,
ComCtrls, Buttons, EditBtn, StdCtrls, typinfo, Spin, Menus, ActnList, FPCanvas, fpjson,
UTool, UTransform, UComparator, UDefine, UCreateAttributes, UFigure, About;
type
{ TSmal... |
unit DW.BarcodeReader;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library }
... |
{******************************************************************************}
{ CnPack For Delphi/C++Builder }
{ 中国人自己的开放源码第三方开发包 }
{ (C)Copyright 2001-2015 CnPack 开发组 }
{ ... |
unit uWordlist;
interface
uses
Classes;
type
TCombo = class
private
strUser,
strPass: string;
public
procedure ReadFromString(S: string);
function WriteToString: string;
property User: string read strUser write strUser;
property Pass: string read strPass write strPas... |
unit z3_sysex_config;
interface
uses
typex, systemx, endian, sysutils;
type
TConfigValueTransferType = (stt7bitByte, stt8bitByte, sttUInt32, sttSInt32, stt7bitASCII, stt8bitASCII, sttSInt16, sttUInt16,sttSint64, sttUInt64);
TConfigValueTreatmentType = (ttCheckbox, ttSpin, ttManualEntryDecimal, ttReadOnlyHex, t... |
unit linked_list_btree_compatible;
interface
{$DEFINE LINKABLE_IS_BETTER_OBJECT}
uses
typex, debug, sysutils, betterobject, unittest;
type
TLinkage<T> = class(TObject)
public
next: TLinkage<T>;
prev: TLinkage<T>;
obj: T;
end;
{$IFDEF LINKABLE_IS_BETTER_OBJECT}
TLinkAncestor = TBetterObject;
{$EL... |
unit PtCnsCoresNCad;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, CnsBsCxGrid, cxGraphics, cxControls, cxLookAndFeels,
cxLookAndFeelPainters, cxStyles, cxCustomData, cxFilter, cxData,
cxDataStorage, cxEdit, cxNavigator, DB, cxDBData, dxPSGlbl, dxPSUtl,
d... |
(**
This is a generic progress dialogue for use in the ObjectPascalDocWizard.
@version 1.0
@date 29 Apr 2018
@author David Hoyle
**)
Unit ProgressForm;
Interface
Uses
Windows,
Messages,
SysUtils,
Classes,
Graphics,
Controls,
Forms,
Dialogs,
ComCtrls,
ExtCtrls,
StdCtrls,
... |
{*******************************************************************************
作者: dmzn@163.com 2017-10-18
描述: 海康威门岗LED引导屏
备注:
*.支持型号: IS-TVL224
*******************************************************************************}
unit UHKDoorLED;
interface
uses
Windows, Classes, SysUtils, SyncObj... |
{==============================================================================
_ ve'va'CHe
__ _(_)_ ____ _ ___ ___ ™
\ \ / / \ \ / / _` |/ __/ _ \
\ V /| |\ V / (_| | (_| __/
\_/ |_| \_/ \__,_|\___\___|
game toolkit
Copyright © 2020 tinyBigGAMES™ LLC
All rights re... |
unit TreeClass;
interface
uses
Classes, SysUtils, LazFileUtils, utils;
type
TTreeNode = class;
TErrorObject = class(Exception);
TTree = class
private
fremoveall: boolean;
findex: integer;
fRootnode: TTreeNode;
fnodes: TList;
function GetNodeFromIndex(index: integer): T... |
unit StoryBase;
interface
uses
Entity, EntityFieldNamesToken;
type
TStoryBase = class(TEntity)
public
type
TStatus = (psFinishedGenerate, psTrainingSplit, psTrainedSplit, psReviewingSplit,
psReviewedSplit, psTrainingRep, psTrainedRep, psReviewingRep, psReviewedRep, psTrainingCRep,... |
unit MainForm;
interface
uses
System.SysUtils, System.Types, System.Math, System.UITypes, System.Classes, System.Variants, System.IOUtils,
Xml.xmldom, Xml.XMLIntf, Xml.XMLDoc, Xml.adomxmldom,
FMX.Types, FMX.Platform, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Controls.Presentation,
FMX.S... |
{===============================================================================
RzTabStopEditor Unit
Raize Components - Design Editor Source Unit
Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved.
Design Editors
----------------------------------------------------------------------------... |
//****************************************************************************
// Unit Name: System.Math
//****************************************************************************
// This file is auto generated with paxCompiler engine.
// Import mode: local import, global members only.
/... |
unit SyncNodeMainUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, SyncNodeUnit, IdBaseComponent, IdAntiFreezeBase, IdAntiFreeze,
ADODB, DB,
TcpFileClient, CoolTrayIcon, StdCtrls, Menus, ComCtrls, ExtCtrls, Gauges,
AppEvnts, SUISkinEngine,
I... |
unit NumericEdit;
{Revision: to avoid problems with European data enter, for extended format
input, replace all commas with periods before trying to apply the val() function.
9/20/06}
interface
uses
Windows, Messages, SysUtils, Classes, Controls,... |
Unit dmGEE_SetAllConditionsToEqualOr;
Function Initialize: integer;
Begin
End;
Function Finalize : integer;
Begin
End;
Function Process(e: IInterface): integer;
Begin
AddMessage('Processing: ' + FullPath(e));
ProcessPerk(e);
End;
Function ProcessPerk(e: IInterface): integer;
Begin
If Signature(e) <> 'PERK'... |
(*****************************************************************************************
* LomCN Mir3 file manager constantes core File 2012 *
* *
* Web : http://www.lomcn.co.uk ... |
unit HST3DInitialWatTabLayers;
interface
uses ANE_LayerUnit;
type
TInitWatTabParam = Class(T_ANE_LayerParam)
// constructor Create(AParameterList : T_ANE_ParameterList; Index : Integer
// {$IFDEF DEFAULTSOK} = -1 {$ENDIF});
// override;
function Value : string; override;
class Function ANE_Para... |
unit MySQLExport;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls, StdCtrls,
sqlite3conn, sqldb, ServerInterface;
type
{ TMySQLExportForm }
TMySQLExportForm = class(TForm)
btnExport: TButton;
Button1: TButton;
btnCon... |
unit uMovimentacao;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls,
uCadastros, FMX.Objects, FMX.Edit, FMX.Controls.Presentation, FMX.Layouts,
Data.DB, FMX.Effects, FMX.TabContro... |
{==============================================================================
_ ve'va'CHe
__ _(_)_ ____ _ ___ ___ ™
\ \ / / \ \ / / _` |/ __/ _ \
\ V /| |\ V / (_| | (_| __/
\_/ |_| \_/ \__,_|\___\___|
game toolkit
Copyright © 2020 tinyBigGAMES™ LLC
All rights re... |
{***********UNITE*************************************************
Auteur ...... : Vincent Laroche
Créé le ...... : 15/04/2003
Modifié le ... : / /
Description .. : Passage en eAGL
Mots clefs ... :
*****************************************************************}
unit NumChek;
interface
uses
Forms,
Clas... |
{==============================================================================
_ ve'va'CHe
__ _(_)_ ____ _ ___ ___ ™
\ \ / / \ \ / / _` |/ __/ _ \
\ V /| |\ V / (_| | (_| __/
\_/ |_| \_/ \__,_|\___\___|
game toolkit
Copyright © 2020 tinyBigGAMES™ LLC
All rights re... |
unit Benchmark.Strings.ANSI;
interface
uses
Deltics.Smoketest,
Benchmark.Strings;
type
TANSIPerformance = class(TStringPerformanceCase, INameCase)
private
function NameForCase: UnicodeString;
published
procedure Pos_Char;
procedure Pos_Str;
procedu... |
program fwupd;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Classes, SysUtils, CustApp, datawh, dmidata, strutils, process;
type
{ TMyApplication }
TMyApplication = class(TCustomApplication)
private
fdwh: TDataWarehouse;
fdmi: TDMIData;
FDMIPath: S... |
unit MedRestrict;
interface
uses
LatTypes;
const
MRC_bGENERAL = 0;
MRC_bSNAP = 1;
MRC_bWIC = 2;
MRC_bFUEL = 3;
MRC_bMAINT = 4;
MRC_bTOBACCO = 5;
MRC_bALCOHOL = 6;
MRC_bMONEYORDERS = 7;
MRC_bCAS... |
unit xmp;
{$mode objfpc}{$H+}
interface
const XMP_VERSION = '4.4.1';
XMP_VERCODE = $040401;
XMP_VER_MAJOR = 4;
XMP_VER_MINOR = 4;
XMP_VER_RELEASE = 1;
XMP_NAME_SIZE= 64; //* Size of module name and type */
XMP_KEY_OFF= $81; //... |
unit uCompOiscSubleq;
interface
uses
Classes;
type
TLineTokens = record
Lbl: string;
Oper: string;
A: string;
B: string;
C: string;
Comment: string;
Result: string;
Address: longword;
IsRelative: boolean;
Relative: longword;
Error: boolean;
end;
TLinesTokens = arr... |
unit CppClassWrapper;
interface
type
TCppClass = class
strict private
FIndex: integer;
public
class procedure InitializeWrapper;
class procedure FinalizeWrapper;
constructor Create;
destructor Destroy; override;
procedure SetValue(value: integer);
function GetSquare: integer;
end;
... |
{ Uses:
Translator := TTranslatorLearning.create('NEXUSDB@10.0.0.19','LANG');
Translator.LoadLangResource('RUSSIAN');
bbtnNewRes.Caption := Translator.GetLangResource(1,'File');
}
unit ClassLangLearn;
interface
uses
SysUtils, Classes, ClassLang,
DB,
nxdb, nxllTransport, nxptBasePooled... |
unit unFrmPagoConceptosLegalesRegulados;
{-----------------------------------------------------------------------------
Unit Name: unFrmPagoConceptosLegalesRegulados
Author: RACastro
Date: 23-May-2006
Purpose: Registra los pagos (liquidaciones) asociados a un juicio,
independiente de la insta... |
unit uStrings;
interface
uses System.SysUtils;
function SqlFormatDate(AData: TDateTime): string;
implementation
function SqlFormatDate(AData: TDateTime): string;
begin
result := QuotedStr( FormatDateTime('YYYY-MM-DD', AData) );
end;
end.
|
unit MapInfo;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, StdCtrls, Buttons, ExtCtrls,DefDB,DefSource;
const
TableOptEnum :Array[0..2] of String=('none','create','replace');
RowOptEnum :Array[0..2] of String=('insert','update','merge');
type
T... |
{*******************************************************}
{ }
{ Vladimir Gaitanoff Delphi VCL Library }
{ vgBDEUtl unit }
{ }
{ Copyright (c) 1... |
unit PositionInterface;
interface
type
IPosition = interface(IInterface)
['{7286C364-E959-41CD-93CA-12BA2D1D7746}']
function GetActive: boolean; stdcall;
function GetBoardPos: byte; stdcall;
procedure SetActive(const Value: boolean); stdcall;
property BoardPos : byte read GetBoardPos;
pr... |
unit UserScreenUnit;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls;
type
{ TUserScreen }
TUserScreen = class(TForm)
pbScr: TPaintBox;
procedure FormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
procedur... |
{*******************************************************}
{ }
{ CodeGear Delphi Runtime Library }
{ }
{ Copyright(c) 2016 Embarcadero Technologies, Inc. }
{ All rights rese... |
unit ArtExport;
interface
uses GenExport, UTOB, ETransUtil;
type
TOF_ExportArt = class(TOF_ExportGen)
private
TOBTraitement : TOB;
function CopyTOBDim(T : TOB) : integer;
public
FForceFiles : boolean;
FNoTarif : boolean;
published
procedure ExportArtick(Fmt : TTOBFormat... |
unit inventori;
interface
procedure useInventori(plusInventori: integer);
//Menambah inventori yang terpakai pada simulasi sebesar plusInventori
//I.S: plusInventori bernilai bilangan bulat non-negatif
//F.S: Nilai currentSimulasi.inven_used bertambah sebesar plusInventori
procedure freeInventori(minusInv... |
unit unFraTrabajadorSiniestro_D5;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
unFraTrabajador, Db, SDEngine, ToolEdit, ArtComboBox, StdCtrls, Mask,
SinEdit, unArt, PatternEdit;
type
TfraTrabajadorSiniestro_D5 = class(TfraTrabajador)
edSiniestro: TSinEdit;
... |
//////////////////////////////////////////////////////////////////////////////
//
// Unit: xlsxwrite
//
// Description: XLSX writer
//
//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2008 NikaSoft. All rights reserved.
// Author: A.V.Niku... |
unit Generator;
{$DEFINE UNICODE}
interface
USES LangDM,sysutils,DB;
type
TGenerator = class
private
FLangID:integer;
FCodePage:integer;
FKeyBoard: string;
DM:TDMLang;
FLangPath:string;
FRootPath:string;
Procedure MakeDLL;
Procedure SavePicture;
public
... |
unit MFHorFlowBarrier;
interface
{MFHorFlowBarrier defines the "Horizontal Flow Barrier Unit[i]" layer
and associated parameters.}
uses ANE_LayerUnit, SysUtils;
type
THFBHydCondParam = class(T_ANE_LayerParam)
class Function ANE_ParamName : string ; override;
function Units : string; override;
public
... |
unit UnitArquivos_Sprint.Model;
interface
type
TArquivosSprint = class
private
FCodigo : integer;
FCaminho: string;
FData : TDateTime;
FHora : TDateTime;
public
property Codigo : integer read FCodigo write FCodigo;
property Caminho: string read FCaminho write FCaminho;
property D... |
unit regcheckgroup;
{$mode Delphi}{$H+}
interface
uses
Classes,
SysUtils,
LResources,
Controls,
Graphics,
ExtCtrls,
regconst,
LMessages,
regmsg,
regsourcen,
regtype;
type
{ TCustomRegCheckGroup }
TCustomRegCheckGroup = class(TCheckGroup)
private
FRegistrySource: TRegistrySource;
... |
{
TRegistryInfo Component Version 3.0 - Suite GLibWMI
Copyright (©) 2020, by Germán Estévez (Neftalí)
Utilización/Usage:
(ES) Basta con "soltar" el componente y activarlo.
(EN) Place the component in the form and active it.
MSDN Info:
https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-registry
====... |
{
TCodecFileInfo Component Version 3.0 - Suite GLibWMI
Copyright (©) 2020, by Germán Estévez (Neftalí)
La clase Win32_CodecFile representa el códec de audio o vídeo instalado en el equipo. Los códecs convierten
un tipo de formato de medio en otro, normalmente un formato comprimido a uno descomprimido. El nombre
"có... |
unit UserPersonUnit;
interface
uses
ORMEntityUnit,
UserPersonBaseUnit,
NullablesUnit,
Classes;
type
TUserPerson = class;
TUserPersonList = class;
TUserPerson = class(TUserPersonBase)
strict protected
function GetUserPersonList(): TUserPersonList; virtual;
function GetEntity... |
unit test_20_QuickSort;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ActnList,
OtlCommon,
OtlComm,
OtlTask,
OtlTaskControl,
OtlEventMonitor,
OtlThreadPool;
const
CNumDataPoints = 10000000; //10.000.000
type
TData = array of integer;... |
unit WriteSeawatViscosity;
interface
uses SysUtils, Forms, ANEPIE, OptionsUnit, WriteModflowDiscretization;
type
T2DArray = array of array of ANE_DOUBLE;
TSeawatViscosityWriter = class(TModflowWriter)
private
FModelHandle: ANE_PTR;
FDiscretization : TDiscretizationWriter;
FBasicPkg: TBasicPkgWrite... |
unit WriteHeadFluxObservationsUnit;
interface
uses Sysutils, StdCtrls, Grids, WriteFluxObservationsUnit;
type
THeadFluxObservationWriter = class(TCustomObservationWriter)
protected
function GetLayerRoot : string; override;
function GetEVF : double; override;
function GetIOWTQ : integer; override;
... |
unit wildcard; //12345
{
unit wildcard
version: 1.0.0.4
last update: 2007.01.01
Copyright 2007, aa, Adrian H., & Ray AF.
Private property of PT SoftIndo, JAKARTA
All rights reserved.
}
{
// simple (and fast! of course), non-greedy wildcard match;
// result is char count of matched mask, or zero (FALSE) if ... |
unit BIFF_DrawingObjChart5;
{-
********************************************************************************
******* XLSReadWriteII V6.00 *******
******* *******
******* Copyright(C) 1999,2017 Lars Arv... |
unit AsmCodeMain;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TfrmAsmCode = class(TForm)
btnPascal: TButton;
btnAsm: TButton;
ListBox1: TListBox;
procedure btnPascalClick... |
unit unfraProgramacion;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, ToolWin, JvExControls, JvComponent, JvgCheckBox,
PeriodoPicker, StdCtrls, Mask, ToolEdit, DateComboBox, ExtCtrls, DB,
SDEngine, VclExtra;
type
TfraOpcionProgramacion = clas... |
unit UnitTestDB;
interface
uses XMLDoc, Generics.Collections, Xml.XMLIntf, TIReadPlugin;
type
TCSUnitTestClass = class of TCSUnitTest;
TCSUnitTest = class
public
function runUnitTest(plugin: TLangPlugIn): string; virtual; abstract;
class function constructTestFromXML(xml: IXMLNode): TCSUnitT... |
unit DeDeOffsInf;
interface
(*
DOI! - Magic
BYTE - Flag (bit-mask 0 = Delphi3, 1=Delphi4, 2=Delphi5, 3,4,5,6,7 - Reserved)
BYTE - DOI version
WORD - Classes Count
CLASS DATA
Class Data format:
ClassName - Pascal String
WORD - Properties Count
WORD - Hierarchy... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.