text stringlengths 14 6.51M |
|---|
unit uTesselate;
//
// De methode van deze webpagina is gebruikt:
// http://www.cs.toronto.edu/~heap/Courses/270F02/A4/chains/node2.html
//
interface
uses u3DTypes, uCalc;
type
TPolygonObj = class(TObject)
private
Poly: TPolygon; // n vertices
Cost: array of array of single; // Cost... |
unit uFrmInput;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, Menus, Buttons;
type
TfrmInput = class(TFrame)
meInput: TMemo;
Panel1: TPanel;
pmHistory: TPopupMenu;
miHistLast: TMenuItem;
sbHistory: TSpeedButton;
m... |
unit propertyarray;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, fields, baseproperty, IniFiles, Variants;
type
TPropertyArray = class(TObject)
protected
properties : array of TProperty;
protected
function getField(Index : TFields) : TProperty;
function getValue(Index : TFiel... |
{
Vst Plugins need a way to save and load their state to and from various places.
The state data can be in various formats. Typically my plugins will save their state
as XML but I've used other formats in the past. Sometimes my plugins will import
'patches' from other products which can potentially be in an... |
unit eeLayoutControl;
interface
uses
TypInfo, NativeXML, Classes, Controls, Contnrs,
vg_scene;
type
TLayOutData = class
private
protected
Data : TNativeXML;
cld : TXmlNode;
public
constructor Create;
destructor Destroy; override;
procedure Clear;
procedure Lo... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.7.2.4-2, FILE=CONF157, CLAS... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.4.3.4-1, FILE=CONF063, CLAS... |
{
MIT License
Copyright (c) 2017 Jamie Geddes
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 Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, di... |
{ Unit uinterpolation : Interpolation Unit
Created by : Alex Vergara Gil
Contains the routines for interpolation and resizes of vector,
matrixes and 3DMatrixes; also contains inrange and ensurerange methods
Conventions:
y 3______4 the 2D convention
| | |
| | |
--... |
unit dtmInventory;
interface
uses
SysUtils, Classes, DB, ADODB, cxStyles, cxCustomData, Dialogs, cxGraphics,
cxFilter, cxData, cxDataStorage, cxEdit, cxDBData, cxDBExtLookupComboBox,
cxMemo, cxNavigator, cxGridCustomTableView, cxGridTableView, cxGridDBTableView,
cxClasses, cxControls, cxGridCustomView... |
unit InWindowDialog.MessageDialog;
interface
uses
Classes, Graphics,
InWindowDialog.Prototypes;
type
TMessageDialog = class(TPluginDialog)
private
fText: string;
fColorBorder: TColor;
protected
function CreateDialogForm(AOwner: TComponent) : TPluginDialogForm; override;
procedure EventHand... |
{ *********************************************************************** }
{ }
{ ParseValidator }
{ }
{ Copyright (c) ... |
unit LucidityGui.Scope.SignalRecorder;
interface
uses
Types,
RedFoxColor,
RedFoxImageBuffer,
VamLib.MoreTypes;
type
IScopeSignalRecorder = interface
['{A01F1BD5-F4DD-48A2-A466-5AD7C9195647}']
procedure GetReadPointer(out WriteIndex, BufferSize : integer; out Buffer : PArrayOfSingle);
end;
TSig... |
unit Bridge.model.interf;
interface
type
TVenda = record
COO: Integer;
Itens: Integer;
Total: Currency;
end;
IExport<t> = interface;
ISource<t> = interface
['{9902CD31-5606-406F-9E37-05F23552710C}']
function Exportar(AValue: IExport<t>): ISource<t>;
end;
IExport<t> = interface
[... |
unit LLVM.Imports.Disassembler;
interface
//based on Disassembler.h
uses
LLVM.Imports,
LLVM.Imports.Types;
type
TLLVMDisasmContextRef = type TLLVMRef;
TLLVMOpInfoCallback = function(DisInfo: Pointer; PC: UInt64; Offset: UInt64; Size: UInt64; TagType: Integer; TagBuf: Pointer): LongBool; cdecl;
TLLVMOpIn... |
unit parser;
interface
uses Classes, SysUtils;
type
TToken = (tkWindowCreate, tkWindowSetTitle,
tkIntCreate, tkIntAdd, tkIntSet,
tkBtnCreate, tkBtnSetParent, tkBtnSetText, tkBtnSetOnClick,
tkStrCreate, tkStrConcat,
tkConvertIntStr,
tkAppRun,
t... |
unit MainForm;
interface
uses
LMessages, SysUtils, Variants, Classes, Graphics,
Controls, Forms, Dialogs, ComCtrls, StdCtrls, Buttons, StrUtils,
ExtCtrls, Math, Spin, IniFiles,process, TAGraph, TASeries, TATools,
Menus, types;
type
{ TfMain }
TfMain = class(TForm)
Chart1: TChart;
... |
unit Udictionary;
interface
uses
System.Generics.Collections, uGlobal, FireDAC.Comp.Client, System.SysUtils,
uJsonUtils, cxDropDownEdit, cxComboboxExt, System.Classes, uRequestItf,
usetup, StrUtils,
uEntity;
type
Tdic = record
dm: string;
mc: string;
end;
type
TLZDictionary = class
private
... |
PROGRAM HelloWorld(INPUT, OUNPUT);
BEGIN
WRITELN('HelloWorld')
END. |
PROGRAM FractionMath (input, output);
uses crt;
{Erick Nave
9:00 ICS 3-9-93
pg 124, prob. 28
FractionMath (Fraction.pas) asks the user to input an equation involving
fractions. The equation is then reduced.Then, through a course of decision
statements, the proper answer is calculated according to the operat... |
unit UCL.Panel;
interface
uses
SysUtils,
Classes,
Windows,
Messages,
Controls,
ExtCtrls,
Graphics,
UCL.Classes,
UCL.Colors,
UCL.Utils,
UCL.SystemSettings;
type
TUPanel = class(TUCustomPanel)
private
FBackColor: TUThemeControlColorSet;
procedure SetBackColor(Va... |
unit StringProperties;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Spin;
type
TStrPropForm = class(TForm)
GroupBox: TGroupBox;
eRetry: TCheckBox;
eRName: TEdit;
LabelName: TLabel;
eRIndex: TSpinEdit;
LabelIndex: TLabel;
... |
unit AQController;
interface
uses
MVCFramework, MVCFramework.Commons, AQModel, ActiveQueueEntry, ObjectsMappers,
System.Generics.Collections, Consumer, AQConfig, System.JSON, Client,
RequestSaverFactory, RepositoryConfig;
type
[MVCPath('/')]
TController = class(TMVCController)
strict private
const
... |
unit FarScape.Assistant.ControlNamePath;
interface
type
// Name paths are used to locate named controls.
// Valid name path examples:
// Panel
// Panel.Knob
// Panel.Knob.Label
ControlNamePath = record
private
public
// check if a string is a valid name path.
class function IsValidNamePa... |
program test_householder;
{ programme de test pour la routine householder de matcarre.pas }
uses matcarre;
procedure ortho_test(var Q:matrice);
var
i,j,k:word;
x,y:real;
begin
y:=0;
for k:=1 to dim do
begin
x:=0.0;
for j:=1 to dim do
x:=x+sqr(Q[j,k]);
if abs(x-1)>y then y:=abs(x-1);
end... |
unit LLVM.Imports.ObjectFile;
interface
//based on Object.h
uses
LLVM.Imports,
LLVM.Imports.Types;
type
TLLVMObjectFileRef = type TLLVMRef;
TLLVMSectionIteratorRef = type TLLVMRef;
TLLVMSymbolIteratorRef = type TLLVMRef;
TLLVMRelocationIteratorRef = type TLLVMRef;
// ObjectFile creation
function LLVMCr... |
{==============================================================================|
| Project : Delphree - Synapse | 002.001.002 |
|==============================================================================|
| Content: SMTP client ... |
program tabliczka_mnozenia;
{
-- Podstawowy kurs Turbo Pascal'a 7.0 --
Copyright(c) by Jan T. Biernat
========================================
Program: Tabliczka Mnozenia
}
uses Crt; {CRT - biblioteka zawiera funkcje i procedury
do obslugi m.in. klawiatury i ekranu.}
procedure KT_... |
unit DVDPlayer;
interface
type
TDVDPlayer = class
procedure DVDOn;
procedure DVDOff;
procedure DVDEject;
procedure DVDPause;
procedure DVDPlay;
procedure DVDStop;
end;
implementation
{ TDVDPlayer }
procedure TDVDPlayer.DVDEject;
begin
Writeln('DVD Ejetado');
end;
procedure TDVDPlayer.... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.1.2-2, FILE=CONF005, CLASS=... |
unit CadMultiModel;
{*************************************************************************}
{* *}
{* Author : Alcindo Schleder *}
{* Copyright: © 2003 by Alcindo Schleder. All rights reserved. ... |
unit Test.Model.TMOV;
interface
uses
Model.ModelBase;
type
TMOV = class(TModelBase)
private
FMODELOECFMD5: string;
FCPFCNPJMD5: string;
FINTEGRADOBONUM: integer;
FCODCCUSTO: string;
FPESOBRUTO: currency;
FVALORDESC: currency;
FVALORFRETE: currency;
FCODRPR: string;
FTBCLOG:... |
{$i AlwaysInclude.inc}
unit NLRTLConsts;
{$T-} //##jpl: tijdelijk totdat we de code hebben opgeschoond
interface
implementation
uses
{$ifdef d7up}
RTLConsts,
{$else}
Consts,
{$endif d7up}
ResourceUtils;
resourcestring
SAssignError = 'Kan een %s niet toekennen aan een %s';
SFCreateErr... |
unit SpeechRecognizeThread;
interface
uses
Classes, FifoStack, Recognizer, Windows, Pipes, IdBaseComponent, IdComponent,
IdTCPConnection, IdTCPClient, SyncObjs, TrayIconType;
type
TSpeechRecognizeThread = class(TFifioStackThread)
private
FTcpClient: TIdTCPClient;
FIconType: TIconType;
FChangeIc... |
unit uComputador;
interface
uses
uICalculo;
type
TComputador = class(TInterfacedObject, ICalcPotencia)
private
FBase : String;
FExpoente : String;
FResult : Double;
procedure SetBase(const Value: String);
procedure SetExpoente(const Value: String);
procedure SetResult(c... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.6.3.7.2-2, FILE=LEV1F25... |
unit SharedStrings;
interface
uses
Classes, IniFiles, IdTCPClient;
const
SampleRate = 44100;
EmptyString = '!!EMPTYSTRING!!';
Error403 = 'error403';
Message403 = 'A TJSONObject must begin with "{" at character 2 of <!DOCTYPE html>';
IniFileName = 'Speech.ini';
ReplaceSpecialsSection = 'ReplaceSpecia... |
{
Plugs of the Commonwealth:
Help speed up the process in creating a new plug.
darkconsole http://darkconsole.tumblr.com
}
Unit
UserScript;
Const
TemplateArma = $800;
TemplateArmo = $801;
TemplateCobj = $802;
///////////////////////////////////////////////////////////////////////////////
//////... |
unit UnitRsc_pt;
interface
uses StdConvs, ConvUtils;
resourcestring
{ ************************************************************************* }
{ Distance's family type }
SDistanceDescription_pt = 'Distância';
{ Distance's various conversion types }
SMicromicronsDescription_pt = 'Micromicron... |
unit AudioPlugin.Functions;
interface
uses
Types;
function CalcNewEditorSize(const InitialRatio : double; const CurrentWidth, CurrentHeight, OffsetX, OffsetY : integer):TSize;
implementation
function CalcNewEditorSize(const InitialRatio : double; const CurrentWidth, CurrentHeight, OffsetX, OffsetY : integer):TSi... |
{
AudioFilePool manges loading and unloading of audio files.
}
unit eeSamplePool;
interface
{$INCLUDE Defines.inc}
uses
SyncObjs, Contnrs, eeCustomSample, eeSampleInt, eeSampleFloat;
type
TSampleClassType = (eeFloat, eeInt);
TSamplePool = class
private
function GetSample(Index: int... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.4.3.5-15, FILE=IMDEFB17... |
unit DXConsts;
interface
resourcestring
SNone = '(None)';
SUnknownError = 'Unknown Error (%d)';
SDirectDraw = 'DirectDraw';
SDirect3DRM = 'Direct3D RetainedMode';
SDirectSound = 'DirectSound';
SDirectSoundCapture = 'DirectSoundCapture';
SDirectDrawClipper = 'Clipper';
SDirectDrawPalette ... |
unit LMCImpressao;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Mask, AdvGlowButton, ExtCtrls,
TFlatPanelUnit, RzEdit, RzDBEdit, RzDBBnEd, DB, ZAbstractRODataset,
ZAbstractDataset, ZDataset, RzBtnEdt, RxToolEdit;
type
TfrmLMCImpress... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.1.7-15, FILE=IMPDEF01, ... |
unit uFMesclarCC;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls;
type
TspResumoClasse = class
private
procedure GerarResumoClasse;
public
sXML: string;
sClasse: string;
sArquivo: string;
slLinhasCodigos: TStringList;
nQtde... |
unit unitCodeSoftSample;
interface
uses classes,sysutils,unitLog,unitCSPrintData;
type
TCodeSoftSample = class(TComponent)
private
protected
{ 處理CODE SOFT是否要顯示的事宜 }
procedure setVisible(f_bVisible : Boolean); virtual;
function m_printData : TCSPrintData;
function getVisible : boolean; virtual... |
unit untPE;
interface
uses
Windows,
Classes;
type
TPEFile = class(TObject)
private
mFile:TMemoryStream;
IDH: TImageDosHeader;
INH: TImageNtHeaders;
ISH: TImageSectionHeader;
dwSizeAll: Cardinal;
procedure CreateImageHeader;
procedure CreateNTHeader;
procedure CreateSectionH... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.4.3.3-15, FILE=IMDEFB14... |
unit NovoAcabamentoOperacao;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, Mask, ToolEdit, CurrEdit;
type
TfmNovoAcabamentoOperacao = class(TForm)
Label1: TLabel;
cbAcabamento: TComboBox;
cmdUpdate: TBitBtn;
cm... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ PRETEST 6.7.2.4-4, FILE=ERR70P... |
{********************************************************************}
{ TAdvPicture component }
{ for Delphi 4.0,5.0,6.0,7.0 & C++Builder 4,5,6 }
{ version 1.2 }
{ ... |
unit ueditform;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, sqldb, db, FileUtil, DBGrids, Forms, Controls, Graphics, Dialogs,
StdCtrls, ExtCtrls, DbCtrls, metadata, querycreate, Grids;
type
{ TDBEditor }
TDBEditor = class
EPanel: TPanel;
ELabel: TLabel;
EDBEdit: TEdit;
CurrentCap... |
unit CsvParser;
interface
uses
System.Classes;
type
TCsvParser = class; // Forward declaration
TCsvParserStateClass = class of TCsvParserState;
TCsvParserState = class
private
FParser: TCsvParser;
procedure ChangeState(ANewState: TCsvParserStateClass);
procedure AddCharToCurrF... |
{ *******************************************************************************
Copyright (c) 2004-2010 by Edyard Tolmachev
IMadering project
http://imadering.com
ICQ: 118648
E-mail: imadering@mail.ru
******************************************************************************* }
unit ContactS... |
unit FileManager.Providers.Frames.Pasta;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, dxGDIPlusClasses,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, FileManager.Providers.Frames.Base, Vcl.ExtCtrls, Vcl.StdCtrls, Data.DB, System.UITypes,
System.JSON, Fi... |
// Language Bath - Assign Timings
// Copyright (c) 2020 Barend Gehrels, Amsterdam, the Netherlands.
// Use, modification and distribution is subject to the MIT License
// https://raw.githubusercontent.com/barendgehrels/langbath/main/LICENSE
// Code in this unit writes the contents of a listview into a file
unit lb_wr... |
unit FMX.FacebookLogin;
interface
uses
System.SysUtils, System.Classes, FMX.WebBrowser,
System.Net.HttpClientComponent, System.JSON;
type
TFacebookLoginUser = class
private
FName: string;
FPicture: TStream;
FId: string;
published
property Id: string read FId;
property Name: string read ... |
Program TrabajoPractico;
uses
CRT,DOS;
const
MAXPASILLO = 9;
MAXCOLUMNA = 20;
MAXESTANTE = 5;
type
t_NumSerie = 0..9999; {El valor cero significa que el lugar está vacío}
t_Datos = 1..9999;
t_Columna = 1..20;
t_Pasillo = 1..9;
t_Estante = 1..5;
t_Ca... |
{*******************************************************************************
Title: iTEC-SOFTWARE
Description: VO relational the table [PREVENDA_ITEM_IMPRIMIR]
The MIT Lice... |
{==============================================================================|
| Project : Delphree - Synapse | 001.001.000 |
|==============================================================================|
| Content: Coding and decoding support ... |
unit TypeCheck;
{$i Compiler.inc}
interface
uses Symbols,Tree,Error;
type TCompareParametersType=(tcptNONE,tcptVALUEEQUALCONST,tcptALL,tcptPROCVAR);
TCompareParametersOption=(tcpoALLOWDEFAULTS,tcpoIGNOREHIDDEN,tcpoALLOWCONVERT,tcpoCOMPAREDEFAULTVALUE);
TCompareParametersOptions=set of TComparePara... |
unit uThiDB;
{*****************************************************************************************
全称: UniDac数据库连接单元
产品名称:
编写:周斌,2016年12月1日,
版权:
开发环境:Borland 2006
描述:
*****************************************************************************************}
interface
uses
CUni, Uni, DB, DBAcce... |
unit Dao.Conection.Zeos;
interface
uses
Dao.IConection,
System.Rtti,
System.Classes,
System.SysUtils,
Data.DB,
Dao.Conection.Parametros,
Exceptions, Database.SGDB,
System.Generics.Collections,
System.Variants,
ZAbstractConnection, ZConnection,
ZAbstractRODataset, ZAbstractDataset, ZDataset;
ty... |
unit RESTRequest4D.Request.Intf;
interface
uses Data.DB, REST.Client, RESTRequest4D.Request.Body.Intf, RESTRequest4D.Request.Params.Intf, REST.Types,
RESTRequest4D.Request.Authentication.Intf;
type
/// <summary>
/// Interface to represent a request to a given server.
/// </summary>
IRequest = interface
... |
unit MovimientosDM;
interface
uses
System.SysUtils, System.Classes, _StandarDMod, System.Actions, Vcl.ActnList,
Data.DB, Data.Win.ADODB, Vcl.Dialogs, System.UITypes;
resourcestring
strFinishMovimientos = 'El proceso de dispersión ha terminado.';
strDeleteMovimientos = '¿Deseas eliminar movimiento... |
{
* Delphi DUnit Test Case for PJMD5.pas
* ------------------------------------
* This unit contains a test case class for the TPJMD5 class and the
* TPJMD5Digest record in PJMD5.pas.
*
* The MD5 algorithm is tested against all seven test cases from RFC 1321 plus
* some others.
*
* The expected results were o... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.4.4-3, FILE=DEV088, CLA... |
unit uFrmMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, uTFile, strutils, uSharedGlobals, IOUtils, System.Generics.Collections;
type
TProto = record
// DLL: string[16];
// ReturnType: string[16];
// FunctionName: string[64];
// Par... |
unit FarScape.InvalidateBuffer;
interface
uses
Types,
ExtCtrls;
type
TInvalidateRegionEvent = procedure(Region : TRect) of object;
TInvalidateBuffer = class
private
Buffer : array of TRect;
BufferSize : integer;
FOnInvalidateRegion: TInvalidateRegionEvent;
InvalidateTimer : TTimer;
Re... |
{**************************************************************************************************}
{ }
{ Project JEDI Code Library (JCL) }
{ ... |
unit config.base;
{$mode delphi}
interface
uses
Classes,
SysUtils,
config.types;
type
{ TConfigImpl }
(*
base class for IConfig
*)
TConfigImpl = class(TInterfacedObject, IConfig)
strict private
strict protected
function DoToString : String; virtual; abstract;
function DoFromString(Con... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.8.1-1, FILE=DEV190, CLA... |
unit CadParam;
{*************************************************************************}
{* *}
{* Author: Alcindo Schleder *}
{* Copyright: © 2003 by Alcindo Schleder. All rights reserved. ... |
unit unitTreeView;
interface
uses ComCtrls,sysutils,classes;
procedure G_addTreeData(f_target:TTreeView;f_tsData:tstrings;f_iCol :integer); overload;
procedure G_addTreeData(f_targetData,f_targetIndex:TTreeView;f_tsData,f_tsIndex:tstrings;f_iCol :integer); overload;
implementation
//同時傳入index和data的資料來新增tree的資料... |
unit F13;
interface
uses bentukan;
procedure lihatInventori(var arrMentah : tabiMentah; arrOlah : tabiOlah);
{
I.S.: arrmentah, arrolah terdefinisi
F.S.: menampilkan data daftar bahan mentah dan bahan olahan yang tersedia di inventori saat ini. Daftar bahan mentah dan daftar bahan olahan ditampilkan t... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.8.1-4, FILE=DEV193, CLA... |
// Marcello Mello
// 28/09/2019
unit sslang.AstPrinter;
interface
uses
sslang.ast,
sslang.types;
type
TAstPrinter = class(TInterfacedObject, IVisitor)
public
function Visit(BinaryExpression: TBinaryExpression): TLangValue; overload;
function Visit(GroupingExpression: TGroupingExpression): TLangValu... |
unit FloorLevelledGrounds;
interface
uses
Types, SysUtils, Classes, TypInfo, Graphics, Contnrs, Controls,
Dialogs, ScUtils, SdDialogs, GR32, FunLabyUtils, FunLabyCoreConsts,
FunLabyToolsConsts, Generics, GraphicsTools, MapTools, FLBFields,
FLBCommon, ViewRestriction;
resourcestring
SCategoryLeve... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.10-11, FILE=CONF212, CLASS=... |
{***********************************************************************}
{ TAdvSmoothCalculatorDropDown component }
{ for Delphi & C++ Builder }
{ }
{ written by : ... |
unit SimpleEntity;
interface
uses
{$IFNDEF CONSOLE}
{$IFDEF FMX}
FMX.Forms,
{$ELSE}
Vcl.Forms,
{$ENDIF}
{$ENDIF}
Data.DB, System.Generics.Collections, System.SysUtils;
type
TSimpleEntity = class
public
{$IFNDEF CONSOLE}
function Parse(const aForm: TForm): TSimpleEntity; over... |
unit Menu.AutoSelectMenu;
interface
uses
Classes,
Menu.CustomPopupMenu;
type
TAutoSelectMenu = class(TCustomPopupMenu)
private
procedure HandleEvent_AutoOnOff(Sender : TObject);
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure Popup(const x, ... |
unit udmSQLiteSales;
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.ExprFuncs,
Fir... |
unit CadParams;
{*************************************************************************}
{* *}
{* Author : Alcindo Schleder *}
{* Copyright: © 2003 by Alcindo Schleder. All rights reserved. ... |
program Minimum (input, output);
const
FIELDSIZE = 5;
type
tIndex = 1..5;
tfield = array[tIndex] of integer;
var
field : tfield;
i : tindex;
min : integer;
position : tindex;
begin
writeln('enter', FIELDSIZE, 'values: ');
for i := 1 to 5 do
readln(field[i]);
min := field[1];
position := 1;
for i :... |
unit MainView;
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.ScrollBox, FMX.Memo, FMX.Controls.Presentation, FMX.Edit,
Itens.Model.Interf, Itens.Controller;
type
TForm1 = clas... |
unit CadVei;
{*************************************************************************}
{* *}
{* Author : Alcindo Schleder *}
{* Copyright: © 2003 by Alcindo Schleder. All rights reserved. ... |
unit MainUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, RegExpr;
type
TValue = Record
local : boolean;
nameValue : string;
count : integer;
end;
TGlobal = class(TForm)
MemoCode: TMemo;
ButtonLoadFromFileCode: TButton... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.6.3.1-3, FILE=CONF102, CLAS... |
unit frmToolTip;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls, uConst, uQuery,
scGPExtControls, scControls, scGPControls, Vcl.ComCtrls, Data.DB, DBAccess,
Uni, MemDS;
type
TPa... |
unit LPTControllerSetPortStatusRequestHandler;
interface
uses
Winsock, Classes, SysUtils, Log4D,
LPTControllerRequestHandler, LPTControllerRequestHandlerBag;
type
TLPTControllerSetPortStatusRequestHandler = class (TInterfacedObject, ILPTControllerRequestHandler)
protected
class function Log: T... |
unit Lucidity.GuiState;
interface
{$INCLUDE Defines.inc}
uses
//LucidityGui.KnobHandler,
//LucidityGui.MenuButtonHandler,
uConstants, Lucidity.Enums, Classes, Controls,
eeTypes;
type
TGuiState = class
private
fLowerTabState: TLowerTabOptions;
fMouseOverRegionID: TGUID;
fCurrentModDestTarget:... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.4.3.4-3, FILE=DEV081, C... |
unit GUIUpdater;
interface
uses
Windows, Winsock, Classes, SysUtils, ExtCtrls,
LPTControlerClient;
type
TUpdateGUIEvent = procedure (Sender: TObject; Value: Byte) of object;
TGUIUpdater = class (TObject)
private
FClient: TLPTControlerClient;
FTimer: TTimer;
FOnUpdateGUI: TUpdate... |
{*************************************************************************}
{ TMS TAdvDropDown component }
{ for Delphi & C++Builder }
{ version 1.0 }
{ ... |
unit InstruccionesPeriodosDM;
interface
uses
System.SysUtils, System.Classes, _StandarDMod, System.Actions, Vcl.ActnList,
Data.DB, Data.Win.ADODB, Vcl.Dialogs, System.UITypes;
resourcestring
StrSelectInfo = 'Todas estas instruciones se encontraron en el periodo actual ¿Desea procesarlas?';
type
... |
{ Pascal Validation Suite Version 5.7 }
{ }
{ (C) Copyright 1982, British Standards Institution }
{ }
{ TEST 6.6.3.1-11, FILE=DEV126, ... |
unit Oz.Pb.Protoc;
// Protocol buffer code generator, for Delphi
// Copyright (c) 2020 Tomsk, Marat Shaimardanov
interface
uses
System.Classes, System.SysUtils, System.IOUtils,
Oz.Cocor.Lib, Oz.Pb.Options, Oz.Pb.Scanner, Oz.Pb.Parser, Oz.Pb.Tab, Oz.Pb.Gen;
procedure Run;
implementation
procedure Run;
var
opt... |
unit WatchTower.DataDirCollection;
interface
uses
Classes;
type
PDataDirInfo = ^TDataDirInfo;
TDataDirInfo = record
DataDir : string;
end;
PDataDirCollection = ^TDataDirCollection;
TDataDirCollection = class
private
function GetCount: integer;
protected
fList : TList;
procedure Clear... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.