text stringlengths 14 6.51M |
|---|
unit MStringGrid;
{$mode objfpc}{$H+}{$M+}
{ TMStringGrid allows rows to be appended, deleted and inserted at runtime
To append a row to the bottom of the grid
- move to the last row and press Down Arrow
To delete the current row
- press Ctrl+Del
To insert a row at the current row position
- ... |
{$A+,B-,D+,E-,F-,G+,I+,L+,N+,O-,P-,Q-,R-,S-,T-,V+,X+,Y+}
{$M 1024,0,0}
{
by Behdad Esfahbod
Algorithmic Problems Book
April '2000
Problem 67 Winning Strategy
N=2^K-1 => Second Pl. else First Pl.
N=2^K-1 is the kernel of the game
}
program
MaximumHalfGame;
var
N, T : Integer;
procedure ReadInput;
begin
Writ... |
unit dmdatabase;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, pqconnection, sqldb, FileUtil,
inifiles,
fpJson, db,
BrookLogger;
type
{ Tdatamodule1 }
Tdatamodule1 = class(TDataModule)
PGConnection1: TPQConnection;
qryArticulos: TSQLQuery;
qryFotos: TSQLQuery;
SQLTransaction1: ... |
unit fCsltNote;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ORCtrls, ORfn, ExtCtrls, fBase508Form, VA508AccessibilityManager;
type
TfrmCsltNote = class(TfrmBase508Form)
cmdOK: TButton;
cmdCancel: TButton;
cboCsltNote: TORComboBox;
lblAction: TLabel;
... |
//Модуль для создания записей о дочерних окнах
unit uChild;
interface
uses
Classes, Forms;
type
TChildActions = (
childAdd,
childEdit,
childDelete,
childRefresh,
childToExcel
);
//описание для всех MDI Child программы
PChildInfo = ^TChildInfo;
TChildInfo = record
Bof: boolean; //... |
unit RoleService;
interface
uses
RoleInterface, superobject, uTableMap, BaseService, System.SysUtils;
type
TRoleService = class(TBaseService, IRoleInterface)
public
function getdata(var con: integer; map: ISuperObject): ISuperObject;
function getAlldata(map: ISuperObject = nil): ISuperObject;
funct... |
{*******************************************************}
{ }
{ CodeGear Delphi Runtime Library }
{ }
{ Copyright(c) 2016-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
unit iaExample.CDE.WaitingThread;
interface
uses
System.Classes,
System.SyncObjs;
type
TExampleWaitingThread = class(TThread)
private
fCDE:TCountdownEvent;
protected
procedure Execute(); override;
procedure AllDone();
public
constructor Create(const pCDE:TCountdownEvent);
... |
unit utils;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, strutils, fpjson, jsonparser, dateutils, RegExpr;
type
TMCItem = record
name: string;
id: string;
end;
type
TMCItemArray = array of TMCItem;
function readfile(fnam: string): string;
function cuterandom(min,max: integer): Integer;
fun... |
//
// This unit is part of the GLScene Project, http://glscene.org
//
{: FRColorEditor<p>
RGB+Alpha color editor.<p>
<b>Historique : </b><font size=-1><ul>
<li>24/04/09 - DanB - removed some ifdef MSWINDOWS, which were actually for Kylix
<li>05/09/08 - DanB - Removed Kylix support
<l... |
{*********************************************}
{ TeeBI Software Library }
{ TDataItems editor dialog (Table Structure) }
{ Copyright (c) 2015-2016 by Steema Software }
{ All Rights Reserved }
{*********************************************}
unit FMXBI.Editor.Items;
interf... |
unit FC.Trade.Properties;
{$I Compiler.inc}
interface
uses Classes, SysUtils, Controls, BaseUtils, Variants, Serialization,Generics.Collections,Properties.Obj,
StockChart.Definitions,
StockChart.Indicators.Properties,
FC.Definitions;
type
TTraderExpertWeighingType = (ewtAllEqual,ewtTimeFrame,ewtSeniority);
... |
unit account_impl;
{This file was generated on 15 Jun 2000 15:10:50 GMT by version 03.03.03.C1.04}
{of the Inprise VisiBroker idl2pas CORBA IDL compiler. }
{Please do not edit the contents of this file. You should instead edit and }
{recompile the original IDL which was located in the file a... |
unit RPRemovedExemptions;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls, DBCtrls, DBTables, DB, Buttons, Grids,
Wwdbigrd, Wwdbgrid, ExtCtrls, Wwtable, Wwdatsrc, Menus, RPCanvas,
RPrinter, RPBase, RPFiler, Types, RPDefine, (*Progress,*) TabNotBk, R... |
{*******************************************************}
{ }
{ Delphi DataSnap Framework }
{ }
{ Copyright(c) 1995-2011 Embarcadero Technologies, Inc. }
{ ... |
unit Unit1;
interface
uses
System.SysUtils, System.Classes, System.Math,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.StdCtrls,
Vcl.ComCtrls, Vcl.ExtCtrls,
//GLScene
GLObjects, GLGraph, GLScene, GLVectorGeometry, GLVectorTypes,
GLWin32Viewer, GLCrossPlatform, GLCoordinates, GLBaseClasses;
typ... |
unit StreamingUnit;
interface
uses
System.Classes, System.SysUtils, System.Generics.Collections;
type
TNewUnknownComponentEvent = procedure(const AClassName: string; var AComponent: TComponent) of object;
TUnknownClassEvent = procedure(const AClassName: string; out AComponentClass: TComponentClass) of object;
... |
{------------------------------------------------------------------------------
This file is part of the MotifMASTER project. This software is
distributed under GPL (see gpl.txt for details).
This software is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even th... |
unit UnitWifiPasswords;
interface
uses
Windows, Classes, UnitFunctions;
function ListWifiPasswords: string;
implementation
const
CRYPT_STRING_HEX = 4;
CRYPTPROTECT_LOCAL_MACHINE = 4;
type
PDATA_BLOB = ^TDATA_BLOB;
TDATA_BLOB = record
cbData: DWORD;
pbData: PByte;
end;
... |
program table_formatter_1041571;
uses parser;
var
currentTable : nodePtr;
procedure printCell(currentCell : nodePtr);
var
content : string;
i : integer;
begin
content := currentCell^.content;
write(content);
for i := length(content) to cellWidth do write('_');
write(' | ');
end;
procedure... |
{*******************************************************}
{ }
{ Borland Delphi Visual Component Library }
{ Dataset Designer Associate Attributes Dialog }
{ }
{ Copyright (c) 1997,99... |
{
Create Temper Patterns
darkconsole https://darkconsole.tumblr.com
Given a list of COBJ forms create versions for Tempering the item.
}
Unit
UserScript;
Uses
'Dcc\Skyrim';
Var
TemperType: Integer; // 1 = workbench, 2 = grindstone.
Workbench: IInterface;
////////////////////////////////////... |
unit ANovoConcorrente;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, formularios,
PainelGradiente, Db, DBTables, Tabela, Localizacao, DBKeyViolation,
BotaoCadastro, StdCtrls, Buttons, ExtCtrls, Componentes1, DBCtrls, Mask,
DBClient;
type
TFNovoConcorren... |
unit Vigilante.Infra.Build.Builder.Impl;
interface
uses
System.JSON, Vigilante.Build.Model, Vigilante.Infra.Build.Builder;
type
TBuildBuilder = class(TInterfacedObject, IBuildBuilder)
private
FJSON: TJSONObject;
public
constructor Create(const AJSON: TJSONObject);
function PegarBuild: IBuildModel... |
unit BF_OMAC;
(*************************************************************************
DESCRIPTION : Blowfish OMAC1/2 routines
REQUIREMENTS : TP5-7, D1-D7/D9-D10/D12, FPC, VP
EXTERNAL DATA : ---
MEMORY USAGE : ---
DISPLAY MODE : ---
REFERENCES : [1] OMAC page: htt... |
unit esExceptions;
interface
{$I Compilers.inc}
Uses
SysUtils, Classes;
type
EsException = class(Exception)
{{В класс встроена поддержка Inner Exception, более простая чем в Delphi.
Работает начиная с XE4
Для того, чтобы обернуть исключение, надо писать:
try
DoSomething();
except
o... |
unit Un_Clientes;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, DBCtrls, Grids, DBGrids, DB, Buttons;
type
T_Clientes = class(TForm)
pnlClientes: TPanel;
dsClientes: TDataSource;
dbgClientes: TDBGrid;
dbnClientes: TDBNavig... |
unit JRenderBufferIntuition;
{$mode objfpc}{$H+}
interface
uses
{FPC} SysUtils,
{Amiga} Exec, Intuition, AGraphics, layers, GadTools, Utility,
{JAE} JATypes, JABitmap;
type
TJRenderBufferIntuitionStatus = (
BufferStatus_Render = 0, {Buffer ready for render}
BufferStatus_Swap = 1, {Buffer read... |
{*******************************************************}
{ }
{ Delphi DataSnap Framework }
{ }
{ Copyright(c) 1995-2011 Embarcadero Technologies, Inc. }
{ ... |
{**************************************************************************************************}
{ }
{ Project JEDI Code Library (JCL) }
{ ... |
unit uLoadForm;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Objects,
FMX.Controls.Presentation, FMX.StdCtrls, xConsts, xFunction;
type
TfLoadForm = class(TForm)
pnl1: TPanel;
... |
(*
Unit owner :
Pierr Yager <pierre.y@gmail.com>
*)
unit ZeroMQ.Wrapper;
interface
uses
Generics.Collections,
ZeroMQ.API;
type
ZMQ = (
Pair,
Publisher, Subscriber,
Requester, Responder,
Dealer, Router,
Pull, Push,
XPublisher, XSubscriber
);
MessageFlag = (DontWait, Send... |
{$A+,B-,D+,E-,F-,G+,I+,L+,N+,O-,P-,Q-,R-,S-,T-,V+,X+,Y+}
{$M 16384,0,0}
{
by Behdad Esfahbod
Algorithmic Problems Book
April '2000
Problem 159 Backtrack Method
}
program
Sitting;
const
MaxNum = 200;
var
N, M : Integer;
CL, CW : array [0 .. MaxNum * 2] of record L, W, R : Integer; end;
IndL, IndW : array [1 ... |
unit xElecBreak;
interface
uses xElecLine, xElecPoint, System.Classes, System.SysUtils;
type
/// <summary>
/// 断路器
/// </summary>
TElecBreak = class
private
FInLineN: TElecLine;
FOutLineA: TElecLine;
FInLineB: TElecLine;
FInLineC: TElecLine;
FInLineA: TElecLine;
FOn... |
unit rtfprocessor;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, IniFiles, strutils, cmtutil, rtfutil;
type
TOnProgress = procedure(perc1: Integer) of object;
TOnLog = procedure(message: String) of object;
EVerseRefException = class(Exception);
TRtfProcessor = class(TObject)
priv... |
{**********************************************}
{ TWindRoseSeries }
{ TClockSeries }
{ Copyright (c) 1998-2004 by David Berneda }
{**********************************************}
unit TeeRose;
{$I TeeDefs.inc}
interface
Uses {$IFNDEF LINUX}
Window... |
unit PKG5020A1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Db, MemDS, DBAccess, Ora, ComCtrls, StdCtrls, OnFocusButton,
ExtCtrls, OnScheme, OnEditBaseCtrl, OnEditStdCtrl, OnEditBtnCtrl,
OnEditCombo, OnEditMdate, calen2, OnShapeLabel, OnPopupEdit, Pass,
... |
unit Hash_CheckSum;
{$I TinyDB.INC}
interface
uses Classes, HashBase;
type
THash_XOR16 = class(THash)
private
FCRC: Word;
protected
class function TestVector: Pointer; override;
public
class function DigestKeySize: Integer; override;
procedure Init; override;
procedure Calc(const Data; D... |
unit Form.Browser;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics, Component.UAWebbrowser,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.OleCtrls, SHDocVw,
Global.LanguageString;
procedure BrowserCreate(Sender: TForm);
const
WM_AFTER_SHOW = WM_US... |
unit LuaTree;
{$mode Delphi}{$H+}
interface
Uses LuaPas,LuaControl,ComCtrls,Controls,Classes,Types,LuaCanvas, DOM, lazutf8, LazFileUtils;
function CreateTreeView(L: Plua_State): Integer; cdecl;
type
TLuaTreeView = class(TTreeView)
LuaCtl: TLuaControl;
LuaCanvas: TLuaCanvas;
private
... |
{***********************************<_INFO>************************************}
{ <Проект> Медиа-сервер }
{ }
{ <Область> 16:Медиа-контроль ... |
unit SpectrumTypes;
interface
uses
SysUtils, Math,
OriIniFile;
type
TValue = Double;
TValueArray = array of TValue;
PValueArray = ^TValueArray;
const
CMinValue = -MaxDouble;
CMaxValue = MaxDouble;
VALUE_MIN = -MaxDouble;
VALUE_MAX = MaxDouble;
type
TSimpleSearchKind = (skFin... |
{*******************************************************}
{ }
{ Delphi FireDAC Framework }
{ FireDAC MongoDB API wrapping classes }
{ }
{ Copyright(c) 2004-2018 Embar... |
unit P_ProjectInfo;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Data.DB, Vcl.StdCtrls, Vcl.ExtCtrls,
Vcl.DBCtrls, Vcl.WinXCtrls, Vcl.Mask, Vcl.Grids, Vcl.DBGrids, Vcl.ToolWin,
Vcl.ComCtrls, Vcl.Buttons, F... |
unit PackBriefFormU;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Db, DBClient, StdCtrls, Grids, DBGrids, ComCtrls, ActnList;
type
TPackBriefForm = class(TForm)
PageControl1: TPageControl;
TabSheet1: TTabSheet;
Button1: TButton;
Button2: TButton;
... |
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TDemoClass=class(TObject)
{Un champ bidon qui occupe 1KB}
Field:array[0..1023] of Byte;
constructor Create;
destructor Destroy; override;
procedure doCre... |
using System;
using System.Globalization;
using System.Web.Mvc;
namespace $rootnamespace$.Models.Binds
{
public class DecimalModelBinder : IModelBinder
{
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
ValueProviderResult valueResu... |
unit AnimalsForm;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls,
FMX.Layouts, FMX.Memo, AnimalsClasses, FMX.Media, FMX.Controls.Presentation,
FMX.ScrollBox;
type
TForm1 = class(TForm... |
unit SearchProductByParamValuesQuery;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, BaseQuery, FireDAC.Stan.Intf,
FireDAC.Stan.Option, FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS,
FireDAC.Phys.Intf... |
unit JWT.RS;
interface
uses System.SysUtils, JWT, ipcrsa, ipctypes;
type
TJWTSigner_RSA = class abstract(TInterfacedObject, IJWTSigner)
private
FCipher: TipcRSA;
protected
class function HashAlgorithm: TipcrsaHashAlgorithms; virtual; abstract;
class function UsePSS: Boolean; virtual; abstract;
... |
unit BrickCamp.Repositories.TEmployee;
interface
uses
System.JSON,
Spring.Container.Injection,
Spring.Container.Common,
BrickCamp.IDB,
BrickCamp.Model.TEmployee,
BrickCamp.Repositories.IEmployee;
type
TEmployeeRepository = class(TInterfacedObject, IEmployeeRepository)
protected
[Inject]
FDb: IBrick... |
unit Security.User.Interfaces;
interface
Type
TUserNotifyEvent = procedure(aID: Int64; aName: String; aEmail: String; aActive: Boolean; aPassword: String; aUserID: Integer; aIsUser: Boolean; var aError: string; var aChanged: Boolean) of Object;
TResultNotifyEvent = procedure(const aResult: Boolean = false) of Obj... |
unit TestThread.Trim.Helper.Partition;
{
Delphi DUnit Test Case
----------------------
This unit contains a skeleton test case class generated by the Test Case Wizard.
Modify the generated code to correctly setup and call the methods from the unit
being tested.
}
interface
uses
TestFramework, OS.Proces... |
{*******************************************************}
{ }
{ Delphi FireDAC Framework }
{ }
{ Copyright(c) 2004-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
{ Module of routines that deal with showing a message to the user and
* getting his response.
}
module gui_message;
define gui_message;
define gui_message_str;
define gui_message_msg;
define gui_message_msg_stat;
%include 'gui2.ins.pas';
type
butt_t = record {data about one user-selectable b... |
unit ltr35api;
interface
uses SysUtils, ltrapitypes, ltrapidefine, ltrapi;
const
// Размер строки с именем модуля в структуре #TINFO_LTR35
LTR35_NAME_SIZE = 8;
// Размер строки с серийным номером модуля в структуре #TINFO_LTR35
LTR35_SERIAL_SIZE = 16;
// Количество каналов ЦАП
LTR35_D... |
unit uConfig;
interface
uses
Vcl.Forms,System.SysUtils;
const
WORK_DIR:string='pp'; // 工作目录
WEB_DIR:string='web'; // 保存网页的子目录名
WEB_CACHE='cache';
DATA_DIR:string='data'; // 保存数据的目录
APP_DIR:string='app'; // app的目录
XML_FILE:string='config.xml';//xml配置参数文件
XML_FILE_G:string='configg.xml';//xml配置参数文件
BAI... |
{*******************************************************}
{ }
{ Delphi DBX Framework }
{ }
{ Copyright(c) 1995-2011 Embarcadero Technologies, Inc. }
{ ... |
unit MD.Model.Client;
interface
type TClient = class
private
Fid: Integer;
Fname: String;
FlastName: string;
Fphone: String;
public
property id: Integer read Fid write Fid;
property name: String read Fname write Fname;
property lastName: string read FlastName write FlastName;
prop... |
{******************************************}
{ }
{ vtk GridReport library }
{ }
{ Copyright (c) 2003 by vtkTools }
{ }
{******************************************}
{ Co... |
unit uExceptions;
interface
uses SysUtils, uExceptionCodes;
type
TException = class(Exception)
end;
TFatalException = class(TException)
end;
procedure RaiseExeption(const aCode: integer);
procedure RaiseFatalException(const aCode: integer);
procedure ContractFailure;
procedure Warn(cons... |
// -------------------------------------------------------------------------------
// Descrição: Um programa em Pascal que calcule a média aritmética de 4 valores
// inteiros
// -------------------------------------------------------------------------------
//Autor : Fernando Gomes
//Data : 19/08/2021
// ---------... |
{
Copyright (C) Alexey Torgashin, uvviewsoft.com
License: MPL 2.0 or LGPL
}
unit ATSynEdit_Cmp_Filenames;
{$mode objfpc}{$H+}
interface
uses
SysUtils,
FileUtil,
Classes,
URIParser,
ATStringProc;
procedure CalculateCompletionFilenames(AResult: TStringList;
const ACurDir, AText, AFileMask,
APrefixDir, A... |
unit Options;
interface
uses
Strg, Disk,
Windows, SysUtils, Classes, Dialogs;
type
TScreenSource = (ssRegion, ssFull, ssWindow);
TScreenOption = record
strict private
FScreenSource : TScreenSource;
FLeft, FTop, FWidth, FHeight : integer;
FTargetWindow : integer;
function GetLeft: integer;
... |
unit UOrdemServico;
interface
uses SysUtils, Classes, UCliente, UUsuario, UCondicaoPagamento, UProdutoOS,
UParcelas;
type OrdemServico = class
private
protected
NumOS : Integer;
umCliente : Cliente;
umUsuario : Usuario;
umaCondicaoPgto : CondicaoPagamen... |
{***********************************************************************
Unit gfx_crypt.PAS v1.2 0801
(c) by Andreas Moser, amoser@amoser.de,
Delphi version : Delphi 4
gfx_crypt is part of the gfx_library collection
You may use this sourcecode for your freewareproducts.
You may modify th... |
{
************************************************************************************************************************
SpiderPage: Contains TSpiderPage component which used to link external HTML files, and use Tag for dynamic contents
Author: Motaz Abdel Azeem
email: motaz@code.sd
Home page:... |
//2006-11-17 ZswangY37 No.1 修改 鼠标点击的时候没有触发OnSelectionChange事件
//2007-01-02 ZswangY37 No.1 完善 处理没有MouseDown的MouseMove事件(双击文件对话框的时候会出现)
unit LovelyHex20;
interface
uses
Windows, Messages, SysUtils, Classes, Controls, Graphics, Forms;
type
TWMImeChar = packed record
Msg: Cardinal;
case Integer... |
unit HIScore;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, FireDAC.Stan.Intf, FireDAC.Stan.Option,
FireDAC.Stan.Error, FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def,
FireDAC.Stan.Pool, FireDAC.Stan.... |
unit iaExample.ProducerThread;
interface
uses
System.Classes,
System.Generics.Collections;
type
TProducerState = (ProducerWorking,
ProducerDone,
ProducerAbortedWithException);
TExampleLinkedProducerThread = class(TThread)
private
fTaskQueue:TThreade... |
unit DatesForm;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls,
FMX.Layouts, FMX.Memo, FMX.Controls.Presentation, FMX.ScrollBox;
type
TForm1 = class(TForm)
Memo1: TMemo;
Button1... |
{*******************************************************}
{ }
{ Borland Delphi Test Server }
{ }
{ Copyright (c) 2001 Borland Software Corporation }
{ ... |
unit MTLogger;
interface
uses
Windows, SysUtils, Classes, SyncObjs, MTUtils;
type
TLoggerThread = class(TThread)
private
FLogFileName: string;
Event: TEvent;
CritSect: TCriticalSection; // Для защиты списка строк
LogStrings: TStringList;
protected
procedure Execute; override;
public
... |
unit F2C;
interface
function FF2C(Fahrenheit:Double):Double;stdcall;export;
implementation
function FF2C(Fahrenheit:Double):Double;stdcall;
begin
Result:=(Fahrenheit-32)*(5/9);
end;
{ exports
FF2C; }
end.
|
(**********************************************************************************)
(* Code generated with NexusDB Enterprise Manager Data Dictionary Code Generator *)
(* 2020-12-31 16:36:38 *)
(* ... |
(**********************************************************************************)
(* Code generated with NexusDB Enterprise Manager Data Dictionary Code Generator *)
(* *)
(* Version: 3,0401 ... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2019 The Bitcoin Core developers
// Copyright (c) 2020-2020 Skybuck Flying
// Copyright (c) 2020-2020 The Delphicoin Developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-... |
unit FrameRegisterUser;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, StdCtrls, ExtCtrls, ExtDlgs, DataBases, Dialogs;
const
FRAME_LOGIN = 1;
type
{ TFrameRegisterUser }
TFrameRegisterUser = class(TFrame)
Bevel: TBevel;
ButtonRegister: TButton;
ButtonAvatar:... |
{
Oracle Deploy System ver.1.0 (ORDESY)
by Volodymyr Sedler aka scribe
2016
Desc: wrap/deploy/save objects of oracle database.
No warranty of using this program.
Just Free.
With bugs, suggestions please write to justscribe@yahoo.com
On Github: github.com/justscribe/ORDESY
Dialog to show the list of all schemes with ... |
unit uClassMessageDTO;
interface
uses
REST.Json.Types;
{$M+}
type
TChatDTO = class
private
FFirst_Name: string;
FId: Integer;
FLast_Name: string;
FType: string;
FUsername: string;
published
property First_Name: string read FFirst_Name write FFirst_Name;
property Id: Integer read ... |
unit vr_fpclasses;
{$mode delphi}{$H+}
{$I vrode.inc}
interface
uses
Classes, SysUtils, RtlConsts, vr_SysUtils, Types;
type
{ TvrThreadListHelper }
TvrThreadListHelper = class helper for TThreadList
public
procedure Insert(const AIndex: Integer; AItem: Pointer);
function IndexOf(con... |
unit eSocial.Models.Components.Connections.DBExpress;
interface
uses
System.SysUtils,
System.Classes,
Data.DB,
SimpleDS,
Data.DBXFirebird,
Data.SqlExpr,
Data.FMTBcd,
Datasnap.Provider,
Datasnap.DBClient,
eSocial.Models.Components.Connections.Interfaces;
type
TModelComponentConn... |
unit Main;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls,
FMXTee.Engine, FMXTee.Procs, FMXTee.Chart, FMX.TabControl, FMX.Edit,
{$IFDEF ANDROID}
AndroidApi.Helpers, FMX.Platform.Andro... |
{*******************************************************}
{ }
{ Delphi DBX Framework }
{ }
{ Copyright(c) 1995-2011 Embarcadero Technologies, Inc. }
{ ... |
UNIT TurtleGr;
{ turtle routines }
{$N+}
interface
TYPE
{ ================================================================== }
TurtleRec = RECORD
{ Don't touch these things }
{ The Procedures handle everything }
X,
Y : SINGLE;
StepSize,
Theta : SINGLE;
Draw : BOOLEAN;
E... |
{*******************************************************}
{ }
{ Borland Delphi Visual Component Library }
{ SOAP Support }
{ }
{ Copyright (c) 2001 Borland S... |
unit LCLIntF;
{
LLCL - FPC/Lazarus Light LCL
based upon
LVCL - Very LIGHT VCL
----------------------------
This file is a part of the Light LCL (LLCL).
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not... |
unit Amazon.Marshaller;
interface
uses System.Rtti, System.TypInfo, System.Classes, System.StrUtils,
System.SysUtils,
Amazon.Utils, Amazon.Interfaces, Generics.Collections;
type
TAmazonMarshallerAttribute = class(TCustomAttribute)
private
fsTagName: string;
public
constructor Create(const aTagName:... |
unit rOptions;
interface
uses SysUtils, Classes, ORNet, ORFn, uCore, rCore, rTIU, rConsults;
procedure rpcGetNotifications(aResults: TStrings);
procedure rpcGetOrderChecks(aResults: TStrings);
function rpcGetNotificationDefaults: String;
function rpcGetSurrogateInfo: String;
procedure rpcCheckSurrogate(surrogate: In... |
{*******************************************************}
{ }
{ Delphi DBX Framework }
{ }
{ Copyright(c) 1995-2011 Embarcadero Technologies, Inc. }
{ ... |
//
// Created by the DataSnap proxy generator.
// 2016-01-26 ¿ÀÈÄ 1:34:54
//
unit ServerMethods;
interface
uses System.JSON, Data.DBXCommon, Data.DBXClient, Data.DBXDataSnap, Data.DBXJSON, Datasnap.DSProxy, System.Classes, System.SysUtils, Data.DB, Data.SqlExpr, Data.DBXDBReaders, Data.DBXCDSReaders, Data.DBXJSONRef... |
program gitrev;
uses
Classes, SysUtils, uGetOpt, getopts, uGitCalls, strutils, dateutils;
const
OptionsLong: array[1..7] of TOption = (
(Name: 'help'; Has_Arg: No_Argument; Flag: nil; Value: 'h'),
(Name: 'path'; Has_Arg: No_Argument; Flag: nil; Value: #0),
(Name: 'format'; Has_Arg: Required_Argument; ... |
{ ***************************************************************************
Copyright (c) 2016-2020 Kike Pérez
Unit : Quick.Core.Mvc.Extensions.Entity.Rest
Description : Core MVC Extensions TaskControl
Author : Kike Pérez
Version : 1.0
Created : 12/03/2020
Modified : 09/06/2020
... |
unit MgCanvas;
interface
uses
Windows, Classes, Controls, MgScene, MgBackend;
type
TMgCanvas = class(TCustomControl)
private
FScene: TMgScene;
FBackEnd: TMgBackend;
protected
procedure Paint; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override... |
unit Estoque;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, cxGraphics, cxLookAndFeels,
cxLookAndFeelPainters, Vcl.Menus, dxSkinsCore, dxSkinBlack, dxSkinBlue,
dxSkinBlueprint, dxSkinCaramel, dxSkinCoffee, ... |
unit uFileSystemCreateDirectoryOperation;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
uFileSourceCreateDirectoryOperation,
uFileSource, uFileSystemFileSource;
type
TFileSystemCreateDirectoryOperation = class(TFileSourceCreateDirectoryOperation)
private
FFileSystemFileSource: ... |
unit ksVirtualListViewTest;
interface
uses
DUnitX.TestFramework,
ksTypes,
ksCommon,
ksVirtualListView;
type
[TestFixture]
TksVirtualListViewTest = class(TObject)
private
FListView: TksVirtualListView;
FEventFired: Boolean;
procedure Add100Items;
public
[Setup]
procedure Setup;
... |
{*******************************************************}
{ }
{ CodeGear Delphi Runtime Library }
{ }
{ Copyright(c) 1995-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
unit Winapi.Svc;
{$MINENUMSIZE 4}
interface
uses
Winapi.WinNt;
const
// 88
SERVICE_NO_CHANGE = Cardinal(-1);
// 138
SERVICE_ACCEPT_STOP = $00000001;
SERVICE_ACCEPT_PAUSE_CONTINUE = $00000002;
SERVICE_ACCEPT_SHUTDOWN = $00000004;
SERVICE_ACCEPT_PARAMCHANGE = $00000008;
SERVICE_ACCEPT_NETBINDCHANGE... |
{
AD.A.P.T. Library
Copyright (C) 2014-2018, Simon J Stuart, All Rights Reserved
Original Source Location: https://github.com/LaKraven/ADAPT
Subject to original License: https://github.com/LaKraven/ADAPT/blob/master/LICENSE.md
}
unit ADAPT.EventEngine.Intf;
{$I ADAPT.inc}
interface
uses
{$IFDEF ADAPT_USE_... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.