text stringlengths 14 6.51M |
|---|
{***********UNITE*************************************************
Auteur ...... : JL
Créé le ...... : 01/10/2002
Modifié le ... : / /
Description .. : Source TOF de la FICHE : PGRECUPBUDGETPREV ()
Mots clefs ... : TOF;PGRECUPBUDGETPREV
*****************************************************************}
Unit UTofPGR... |
unit MatrixWriterUnit;
interface
uses sysutils, AnePIE, ANECB, ParamArrayUnit, OptionsUnit;
procedure InitializeMatrix(const refPtX : ANE_DOUBLE_PTR;
const refPtY : ANE_DOUBLE_PTR; numParams : ANE_INT16;
const parameters : ANE_PTR_PTR; funHandle : ANE_PTR; reply : ANE_PTR); cdecl;
procedure WriteRealMatrix(cons... |
UNIT ModStack;
INTERFACE
USES ModVector;
TYPE
CardinalStack = ^StackObj;
StackObj = OBJECT
CONSTRUCTOR Init;
DESTRUCTOR Done; VIRTUAL;
FUNCTION IsEmpty: BOOLEAN;
PROCEDURE Push(value: INTEGER);
FUNCTION Pop: INTEGER;
PROCEDURE Write;
PRIVATE
elements: Vec... |
unit MFPrescribedHead;
interface
{MFPrescribedHead defines the "Prescribed Head Unit[i]" layer
and the associated parameter.}
uses SysUtils, ANE_LayerUnit, MFGenParam;
type
TPrescribedHeadParam = class(TCustomParentUnitParameter)
class Function ANE_ParamName : string ; override;
function Value : string; ... |
unit NamedStringLists;
interface
uses
Classes, SysUtils, AnePIE;
procedure GListFreeNamedStringLists(const refPtX: ANE_DOUBLE_PTR;
const refPtY: ANE_DOUBLE_PTR;
numParams: ANE_INT16;
const parameters: ANE_PTR_PTR;
myHandle: ANE_PTR;
reply: ANE_PTR); cdecl;
procedure GPIEAddToNamedStringListMMFun(const r... |
unit unConsultas;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics,
Controls, Forms, Dialogs, ExtCtrls, StdCtrls, Buttons,
Provider, DBClient, DB, SqlExpr,
FMTBcd;
type
TfrmConsultas = class(TForm)
PnTitulo: TPanel;
PnConsulta: TPanel;
PnDados: TPanel;
PnAcoes: TPane... |
{-----------------------------------------------------------------------------
Unit Name: PumpInfo
Author: Gary Whetton
Date: 4/13/2004 4:18:47 PM
Revisions: Build Number Date Author
-----------------------------------------------------------------------------}
unit PumpInfo;
interface
uses
Wind... |
unit fNoteCPFields;
{------------------------------------------------------------------------------
Update History
2016-03-03: NSR#20110606 (Similar Provider/Cosigner names)
-------------------------------------------------------------------------------}
interface
uses
Windows, Messages, SysUtils, Classes, Grap... |
unit DW.EXIF.Android;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library }
... |
unit NanoedutoMDTFileExport;
interface
uses MDTStrct,BaseTypes,SysUtils,DateUtils,Classes;
type
PData = ^smallint;
MDFileExport = class (TObject)
private
//LastGUID : TGUID;
title : f_title;
Nom : Integer;
public
x0, xr, y0, yr, z0, zr : Single;
xUnit, yUnit, zUnit : Smallint;
Name : string;
cons... |
{-----------------------------------------------------------------------------
Unit Name: PumpOnOf
Author: Gary Whetton
Date: 4/13/2004 4:19:25 PM
Revisions: Build Number Date Author
-----------------------------------------------------------------------------}
unit PumpOnOf;
interface
uses
Win... |
{===============================================================================
RzTrkBar Unit
Raize Components - Component Source Unit
Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved.
Components
------------------------------------------------------------------------------
TRzTrackBa... |
unit CallWinApi_MainForm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Types;
type
TFormCallAPI = class(TForm)
btnStandard: TButton;
btnDynamic: TButton;
btnDelayed: TButton;
procedure btnStandardClick(Sender: TObject);
procedu... |
unit DW.Androidapi.JNI.PlayCore;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
unit PXL.ImageFormats.Vampyre;
{
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 ... |
{Code by Patcas Csaba}
{Time complexity: O(n^3)}
{Space complexity: O(n^2)}
const MAX = 400;
IN_FILE = 'simetric.in';
OUT_FILE = 'simetric.out';
var a, dp : array[1..MAX, 1..MAX] of word;
n, m, maxSize : word;
fin, fout : text;
nSize : array[1..MAX] of longint;
procedure ReadData;
var i, j : wor... |
{*******************************************************}
{ }
{ Vladimir Gaitanoff Delphi VCL Library }
{ Explorer library: shell objects }
{ }
{ Copyright (c) 1... |
{The program takes a lot of time to process numbers
bigger than 50 because recursion}
program fibRecurse;
var
n:QWord;
iter:Integer;
function fib(it:Integer):QWord;
begin
if (it = 0) then Exit(0)
else if (it = 1) then Exit(1)
else
Exit(fib(it-1) + fib(it-2))
end;
begin
WriteLn('How much iterations of th... |
PROGRAM arrays;
TYPE
vector = ARRAY[0..9] OF integer;
matrix = ARRAY[0..4, 0..4] OF integer;
cube = ARRAY[0..1, 0..2, 0..3] OF integer;
VAR
i, j, k : integer;
v : vector;
vv : matrix;
vvv : cube;
PROCEDURE doMatrix(VAR m : matrix);
BEGIN
FOR i := 0 TO 4 DO BEG... |
unit Domain.Model.Location;
interface
uses Domain.Shared, Generics.Collections;
type
Location = class;
UnLocode = class;
LocationRepository = interface
['{8B6C1FD3-770A-453B-A871-CBDCABE7B7B1}']
function find(UnLocode: UnLocode): Location;
function findAll: TList<Location>;
end;
... |
{***********UNITE*************************************************
Auteur ...... : Vincent Laroche
Créé le ...... : 31/10/2002
Modifié le ... :
Description .. :
Mots clefs ... :
*****************************************************************}
Unit UTOFMODIFENTPIEPARAM ;
Interface
Uses StdCtrls, Controls, Classes,
... |
unit Xmpp.Iq.RosterItem;
interface
uses
Xmpp.Item,XmppUri,jid;
type
TRosterItem=class(Xmpp.Item.TRosterItem)
private
function FGetSubscription:string;
procedure FSetSubscription(value:string);
function FGetAsk:string;
procedure FSetAsk(value:string);
public
constructor Create();overload;ove... |
unit GFData;
////////////////////////////////////////////////////////////////////////////////
//
// Description£º Finance Data Interface
// Author£º lksoulman
// Date£º 2017-9-11
// Comments£º
//
////////////////////////////////////////////////////////////////////////////////
interface
uses
Windows,
... |
//Verificado automaticamente em 16/06/2020 09:28
unit m_Etiqueta;
{
========================================================================================================================================
ALT| DATA |HORA |UNIT |Descrição ... |
unit ThreeDRealListUnit;
interface
uses Classes;
type
T3DRealList = class(TObject)
// T3DRealList is similar to a three dimensional array of doubles
// except that its dimensions can be determined at run time.
private
FValues : array of array of array of double;
FMaxX : integer;
FMaxY : I... |
unit ProgressMoveToDrawThread;
interface
uses
Classes, Messages,Windows,SysUtils,
GlobalType,MLPC_APILib_TLB,
{$IFDEF DEBUG}
frDebug,
{$ENDIF}
GlobalDCl;
type
TThreadProgressMoveTo = class(TThread)
private
{ Private declarations }
dwStart:dword;
protected
procedure Execute... |
unit PsSnapshot;
interface
uses
Winapi.WinNt, NtUtils.Objects, System.Generics.Collections,
DelphiUtils.Arrays;
type
TProcessFlag = (pfWoW64, pfdotNet, pfModernUI, pfForeground, pfInJob,
pfTerminated);
TProcessFlags = set of TProcessFlag;
TProcessData = record
PID: TProcessId;
ImageName: Stri... |
unit frmContourImporterUnit;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ARGUSFORMUNIT, StdCtrls, ComCtrls, Buttons, ExtCtrls, StringGrid3d, Spin,
Grids, DataGrid, AnePIE, WriteContourUnit, PointContourUnit, RbwZoomBox;
type
TImportPoint = class(TArgusPoint)
C... |
unit Item;
interface
uses
SysUtils,
Contnrs,
Produto,
Cor;
type
TItem = class
private
Fqtd_total: Double;
Fcod_produto: integer;
Fcod_cor: integer;
Fcodigo: integer;
Fpreco: Real;
Fvalor_total: Real;
Fcod_pedido: integer;
Fref_cor: String;
Fref_prod: String;
Fqtd_... |
unit PNParser;
{$mode objfpc}{$H+}{$J-}
{
Code responsible for transforming a string into a PN stack
body = statement
statement = operation | block | operand
operation = (prefix_op statement) | (statement infix_op statement)
block = left_brace statement right_brace
operand = number | variable
infix_op = <an... |
unit DataAggregator.TextFile;
interface
uses
System.Classes,
DataAggregator.Template;
type
TFileDataAggregator = class(TDataAggregatorTemplate)
strict private
FFileName: string;
FReader: TStreamReader;
protected
procedure CloseDataSource; override;
function GetNextValue(var value: integer):... |
{***********UNITE*************************************************
Auteur ...... : N. ACHINO
Créé le ...... : 03/04/2001
Modifié le ... : 03/04/2001
Description .. : Définition des constantes pour le Front Office
Mots clefs ... : FO
*****************************************************************}
unit FODefi;
inter... |
unit ComissaoRepresentante;
interface
uses
SysUtils,
Contnrs, ComissaoHasLancamentos, Lancamento;
type
TComissaoRepresentante = class
private
Fcodigo: integer;
Fmes: integer;
Fcodigo_representante: integer;
Fano: integer;
FHasLancamentos :TObjectList;
FApenas_uma_parcela: Boolean;
... |
unit uMyGlobalVariabel;
interface
uses
Windows, Registry, OnGuard, SysUtils, Classes, Forms, SqlExpr, Printers, Graphics, SimpleDS, DB ;
type
TMyGlobalVariabel = class(TPersistent)
private
FMyClipboard : string;
FApplicationTglHariIni : TDateTime;
FApplicationTglExpired : TDateTime;... |
{*******************************************************}
{ }
{ Arabic Delphi VCL Units }
{ }
{ Modified by : Orwah Ali Issa (www.orwah.net) }
{ ... |
unit MenuDesignerBase;
{$mode objfpc}{$H+}
interface
uses
// FCL + LCL
Classes, SysUtils, fgl,
Controls, Forms, Menus, Graphics, LCLProc,
// IdeIntf
FormEditingIntf, ComponentEditors,
// IDE
MenuShortcuts, MenuTemplates;
type
TShadowItemDisplayState = (dsNormal, dsSelected, dsDisabled);
TByteArra... |
unit Drawing;
interface
uses
Windows, Graphics, Menus;
procedure Menu_MeasureMenu(Sender: TObject;
ACanvas: TCanvas; var Width, Height: Integer);
procedure Menu_DrawMenu(Sender: TObject;
ACanvas: TCanvas; ARect: TRect; Selected: Boolean);
implementation
uses General;
procedure DrawItemText(X: intege... |
unit DW.Macapi.MultipeerConnectivity;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Libr... |
////////////////////////////////////////////////////////////////////////////
// PaxCompiler
// Site: http://www.paxcompiler.com
// Author: Alexander Baranovsky (paxscript@gmail.com)
// ========================================================================
// Copyright (c) Alexander Baranovsky, 2006-2014. All rig... |
unit ProjectPIE;
interface
uses AnePIE;
const PROJECT_PIE_VERSION = 2;
type
PIEProjectNew = function (aneHandle : ANE_PTR ; rPIEHandle : ANE_PTR_PTR ; returnLayerTemplate : ANE_STR_PTR ) : ANE_BOOL ; cdecl;
PIEProjectEdit = function (aneHandle : ANE_PTR ; PIEHandle : ANE_PTR ) : ANE_BOOL ; cdecl;
PIEP... |
unit MFTransmissivity;
interface
{MFTransmissivity defines the "Transmissivity Unit[i]" layer
and the associated parameter.}
uses ANE_LayerUnit;
type
TTransmisivityParam = class(T_ANE_ParentIndexLayerParam)
class Function ANE_ParamName : string ; override;
function Value : string; override;
end;
TTr... |
{
Copyright (C) 2013-2023 Tim Sinaeve tim.sinaeve@gmail.com
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable... |
unit uInterface;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Controls, ExtCtrls, StdCtrls;
const
START_BTN = '.\source\img\start.png';
STOP_BTN = '.\source\img\stop.png';
CLR_BLUE = $00EE8855;
CLR_GREY = $00CCCCCC;
type
TFace = class
private
Container: TWinControl;
Timer: TTimer;
... |
unit DW.Background.Android;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
unit CPort.Protocol.StartEnd;
interface
uses System.SysUtils, System.Classes, CPort, CPort.Types, Vcl.ActnList,
Generics.Legacy, CPort.Protocol, Dialogs;
type
TComProtocolSartEndItem = class(TCustomProtocolItem)
private
FStart, FStop: TComDataBuffer;
FFoundLength: integer;
FInPacket: Boolean;
F... |
unit Main;
{$I lape.inc}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs,
StdCtrls, ExtCtrls, SynEdit, SynHighlighterPas, lptypes, lpvartypes;
type
{ TForm1 }
TForm1 = class(TForm)
btnRun: TButton;
btnMemLeaks: TButton;
btnEvalRes: TButton;
btnEvalArr: TButto... |
unit AudAI;
interface
uses
ffmpeg_types,globalmultiqueue, simplequeue, stringx, typex, numbers, sysutils, SoundTools, ffmpeg_tools, soundinterfaces, soundstream, commandprocessor, betterobject, dir, dirfile, generics.collections;
type
TAudAnalCross = record
total_windows_checked: int64;
divergence: dou... |
unit MFMOCRetardation;
interface
{MFMOCRetardation defines the "Retardation Unit[i]" layer
and associated parameter.}
uses ANE_LayerUnit, MFGenParam;
type
TMOCRetardationParam = class(TCustomParentUnitParameter)
class Function ANE_ParamName : string ; override;
function Value : string; override;
func... |
//Verificado automaticamente em 16/06/2020 09:28
unit S_Parametros_Venda;
interface
uses
firedac.comp.client, h_db, SYSTEM.SysUtils, h_Functions, inifiles, v_Dir;
type
TParametros_Venda = class(tobject)
private
class procedure setImpressoraComprovante(value: string); static;
class function getImpressor... |
unit DBBackup1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
TrayIcon, Db, DBTables, IBServices, IBDatabase, IBCustomDataSet, IBQuery, Registry;
const
UM_PROCESSCOMMAND = WM_USER + 100;
type
TForm1 = class(TForm)
IBBackupService1: TIBBackupService;
DB: TIB... |
program BitSetExample; {EXBITSET.PAS}
uses
OpRoot;
var
DivisibleBy9 : BitSet;
I, Cnt : Integer;
begin
{Create a BitSet for flagging 1000 items (this clears all bits)}
if not DivisibleBy9.Init(1000) then begin
Writeln('Failed to Init BitSet, Status = ', InitStatus);
Halt;
end;
{Loop through first... |
unit RecipeManager;
interface
uses
SysUtils, Classes, Graphics, Forms, StdCtrls, ExtCtrls, Types, mask,
Batcher, Storage, Dialogs, Controls, CoalGrade;
type
TRecipeManager = class(TCustomPanel)
private
ScrollBox1: TScrollBox;
lbRecipeText : TLabel;
meRecipe1Summ : TEdit;
meRecip... |
unit BIFF_VBA5;
{-
********************************************************************************
******* XLSReadWriteII V6.00 *******
******* *******
******* Copyright(C) 1999,2017 Lars Arvidsson, Axol... |
unit fOrderFlagEditor;
{ Order Flag properties editor }
{------------------------------------------------------------------------------
Update History
2016-05-17: NSR#20110719 (Order Flag Recommendations)
-------------------------------------------------------------------------------}
interface
uses
Windows, Me... |
unit Unit2;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Soap.InvokeRegistry, Soap.Rio,
Soap.SOAPHTTPClient, Vcl.StdCtrls, XSBuiltIns, IjstshWebService, Vcl.ComCtrls,
Vcl.Buttons, ActiveX;
type
TForm2... |
{
Copyright (C) 2013-2023 Tim Sinaeve tim.sinaeve@gmail.com
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by a... |
{-----------------------------------------------------------------------------
Unit Name: OldRecpt
Author: Gary Whetton
Date: 9/11/2003 3:07:42 PM
Revisions: Build Number Date Author
-----------------------------------------------------------------------------}
unit OldRecpt;
interface
uses
Wind... |
{$MODE OBJFPC}
program NUMBER;
uses
Math;
const
maxN = 10000;
type
PNode = ^TNode;
TNode = record
v : Integer;
link : PNode;
end;
var
head : array[1..maxN] of PNode;
stack, num, low, group : array[1..maxN] of Integer;
check : array[1..maxN] of Boolean;
n, m, t, res, count... |
////////////////////////////////////////////////////////////////////////////////
// //
// Copyright (c) 2008-2020 Alliance for Sustainable Energy. //
// All rights reserved. ... |
{ Unité : Source TOM de la TABLE : RUBRIQUE (RUBRIQUE)
--------------------------------------------------------------------------------------
Version | Date | Qui | Commentaires
--------------------------------------------------------------------------------------
4.3.1.101.001 19/06/03 JP Création de... |
unit DW.OSMetadata.Win;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library }... |
unit UConflicts;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls,
DBGrids, sqldb, db, USQL, UMetadata, UDBConnection, UEditCard, UNotification;
type
{ TConflictsForm }
TConflictsForm = class(TForm)
DataSource: TDataSource;
SQLQuery: TSQL... |
unit fOrdersRefill;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
fAutoSz, StdCtrls, ORFn, ORCtrls, ExtCtrls, VA508AccessibilityManager;
type
TfrmRefillOrders = class(TfrmAutoSz)
pnlBottom: TPanel;
cmdOK: TButton;
cmdCancel: TButton;
grbPickUp: TGroupB... |
{ @abstract(This unit contains all dialogs supplied with KControls.)
@author(Tomas Krysl (tk@tkweb.eu))
@created(18 Sep 2009)
@lastmod(14 Oct 2009)
This unit implements all dialogs supplied with KControls Development Suite.
Copyright © 2009 Tomas Krysl (tk@@tkweb.eu)<BR><BR>
<B>License:</B><BR>
This co... |
unit SoundDevice_MM;
{$Message '********************************Compiling SoundDevice_MM'}
interface
uses
tickcount,
{$IFDEF MSWINDOWS}
winapi.mmsystem,
{$ENDIF}
debug,msacm, soundtools, typex, soundinterfaces, sysutils, classes, signals, ringbuffer, systemx, windows, soundsample, managedthread;
type
TSoundD... |
{ Copyright (c) 2007-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 }
unit NullablesUnit;
interface
uses
Controls, // TODO ##jpl: required for TDate, TTime, but VCL/FMX specific; f... |
unit SimpleBufferedConnection2;
{$INLINE AUTO}
interface
uses
ringbuffer, SimpleAbstractConnection, betterobject, sharedobject,
ManagedThread, threadmanager, windows, miscroutines, sysutils, classes;
type
TSimpleBufferedConnection<T: constructor,
TSimpleAbstractConnection> = class(TSimpleAbstractConnection... |
unit CgUtils;
{ CgLib: Debugging utilities.
Version 1.20
(c) 1998-2000 Tom Nuydens. Use at your own risk. See cglib.txt for details. }
interface
{$J-}
uses
Windows, SysUtils;
type
// Standard type for version numbers (xx.xx format).
TCGVersion = array [0..1] of Byte;
type
ECGException = class(Exceptio... |
uses graphABC;
const n = 1000;
df = 3 * pi/n;
leaf = 5;
s_leaf = 1/2;
d_alpha = pi / 8;
procedure Flower (x0, y0, R: integer; c: color; alpha: real);
var f: real;
x, y: integer;
R_min: integer;
begin
f := alpha;
x := round (x0 + (R + s_leaf * R * sin (leaf * f)) * cos (f + a... |
(******************************************************************************
* Copyright (C) 2023 Tomáš Horák
*
* 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, includi... |
unit test_12_Lock;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls,
OtlTask,
OtlTaskControl,
OtlContainers,
OtlComm,
OtlEventMonitor;
type
TfrmTestLock = class(TForm)
btnLock : TButton;
btnNoLock : TButton;
btnTestLock :... |
{***********UNITE*************************************************
Auteur ...... :
Créé le ...... : 25/06/2002
Modifié le ... : / /
Description .. : Source TOF de la FICHE : JUSTIFPXVENTE ()
Mots clefs ... : TOF;JUSTIFPXVENTE
*****************************************************************}
unit JUSTIFPXVENTE_TOF;... |
unit BaiduMapAPI.PoiSearchService;
//author:Xubzhlin
//Email:371889755@qq.com
//百度地图API Poi检索 单元
//TSearchResult 检索结果
//TPoiResult poi搜索结果
//TPoiDetailResult 详情搜索结果
//TPoiIndoorResult 室内POI搜索结果
//TPoiSortType Poi 结果排序
//TPoiBoundSearchOption POI范围内检索参数
//TPoiCitySearchOption POI城市内检索参数
//TPoiNearbySear... |
unit fmePassword;
{
copyright
(c) tdk
my code dual licenced under FreeOTFE licence and LGPL
code marked as 'sdean' is freeotfe licence only
description
new kephrase, get KeyPhrase from KeyPhrase property
IsValid true iff match
}
interface
uses
//delphi
Winapi.Windows, Winapi.Messages,... |
unit MFFlowAndHeadBound;
interface
{MFFlowAndHeadBound defines the "Point FHB Unit[i]", "Line FHB Unit[i]"
and "Area FHB Unit[i]" layers
and associated parameters and Parameterlists.}
uses ANE_LayerUnit, SysUtils, MFGenParam;
type
TFHBPointAreaHeadParam = class(T_ANE_LayerParam)
class Function ANE_ParamName... |
unit __Game_Win;
interface
uses
Commons, __Snake, __Apple, VCL.Forms, VCL.Graphics, WinApi.Windows,
VCL.Controls, system.Classes, system.SysUtils;
type
Game_Win = class(TForm)
private
Player : _Snake;
Apple : _Apple;
Score : Integer;
... |
{*******************************************************}
{ }
{ Windows 部分内核功能和API }
{ }
{ 版权所有 (C) 2015 YangYxd }
{ ... |
unit uAnalyzerEngine;
interface
uses
Classes, SysUtils, ExtCtrls, HttpProt, uAnalyzerBot, ComCtrls,
uAnalyzerListView, uInternalJudge;
type
TEngineProcEvent = procedure(Sender : TObject;
AHttpCli: TAnalyzerBot) of object;
TAnalyzerEngine = class(TObject)
private... |
unit Main;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, XLSUtils5, XLSSheetData5, XLSPivotTables5, XLSReadWriteII5,
XLSRelCells5;
type
TfrmMain = class(TForm)
btnClose: TButton;
btnCreateData: TButton;
btnCreatePivotTable: TButton;
... |
{
TPhysicalMemoryInfo Component Version 3.0 - Suite GLibWMI
Copyright (©) 2020, by Germán Estévez (Neftalí)
La clase Win32_PhysicalMemory representa un dispositivo de memoria física que se encuentra en un sistema
como disponible para el sistema operativo.
Utilización/Usage:
(ES) Basta con "soltar" el componente y ... |
unit uDMImportacao;
interface
uses
System.SysUtils, System.Classes, FireDAC.Stan.Intf, FireDAC.Stan.Option,
FireDAC.Stan.Param, FireDAC.Stan.Error,
FireDAC.DatS, FireDAC.Phys.Intf, FireDAC.DApt.Intf, FireDAC.Stan.Async,
FireDAC.DApt, Data.DB, FireDAC.Comp.DataSet, System.Threading,
FireDAC.Comp.Cli... |
unit System.Enumeration;
interface
(*
Credit:
Part of this class was taken from the internet long time ago. And then later modified by me.
I don't remember where I got it from. But credit to the original author :D
*)
uses
System.TypInfo, System.Math;
type
TEnumeration<T: record > = clas... |
unit MessagesPool;
interface
uses
System.Classes,
System.SysUtils,
System.SyncObjs,
CircleQueue;
type
TMSMsg = record
MsgID : Cardinal;
lParam : Pointer;
wParam : Pointer;
end;
MessagesPoolException = class(Exception);
TMessagesPool = class(TCircleQueue<TMSMsg>)
private
function... |
unit uFrameSettingsFakeSettings;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;
type
TfrmSettingsFakeSettings = class(TFrame)
Label1: TLabel;
Bevel2: TBevel;
chkConstrainHits: TCheckBox;
Label2: TLabel;
tx... |
{ ****************************************************************************** }
// 下面是代码来源
// http://www.greensoftcode.net/techntxt/201111915391069590961
{ ****************************************************************************** }
(* ************************************************ *)
(* *)
(* 修改:爱吃猪头肉 & Fly... |
unit HST3DGeologyLayerList;
interface
uses
ANE_LayerUnit;
type
TLastGeologicUnit = class(T_ANE_IndexedLayerList)
constructor Create(AnOwner : T_ANE_ListOfIndexedLayerLists;
Index: Integer); override;
end;
TGeologicUnit = class(TLastGeologicUnit)
constructor Create(AnOwner : T_ANE_ListOfInde... |
unit ReceivingCommandResponseThreadU;
interface
uses
Windows, Classes, Forms, Comctrls, Sysutils, Dialogs, ScktComp, WinSock,
CsIntf;
type
ReceivingCommandResponseThread = class(TThread)
private
{ Private declarations }
protected
procedure Execute; override;
public
constructor Create;overlo... |
unit Xc12Common5;
{-
********************************************************************************
******* XLSReadWriteII V6.00 *******
******* *******
******* Copyright(C) 1999,2017 Lars Arvidsson, Ax... |
unit PXL.Windows.DDraw;
{
DirectX Headers translation by Yuriy Kotsarenko, August 2015. Revision 1.0.
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 Software Foundation, either version 3 of the License, or ... |
unit DW.MediaLibrary.Android;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
// ************************************************************************ //
// The types declared in this file were generated from data read from the
// WSDL File described below:
// WSDL : D:\Delphi\Sistemas\SGP\Api.xml
// >Import : D:\Delphi\Sistemas\SGP\Api.xml>0
// Encoding : utf-8
// Version : 1.0
// (13/... |
unit AddLAS;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, ImgList, ComCtrls, ToolWin, Utils, Common, CLAS, LASView;
const
defFormCaption = 'Add logs from %-s to %-s.';
defPntCountCaption = 'Total read points: ';
type
TfrmAddLAS = class(TForm)
ToolB... |
unit uFrmMensalidades;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls, Data.DB,
Vcl.Grids, Vcl.DBGrids, System.Actions, Vcl.ActnList, Vcl.DBCtrls, Vcl.Mask,
FireDAC.Stan.Intf, FireDAC.Stan.Option,... |
{***********UNITE*************************************************
Auteur ...... : JT
Créé le ...... : 18/07/2003
Modifié le ... : / /
Description .. : Source TOF de la FICHE : UTILULST ()
Suite ........ : Reçoie un TListBox et une TOB pour affichage du TListBox
Suite ........ : et éventuellement impression et expo... |
(* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distr... |
{
This file is part of DBGP Plugin for Notepad++
Copyright (C) 2007 Damjan Zobo Cvetko
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 2 of the License, or
... |
unit MFMODPATHUnit;
interface
{MFMODPATHUnit defines the "MODPATH Particles Unit[i]" layer
and the associated parameters and Parameterlist.}
uses ANE_LayerUnit, SysUtils, MFGenParam;
type
TMODPATH_XCount_Param = class(TCustomUnitParameter)
constructor Create(AParameterList : T_ANE_ParameterList;
Index ... |
unit uSchedule;
interface
uses
uTypes, uDIniFile, SysUtils;
type
TScheduleType = (scNever, scOnce, scInterval, scDaily, scWeekly, scMonthly, scYearly,
scWhenIdle, scWhenOverload, scLag, scWindowsStartUp, scUserLogOn, scUserLogOff, scUserLock, scUserUnlock, scProgramStartUp, scProgramFinish, scBeforeHibe... |
unit FrmMain;
interface
uses
Windows, Messages, SysUtils, StrUtils, Variants, Classes, Graphics, Controls, Forms, Hutil32, SCShare, EDCode, GeneralCommon,
Dialogs, StdCtrls, ComCtrls, Menus, RSA, JSocket, DB, ADODB, AppEvnts, ExtCtrls, MD5Unit;
const
UPLOADTEMP = '.\UploadTemp\';
UPLOADFILES = '.\U... |
unit uMainForm;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls, uFileSetApi,
uFileSetImpl, System.Actions, Vcl.ActnList, Vcl.StdActns, Vcl.Menus,
System.ImageList, Vcl.ImgList, Vcl... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.