text stringlengths 14 6.51M |
|---|
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
unit uQREnviarEmail;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ExtCtrls, QRPrntr,
LibGeral,
smtpsend, ssl_openssl, mimemess, mimepart, Data.DB, MemDS, DBAccess, IBC,
QRExport, QRPDFFilt, QRWebFilt ;
type
TfrmEnviarEmail = clas... |
program QueueV5; //**zero-based*//
(*
procedures:
1. init
2. enqueue
3. dequeue
functions:
1. isFull
2. isEmpty
*)
uses crt;
const size = 10;
type
queueType = record
front, rear : Integer;
data : array[0..size-1] of Integer;
end;
... |
unit nevActiveHyperlink;
{* Активная гиперссылка }
// Модуль: "w:\common\components\gui\Garant\Everest\nevActiveHyperlink.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TnevActiveHyperlink" MUID: (4A27C4D20100)
{$Include w:\common\components\gui\Garant\Everest\evDefine.inc}
interface
{$If Defined(evNeedHotSp... |
{
Clever Internet Suite
Copyright (C) 2013 Clever Components
All Rights Reserved
www.CleverComponents.com
}
unit clSoapMessage;
interface
{$I clVer.inc}
{$IFDEF DELPHI7}
{$WARN UNSAFE_CODE OFF}
{$WARN UNSAFE_TYPE OFF}
{$ENDIF}
uses
{$IFNDEF DELPHIXE2}
Windows, Classes, SysUtils, Variants, msxml,
{$ELS... |
unit ServerHorse.Model.Entity.BANKACCOUNTS;
interface
uses
SimpleAttributes;
type
[Tabela('BankAccounts')]
TBANKACCOUNTS = class
private
FIDTYPESBANKACCOUNTS: String;
FSTATUS: String;
FDESCRIPTION: String;
FGUUID: String;
FOPENINGBALANCE: Currency;
procedure SetDESCRIPTION(const Value... |
program basicAlgorithms(input, output);
const
MIN = 1;
MAX = 10;
type
sequence = array [MIN .. MAX] of integer;
var
s : sequence;
exercise : integer
procedure populate();
var i : integer;
begin
for i := MIN to MAX do
s[i] := i
end;
{
Corresponds to 1.2.1
}
function smallestValueWhile(var... |
unit GX_FavFiles;
{$I GX_CondDefine.inc}
interface
uses
GX_FavUtil, DropTarget, FileView, Windows, SysUtils, Classes, Controls, Forms,
ComCtrls, Menus, ExtCtrls, ImgList, ActnList, ToolWin, Dialogs, GX_BaseForm;
type
TfmFavFiles = class(TfmBaseForm)
MainMenu: TMainMenu;
mitFile: TMenuItem... |
unit PPlaceRoad;
interface
uses
Generics.Collections,
classes;
type
TRoad = class
protected
Node: string; // name of node it connects to
Weight: integer; // weight of the edge
public
constructor Create;
destructor Destroy;
procedure SetNode(NewNode:string);
procedure ... |
{$I OVC.INC}
{$B-} {Complete Boolean Evaluation}
{$I+} {Input/Output-Checking}
{$P+} {Open Parameters}
{$T-} {Typed @ Operator}
{$W-} {Windows Stack Frame}
{$X+} {Extended Syntax}
{$IFNDEF Win32}
{$G+} {286 Instructions}
{$N+} {Numeric Coprocessor}
{$C MOVEABLE,DEMANDLOAD,DISCARDABLE}
{$ENDIF}
{********************... |
unit WinMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Menus, IniFiles, ExtCtrls, StdCtrls;
type
TFormMain = class(TForm)
MenuMain: TMainMenu;
TimerIdle: TTimer;
procedure FormCreate(Sender: TObject);
procedure FormCloseQuery(Sender: TOb... |
unit fmain;
{ Copyright (C) 2006 Luiz Américo Pereira Câmara
This source is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
... |
unit MainClientFormU;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls;
type
TForm5 = class(TForm)
Memo1: TMemo;
Memo2: TMemo;
Panel1: TPanel;
btnGet: TButton;
b... |
unit TAddressLabelData;
interface
uses
System.SysUtils, System.UITypes, System.Classes, FMX.Types, FMX.Controls,
FMX.Layouts,
FMX.Edit, FMX.StdCtrls, FMX.Clipboard, FMX.Platform, FMX.Objects,
FMX.Graphics,
System.Types, StrUtils, FMX.Dialogs, CrossPlatformHeaders;
type
TAddressLabel = class(TLayout)
p... |
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls;
type
TForm1 = class(TForm)
Image1: TImage;
Button1: TButton;
Button2: TButton;
Button3: TButton;
Butt... |
{
DBAExplorer - Oracle Admin Management Tool
Copyright (C) 2008 Alpaslan KILICKAYA
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at... |
unit gauntlet_hw;
interface
uses {$IFDEF WINDOWS}windows,{$ENDIF}
m6502,m68000,main_engine,controls_engine,gfx_engine,rom_engine,pokey,
pal_engine,sound_engine,slapstic,ym_2151,atari_mo,file_engine;
function iniciar_gauntlet:boolean;
implementation
const
gauntlet_rom:array[0..5] of tipo_roms=(
... |
unit NLDXMLData;
interface
uses
Windows, Messages, SysUtils, Classes, NLDXMLIntf, ExtCtrls, XMLDoc,
xmldom, Contnrs;
type
TNLDXMLData = class;
TPosts = class;
TSortType = (stDateTime, stForum, stMember, stThread);
TPostItem = class
private
FThreadName: string;
FForumName: str... |
unit Unit1;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, System.Actions, System.Notification,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Controls.Presentation, FMX.StdCtrls, FMX.ActnList, FMX.StdActns,
FMX.MediaLibrary.Actions, FMX... |
unit uCRUD;
interface
uses
System.Generics.Collections, System.SysUtils, uDM;
type
TCRUD = class
private
FTabela: string;
FChavePrimaria: string;
FValor: TList<string>;
FCampo: TList<string>;
procedure SetCampo(const Value: TList<string>);
procedure SetValor(const Value: TList<string>);... |
unit Attachments;
interface
uses
SysUtils, Classes;
const
tidClass = 'Class';
tidProperties = 'Properties';
const
propExecuted = 'Executed';
type
TAttachment = class;
TAttachmentExecuter = class;
TAttachment =
class
public
constructor Create... |
{ Subroutine SST_W_C_EXP_REC (EXP)
*
* Write the value of the expression EXP. EXP is a constant record expression.
* This is only allowed in the initialization of a record variable.
}
module sst_w_c_EXP_REC;
define sst_w_c_exp_rec;
%include 'sst_w_c.ins.pas';
procedure sst_w_c_exp_rec ( {write value ... |
unit csCommandsManager;
interface
{$Include l3XE.inc}
uses
csCommandsConst,
IdGlobal,
l3ObjectRefList, ActnList, Classes, CsDataPipe, ddAppConfigTypes, l3Base,
csCommandsTypes,
l3ProtoObjectRefList,
SyncObjs,
l3ProtoObject, Menus
;
type
TcsCommandsManager = class(Tl3ProtoObject)
private
f_Commands: Tl3... |
unit NewsBoard_TLB;
{ This file contains pascal declarations imported from a type library.
This file will be written during each import or refresh of the type
library editor. Changes to this file will be discarded during the
refresh process. }
{ NewsBoard Library }
{ Version 1.0 }
interface
uses Windows, Act... |
(* Desenvolvedor: Kelvin dos Santos Vieira
Skype: nivlek_1995@hotmail.com
Wpp: (49)99818-2190
FB: https://www.facebook.com/keelvin9 *)
(* EnterTab: Componente para ajudar no controle de foco em FMX Windows*.
Para usar: 1º. Coloque o componente na Form;
2º. Configure a propriedade Contr... |
unit UDemo;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls,
FMX.TMSBaseControl, FMX.TMSGridCell, FMX.TMSGridOptions, FMX.TMSGridData,
FMX.TMSCustomGrid, FMX.TMSGrid, FMX.TMSBitmapContainer, FMX.TMSGri... |
unit unit1;
interface
uses
Classes, vg_forms, vg_scene,
vg_objects, vg_controls, vg_ani, vg_colors, vg_listbox, vg_tabcontrol,
vg_effects, vg_layouts, vg_textbox, vg_memo, vg_extctrls, vg_treeview,
vg_grid, Controls;
type
TForm1 = class(TForm)
vgScene1: TvgScene;
Root1: TvgBackground;
Text1: T... |
unit WinVersion;
interface
function IsNT : boolean;
implementation
uses
Windows;
function IsNT : boolean;
var
osvi : OSVERSIONINFO;
begin
osvi.dwOSVersionInfoSize := sizeof(OSVERSIONINFO);
GetVersionEx(osvi);
if (osvi.dwPlatformId = VER_PLATFORM_WIN32_NT)
then Resu... |
{
DBAExplorer - Oracle Admin Management Tool
Copyright (C) 2008 Alpaslan KILICKAYA
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at... |
program MakePasX;
{
Makes Delphi form code file or project file cross-platform
so it can be compiled by both Delphi and Lazarus/FPC.
Note that this is a one-time conversion.
Note: Use DfmToLfm to convert form's design file to LCL
whenever changes are made to form in Delphi.
Author: Phil Hess.
Co... |
unit Model.Produtos;
interface
type
TProdutos = class
private
var
FCodigo: String;
FDescricao: String;
FDiario: String;
FLog: String;
public
property Codigo: String read FCodigo write FCodigo;
property Descricao: String read FDescricao write FDescricao;
prope... |
unit NtUtils.Exec.Nt;
interface
uses
NtUtils.Exec;
type
TExecRtlCreateUserProcess = class(TInterfacedObject, IExecMethod)
function Supports(Parameter: TExecParam): Boolean;
function Execute(ParamSet: IExecProvider): TProcessInfo;
end;
implementation
uses
Ntapi.ntdef, Ntapi.ntrtl, Ntapi.ntpsapi, Nta... |
unit main;
{$mode delphi}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, Quick.Json.Serializer,
Generics.Collections;
type
TID = Int64;
TGenre = (gnMale, gnFemale);
TGroupType = (gtInternal, gtExternal);
TDayOfWeek = (wdSunday, wdMonday, wdThuesday, wdWednesday, ... |
unit FlashUtils;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "View"
// Автор: Люлин А.В.
// Модуль: "w:/garant6x/implementation/Garant/GbaNemesis/View/Common/FlashUtils.pas"
// Начат: 29.01.2009 15:41
// Родные Delphi интерфе... |
unit DSONTestSuites;
interface
uses
DUnitX.TestFramework,
DSON;
type
DSONTestsBase = class(TObject)
strict protected
FDSONObject: IDSONObject;
FDateTime: TDateTime;
procedure BuildDSONObject;
end;
[TestFixture]
BuilderTests = class(DSONTestsBase)
public
[Setup]
pro... |
unit Unit1;
interface
type
IEat = interface
end;
TAnimal = class(TInterfacedObject)
public
procedure Run; virtual; abstract;
end;
TDog = class(TAnimal, IEat)
procedure Run; override;
procedure LookDog;
end;
TCat = class(TAnimal)
public
procedure Run; override;
procedure Catc... |
unit np.buildData;
interface
uses classes, np.buffer;
type
PBuildData = ^TBuildData;
TBuildData = record
buf: BufferRef;
function append(const Str : UTF8String) : PBuildData; overload;
function appendOrdinal<T>(data:T) : PBuildData;
function append(data:Pointer; dataLen: Cardin... |
unit Autoreferat_InternalOperations_Controls;
// Модуль: "w:\garant6x\implementation\Garant\GbaNemesis\View\Autoreferat_InternalOperations_Controls.pas"
// Стереотип: "VCMControls"
// Элемент модели: "InternalOperations" MUID: (4A8ECFED02D8)
{$Include w:\garant6x\implementation\Garant\nsDefine.inc}
interface
{$If N... |
{$MODE OBJFPC}
{$INLINE ON}
program Employment;
uses Math;
const
InputFile = 'PROJECT.INP';
OutputFile = 'PROJECT.OUT';
maxN = Round(4E5);
var
a, b: array[1..maxN + 1] of Integer;
queue: array[1..maxN] of Integer;
front, rear: Integer;
n: Integer;
H, S, D: Int64;
T: Integer;
TotalCost: Int64;
proc... |
//Exercicio 19: Receber somente um número ímpar maior do que 15 e exibir o dobro deste número.
{ Solução em Portugol
Algoritmo Exercicio 19;
Var
numero, impar: inteiro;
Inicio
exiba("Programa que exibe números ímpares maiores que 15.");
exiba("Digite um número: ");
leia(numero);
se(resto(numero,2) = 1... |
UNIT WorkWithTree;
INTERFACE
TYPE
Tree = ^Node;
Node = RECORD
WordOfTree: STRING;
WordCount: INTEGER;
LBranch, RBranch: Tree
END;
PROCEDURE Insert(VAR TreeBranch: Tree; NewWord: STRING);
PROCEDURE PrintTree(VAR FOut: TEXT; VAR TreeBranch: Tree);
PROCEDURE D... |
{-----------------------------------------------------------------------------
Created: 03.12.2009 14:29:49
(c) by TheUnknownOnes under dwywbdbu license - see http://theunknownones.googlecode.com/svn/ for the license
see http://www.TheUnknownOnes.net
----------------------------------------------------------------... |
unit GX_ePasteAs;
interface
uses
Windows, SysUtils, Classes, StdCtrls, Controls, Forms,
GX_BaseForm, GX_eSelectionEditorExpert, GX_EditorExpert, GX_ConfigurationInfo;
type
TPasteAsExpert = class(TEditorExpert)
protected
procedure InternalLoadSettings(Settings: TExpertSettings); override;
... |
unit ExcMagicControl;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExcMagic;
type
TExcMagicControl = class(TComponent)
private
function GetEnabled: Boolean;
procedure SetEnabled(const Value: Boolean);
function GetMaxCallStack: Integer;
procedure Se... |
unit RnQ2sql;
interface
// uses RQGlobal;
const
CRLF=#13#10;
CRLFCRLF=CRLF+CRLF;
const
SQLCreate_CLIST_TYPES : AnsiString =
'CREATE TABLE IF NOT EXISTS [CLIST_TYPES](' + CRLF +
' [ID] NUMBER(1) NOT NULL ON CONFLICT IGNORE COLLATE BINARY,' + CRLF +
' [DESC] CHAR(20) NOT NULL ON CONFLICT IGNORE,' + ... |
{ Subroutine SST_W_C_DECL_SYM_ROUT (PROC)
*
* Declare any symbols eventually referenced by a routine call or declaration.
* PROC is the routine descriptor.
}
module sst_w_c_DECL_SYM_ROUT;
define sst_w_c_decl_sym_rout;
%include 'sst_w_c.ins.pas';
procedure sst_w_c_decl_sym_rout ( {declare symbols referenced ... |
unit nvWinTrust;
interface
uses Windows;
{ Sample return codes - others may be returned : only zero indicates success }
const
CRYPT_E_SECURITY_SETTINGS = $80092026;
{ The cryptographic operation failed due to a local security option setting. }
TRUST_E_PROVIDER_UNKNOWN = $800B0001;
{ The trust prov... |
unit Thread.ImportarPlanilhaBaixasDIRECT;
interface
uses
System.Classes, Dialogs, Windows, Forms, SysUtils, Messages, Controls, System.DateUtils, System.StrUtils,
Generics.Collections, Control.EntregadoresExpressas, Control.Entregas, Control.Sistema,
FireDAC.Comp.Client, Common.ENum, Model.PlanilhaBaixasDIRECT,... |
unit AssetsMenagerData;
interface
uses
System.SysUtils, System.Classes, FMX.Types, FMX.Controls, FMX.Layouts,
FMX.Edit, FMX.StdCtrls, FMX.Clipboard, FMX.Platform, FMX.Objects,
System.Types, StrUtils, FMX.Dialogs, System.Generics.Collections;
{$IF DEFINED(ANDROID) OR DEFINED(IOS) OR DEFINED(LINUX)}
const
Str... |
{
Clever Internet Suite
Copyright (C) 2013 Clever Components
All Rights Reserved
www.CleverComponents.com
}
unit clCryptUtils;
interface
{$I clVer.inc}
uses
{$IFNDEF DELPHIXE2}
Classes, SysUtils, Windows,
{$ELSE}
System.Classes, System.SysUtils, Winapi.Windows,
{$ENDIF}
clUtils, clCryptAPI, clWUtils;
... |
unit FindUnit.FileEditor;
interface
uses
ToolsApi, SimpleParser.Lexer.Types, DelphiAST.Classes, FindUnit.OtaUtils, Classes, DesignEditors, Graphics,
FindUnit.Header, FindUnit.FormMessage;
type
TCharPosition = record
StartLine: Integer;
StartPos: Integer;
EndLine: Integer;
EndPos:... |
unit GX_FileScanner;
(*
Scans pas/cpp files and produces a list of implemented methods
Known Scanning False Positives/Bugs:
var CoInitializeExProc: function (pvReserved: Pointer; coInit: Longint): HResult; stdcall;
procedure ReleaseToolMenuKeyHooks; forward;
*)
interface
uses
Classes, mPasLex... |
unit MD5;
interface
uses IdHashMessageDigest, Classes, SysUtils;
function MD5String(const value : string) : string;
implementation
function MD5String(const value : string) : string;
var
xMD5 : TIdHashMessageDigest5;
begin
xMD5 := TIdHashMessageDigest5.Create;
try
Result := xMD5.HashStringAsHex(value)
f... |
unit xn.dictionary;
interface
uses System.Generics.Collections;
type
IxnDictionary<K, V> = interface
['{4953A5E2-38BD-4898-B85D-7A1157739D6A}']
procedure Clear;
procedure Add(const aKey: K; const aValue: V);
function Count: integer;
function ContainsKey(const aKey: K): Boolean;
... |
{====================================================}
{ }
{ EldoS Visual Components }
{ }
{ Copyright (c) 1998-2003, EldoS Corporation }
{ ... |
PROGRAM SqureRoot;
VAR number : Real;
VAR rt : Real;
(*
PROCEDURE SqrtKit(r : Real);
VAR precision : Real;
VAR x : Real;
VAR y : Real;
VAR enough : Boolean;
VAR loopcnt : Integer;
BEGIN
precision := 1E-12;
x := 1.0;
enough := false;
loopcnt := 0;
WHILE NOT enough DO
BEGIN
y := r / x;
x := ... |
{
Clever Internet Suite
Copyright (C) 2013 Clever Components
All Rights Reserved
www.CleverComponents.com
}
unit clHtmlParser;
interface
{$I clVer.inc}
uses
{$IFNDEF DELPHIXE2}
Classes;
{$ELSE}
System.Classes, System.Types;
{$ENDIF}
type
TclHtmlParseMethod = (pmAll, pmTagsOnly, pmTextOnly);
TclHtm... |
//Exercicio 30: Desenvolva um algoritmo que recebe do usuário o placar de um jogo de futebol (gols de cada time) e
//informe se o resultado foi um empate, a vitória do primeiro ou do segundo time.
{ Solução em Portugol
Algoritmo Exercicio ;
Var
time1,time2: inteiro;
Inicio
exiba("Programa que determina qual... |
{ The unit is part of Lazarus Chelper package
Copyright (C) 2010 Dmitry Boyarintsev skalogryz dot lists at gmail.com
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 ... |
unit IdFTPListParseIEFTPGateway;
interface
{$i IdCompilerDefines.inc}
uses
Classes,
IdFTPList, IdFTPListParseBase,IdFTPListTypes;
{This is based on:
Information Exchange
via TCP/IP FTP Gateway Userís
Guide
Version 1 Release 4
© Copyright GXS, Inc. 1998, 2005. All rights reserved.
and is av... |
unit Main;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls, UModem, CommInt;
type
TFormMain = class(TForm)
Panel1: TPanel;
cbDSR: TCheckBox;
cbCTS: TCheckBox;
cbRLSD: TCheckBox;
Panel2: TPanel;
Memo: TMemo;
edComName: TEdit... |
unit NtUtils.Shellcode;
interface
uses
Winapi.WinNt, Ntapi.ntdef, Ntapi.ntrtl, Ntapi.ntpsapi, NtUtils.Exceptions;
const
PROCESS_INJECT_ACCESS = PROCESS_CREATE_THREAD or PROCESS_VM_OPERATION or
PROCESS_VM_WRITE;
// Write a portion of data to a process' memory
function NtxWriteDataProcess(hProcess: THandle; B... |
unit mikie_hw;
interface
uses {$IFDEF WINDOWS}windows,{$ENDIF}
m6809,nz80,main_engine,controls_engine,sn_76496,gfx_engine,rom_engine,
pal_engine,sound_engine,qsnapshot;
function iniciar_mikie:boolean;
implementation
const
mikie_rom:array[0..2] of tipo_roms=(
(n:'n14.11c';l:$2000;p:$6000;crc... |
unit ssPanel;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, ExtCtrls;
type
TssPanel = class(TPanel)
private
FHintColor: TColor;
FSaved: TColor;
FOnMouseEnter: TNotifyEvent;
FOnMouseLeave: TNotifyEvent;
FOnCtl3DChanged: TNotifyEvent;
FOnPa... |
unit frmMain;
interface
uses
System.Types, System.IOUtils, Winapi.Windows, Winapi.Messages,
System.SysUtils,
System.Variants,
System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Memo1: TMemo;
Button2: TButton;
Labe... |
PROGRAM SortMonth_b(INPUT, OUTPUT);
{Программа сравнивает введённые значения месяцев}
USES DateIO; {ReadMonth, WriteMonth}
VAR
MonthNameFirst, MonthNameSecond: Month;
BEGIN {SortMonth}
IF NOT EOLN
THEN
BEGIN
ReadMonth(INPUT, MonthNameFirst);
ReadMonth(INPUT, MonthNameSecond)
END
ELSE
W... |
{
Licence
=======
LGPLv2.1 with static linking exception (See COPYING.modifiedLGPL.txt)
Credits
=======
Information for this unit was obtained from:
References
==========
BT_USB Devices
=============
This unit provides both the BT_USB device interface and the generic USB BT_USB BT_USB dri... |
unit dmMain;
interface
uses
System.SysUtils, System.Classes, Data.Bind.GenData, IPPeerClient,
IPPeerServer, System.Tether.Manager, System.Tether.AppProfile,
Data.Bind.Components, Data.Bind.ObjectScope, Fmx.Bind.GenData,
unitGamePlayer, System.Actions, FMX.ActnList;
type
TTetheringStatus = class
private
... |
unit DAO.CadastroFinanceiro;
interface
uses FireDAC.Comp.Client, System.SysUtils, DAO.Conexao, Model.CadastroFinanceiro;
type
TCadastroFinanceiroDAO = class
private
FConexao: TConexao;
public
constructor Create();
function GetID(iID: Integer): Integer;
function Insert(aFinanceiros:... |
{ Function SST_W_C_EXP_ADRABLE (EXP)
*
* Returns TRUE if the "address of" operator (&) may be used in front of the
* indicated expression directly.
}
module sst_w_c_EXP_ADRABLE;
define sst_w_c_exp_adrable;
%include 'sst_w_c.ins.pas';
function sst_w_c_exp_adrable ( {determine whether "address of" exp is l... |
unit kwPopEditorSelectCells;
{* *Формат:* aStartCell aStartRow aFinshCell aFinishRow anEditorControl pop:editor:SelectCells
*Описание:* Выделяет диапазон ячеек с помощью мыши начиная от начальной (aStartCell, aRowCell) до конечной (aFinishCell, aFinishRow). Курсор должен уже находится в таблице. Положение курсора в та... |
unit sdsChangesBetweenEditionsData;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "ChangesBetweenEditions$Domain"
// Автор: Люлин А.В.
// Модуль: "w:/garant6x/implementation/Garant/GbaNemesis/ChangesBetweenEditions/sdsChangesBe... |
unit Model.EnderecosEmpresa;
interface
uses Common.ENum, FireDAC.Comp.Client, Dialogs;
type
TEnderecosEmpresa = class
private
FID: Integer;
FSeq: Integer;
FTipo: String;
FCEP: String;
FLogradouro: String;
FNumero: String;
FComplemento: String;
FBairro: String... |
{
Double Commander
-------------------------------------------------------------------------
FFmpeg thumbnail provider
Copyright (C) 2015 Alexander Koblov (alexx2000@mail.ru)
FFmpegthumbnailer - lightweight video thumbnailer
Copyright (C) 2010 Dirk Vanden Boer <dirk.vdb@gmail.com>
This program is free ... |
{ *******************************************************************************
Copyright (c) 2004-2010 by Edyard Tolmachev
IMadering project
http://imadering.com
ICQ: 118648
E-mail: imadering@mail.ru
******************************************************************************* }
unit HistoryU... |
unit uTypes;
interface
uses CommonTypes, Classes, cxGridDBBandedTableView;
type
TSearchThreadStatus = record
TotalPages : Integer;
LoadedPages : Integer;
TotalItems : Integer;
LoadedItems : Integer;
SavedItems : Integer;
CurrentCategory : Integer;
TotalCategories : Integ... |
unit BitStrmr;
interface
uses
FIFOIntf;
const
BufferBits = 32;
type
TBitStreamer =
class
public
constructor Create;
destructor Destroy; override;
public
procedure Reset;
public
p... |
unit sdlticks;
{
$Id: sdlticks.pas,v 1.2 2006/11/08 08:22:48 savage Exp $
}
{******************************************************************************}
{ }
{ JEDI-SDL : Pascal units for SDL - Simple DirectMedia Layer ... |
{ Print a table of squares, cubes and fourth powers
of integers. }
program powerTable(input, output);
var
tableSize, base, square, cube, quad : integer;
begin
write('Enter table size: ');
read(tableSize);
for base := 1 to tableSize do
begin
square := sqr(base);
cube := base * square;
quad :=... |
unit tabNamesMLS;
interface
function TranslateName(name : string) : string;
implementation
uses
Classes, SysUtils, Literals;
var
Tabs : TStringList = nil;
function TranslateName(name : string) : string;
var
aux : string;
begin
aux := UpperCase(Tabs.Values[name]);
if aux <... |
unit uRelPedidoAcumuladoProd;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uModeloRel, ExtCtrls, JvExControls, JvNavigationPane, StdCtrls,
Buttons, frxClass, frxDBSet, DB, ZAbstractRODataset, ZDataset,
ZConnection, cxGraphics, cxControls, cxLookAndFeels,
... |
unit MyQueue;
interface
type
Queue = class
//private
queue:array[,] of integer;
length:integer;
//public
constructor Create();
procedure Push(x:integer; y:integer);
procedure Unshift(x:integer; y:integer);
function Pop():array of integer;
function Shift():array of integ... |
unit uPEN_AppMain;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, uBaseCustom, uMainDataSet,
Vcl.ExtCtrls, uPEN_PenezniPolozky_G, uPEN_Stavy_G;
type
TPEN_AppMain = class(TBaseCustom)
pnlBase: TPanel;
... |
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
unit eInterestSimulator.Model.Resultado.Factory;
interface
uses
eInterestSimulator.Model.Interfaces, eInterestSimulator.Model.PagamentoUnico,
eInterestSimulator.Model.PagamentoVariavel,
eInterestSimulator.Model.Alemao, eInterestSimulator.Model.Americano,
eInterestSimulator.Model.AmortizacaoMisto, eInterestSi... |
PROGRAM WriteSymbol(INPUT, OUTPUT);
CONST
Min = 0;
Max = 25;
TYPE
Matrix = SET OF Min..Max;
VAR
ChReadable: CHAR;
SetAvailable: Matrix;
PROCEDURE Identification(VAR ChChecked: CHAR; VAR SetNull: Matrix);
BEGIN{Identification}
CASE ChChecked OF
'A': SetNull := [1, 6, 7, 11, 13, 16, 17, 18, 19, 21, 25];
... |
unit fpcorm_dbcore_types;
{< @abstract(This unit contains all the super types, derived into the types
written in the code generated by fpcORM.)
@author(Andreas Lorenzen - aplorenzen@gmail.com)
@created(2014-06-24)
The classes in this unit, are intended to provide all the basic functionality
for the f... |
unit RankingsDaemon;
interface
uses
DirServerSession, Daemons;
function CreateDaemon(const DSAddr : string; DSPort : integer) : IDaemon;
implementation
uses
Windows, Classes, SysUtils, SyncObjs, Inifiles, RankProtocol, Forms, Clipbrd,
MathUtils, Logs, DirectoryServerProtocol;
const
cLogId ... |
unit UPascalCoinSafeBox;
interface
uses
Classes, UOrderedBlockAccountList, URawBytes, UOrderedRawList, UThread, UAccountKey, UBlockAccount, UAccountInfo, UAccountUpdateStyle, UOperationBlock, UPCSafeBoxHeader, UAccount;
type
TPCSafeBox = Class
private
FBlockAccountsList : TList; // Used when has no Previou... |
unit uCadProduto;
interface
uses
uProduto, FireDAc.Comp.Client, FireDAc.Stan.Param, Data.DB,
FireDAc.DApt;
type
TCadProduto = class(TProduto)
private
FConexao : TFDConnection;
public
Constructor Create(poConexao: TFDConnection); virtual;
Destructor Destroy(); ove... |
{$IfNDef _fstFormSetWithSynchroForm_imp}
{$Define _fstFormSetWithSynchroForm_imp}
(* Сборка форм с формами синхронного просмотра *)
_fstFormSetWithSynchroForm_ = class(_fstFormSetWithSynchroForm_Parent_)
private
f_SynchroForms: TnsSynchroFormList;
{* - мапа идентификаторов форм и зон синхронного просмотра }
f... |
{
DBAExplorer - Oracle Admin Management Tool
Copyright (C) 2008 Alpaslan KILICKAYA
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at... |
unit eInterestSimulator.Model.AmortizacaoConstante;
interface
uses
eInterestSimulator.Model.Interfaces;
type
TModelAmortizacaoAmortizacaoConstante = class(TInterfacedObject, iResultado)
private
FNumeroParcela: Integer;
FValorJuros: Real;
FValorAmortizacao: Real;
FValorSaldo: Real;
FValorPag... |
unit CsConst;
{ $Id: CsConst.pas,v 1.14 2012/03/06 09:18:12 narry Exp $ }
// $Log: CsConst.pas,v $
// Revision 1.14 2012/03/06 09:18:12 narry
// Получать с сервера список групп доступа Переданные в регион (273581950)
//
// Revision 1.13 2010/07/06 12:31:02 narry
// - К222759027
//
// Revision 1.12 2010/03/04 07:... |
unit Unit26;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls;
type
TForm26 = class(TForm)
Button1: TButton;
Panel1: TPanel;
procedure FormCreate(Sender: TObject);
priva... |
unit UnderControlKeywordsPack;
{* Набор слов словаря для доступа к экземплярам контролов формы UnderControl }
// Модуль: "w:\garant6x\implementation\Garant\GbaNemesis\View\UnderControl\Forms\UnderControlKeywordsPack.pas"
// Стереотип: "ScriptKeywordsPack"
// Элемент модели: "UnderControlKeywordsPack" MUID: (4ABCD2D80... |
namespace RemObjects.Train.API;
interface
uses
RemObjects.Train,
System.Collections.Generic,
System.Linq,
System.Threading,
System.Text,
RemObjects.Script.EcmaScript.Internal,
System.IO,
RemObjects.Script.EcmaScript,
System.Security.Cryptography,
Amazon.S3.*;
type
[PluginReg... |
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TForm1 = class(TForm)
btnEscreverPinPad: TButton;
btnIniciar: TButton;
btTestarPinpad: TButton;
btnDigitaCPF: TBut... |
unit uProtoBufGenerator;
interface
uses
System.SysUtils,
System.Classes,
uAbstractProtoBufClasses,
uProtoBufParserAbstractClasses,
uProtoBufParserClasses;
type
TProtoBufGenerator = class(TObject)
strict private
procedure GenerateInterfaceSection(Proto: TProtoFile; SL: TStrings);
... |
unit AppSettings;
interface
uses
SettingsInterface;
type
TAppSettings = class(TObject)
private
class function GetSettings: ISettings; static;
public
class property Settings: ISettings read GetSettings;
end;
implementation
uses
Settings, System.IOUtils, System.SysUtils;
var
FSettings: TSettin... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.