text stringlengths 14 6.51M |
|---|
unit ClientLoanRequestForm;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.WinXCtrls, Vcl.Grids,
Vcl.ExtCtrls, Vcl.ComCtrls, Data.DB, Vcl.DBGrids, Datasnap.DBClient,
Data.FMTBcd, Data.SqlEx... |
unit HST3DGeneralParameters;
interface
uses ANE_LayerUnit;
type
TTime = Class(T_ANE_LayerParam)
// constructor Create(AParameterList : T_ANE_ParameterList; Index : Integer
// {$IFDEF DEFAULTSOK} = -1 {$ENDIF});
// override;
function Value : string; override;
class Function ANE_ParamName : strin... |
unit dmSerialSetterInterface;
interface
type
ISerialSetter = interface(IInterface)
['{EAC9AE24-6C80-4A51-A954-BBE617A97C0B}']
procedure SetSerial(ASerial : Word); stdcall;
end;
implementation
end.
|
unit DefSource;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs,DefDB, StdCtrls, ExtCtrls;
type
PFieldDesc = ^FieldDesc;
FieldDesc = record
m_ColName ,
m_ColDesc ,
m_ColType : String;
m_IsNullable : boolean;
m_DefaultValue : String;
m_... |
unit PXL.Textures.DX7;
{
This file is part of Asphyre Framework, also known as Pascal eXtended Library (PXL).
Copyright (c) 2000 - 2015 Yuriy Kotsarenko
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
Public License as published by the Free Sof... |
unit MD4Hash;
interface
uses
Classes, Sysutils;
type
Pbyte= ^byte;
Pword= ^word;
Pdword= ^dword;
Pint64= ^int64;
dword= longword;
Pwordarray= ^Twordarray;
Twordarray= array[0..19383] of word;
Pdwordarray= ^Tdwordarray;
Tdwordarray= array[0..8191] of dword;
EMD4= class(Exception);
TMD4= class... |
program DNASequenceGenerator;
uses //useful libraries
Sysutils,
crt;
var
DNAlength:integer;
fileType:string[200];
//creates the DNA random sequence
function generateRamdonDNA(StringLen:Integer):String;
var str:String;
begin
Randomize;
//string with all possible chars to generate DNA
... |
unit Notizen;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, ComCtrls, ToolWin, StdCtrls, Buttons, ImgList, OGame_Types, Prog_Unit, IniFiles,
VirtualTrees, Menus;
type
TNotizTyp = (nPlanet, nPlayer, nAlly);
TNotiz = record ... |
{
*************************************
Created by Danilo Lucas
Github - https://github.com/dliocode
*************************************
}
unit Sanitizer.ToLowerCase;
interface
uses
DataValidator.ItemBase.Sanitizer,
System.SysUtils;
type
TSanitizerToLowerCase = class(TDataValidatorItemBaseSanitizer)... |
unit Test.Validator;
interface
{$M+}
uses
DUnitX.TestFramework,
Nathan.UriBuilder.Validator;
type
[TestFixture]
TTestUriBuilderValidator = class
strict private
FCut: TUriValidator;
public
[Setup]
procedure Setup();
[TearDown]
procedure TearDown();
[Test]
procedure Test_HasC... |
unit TestMainForm;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
Menus, Buttons, structure, UnitFormAbout;
type
{ TForm1 }
TForm1 = class(TForm)
BitBtn1: TBitBtn;
dlgOpen: TOpenDialog;
edAnswer_N1: TEdit;
edAnswer_N2: TEdit;
... |
(*------------------------------------------------------------------------------------
Description : Calcul des coûts financiers des tiers
Procédure d'appel : LanceCoutTiers
Paramètres : Compte auxiliaire & Date de référence
Dernière version : 04/04/97
---------------------------------------------... |
unit MVCFramework.Tests.RESTClient;
interface
uses
TestFramework,
System.Classes,
System.SysUtils,
System.Generics.Collections,
ObjectsMappers,
MVCFramework,
MVCFramework.Server,
MVCFramework.RESTClient,
MVCFramework.RESTAdapter,
MVCFramework.Commons,
MVCFramework.Tests.AppController;
type
I... |
{*******************************************************}
{ }
{ IOCP HTTP 服务组件单元 }
{ }
{ 版权所有 (C) 2015 YangYxd }
{ ... |
unit DW.UniversalLinks.Android;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
unit DocLstFrm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Buttons, StdCtrls, ExtCtrls;
type
TDocumentListForm = class(TForm)
Panel7: TPanel;
CloseBtn: TBitBtn;
HNotDocsListBox: TListBox;
Label1: TLabel;
Label2: TLabel;
HaveDocsListBox: TLis... |
unit login;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, dbf, db, FileUtil, Forms, Controls, Graphics, Dialogs,
StdCtrls;
type
{ TloginForm }
TloginForm = class(TForm)
DataAccess: TDbf;
email: TEdit;
errorMsg1: TLabel;
errorMsg2: TLabel;
loginBtn: TButton;
... |
Program onthir(input, output);
const
TAXRATE = 0.1044;
SHIPPINGRATE = 7.50;
var
{define variables}
amount, final, tax, shippingCharge: real;
{function to calculate tax}
function calculateTax(amount: real): real;
var
result: real;
begin
calculateTax := TAXRATE * amount;
end;
{begin of the main pr... |
unit TDUGUtils;
interface
function Map(AValue, AInputMin, AInputMax, AOutputMin, AOutputMax: Double): Double;
implementation
// ----------------------------------------------------------------------------
function Map(AValue, AInputMin, AInputMax, AOutputMin, AOutputMax: Double): Double;
begin
Result :... |
program Calculator;
var
a: integer;
b: integer;
result: integer;
operation: char;
begin
writeln('Welcome in simple calculator! Please type in first argument: ');
readln(a);
writeln('Please type in a second argument: ');
readln(b);
(*result := a + b;*)
writeln('Please choose an operation:' + sLi... |
{==============================================================================}
{ PROJECT: lysee_sh_funcs }
{ DESCRIPTION: shell functions of current OS (FPC) }
{ COPYRIGHT: Copyright (c) 2003-2011, Li Yun Jie. All Rights Reserved. ... |
unit DW.RichEdit.Win;
{*******************************************************}
{ }
{ Kastri Free }
{ }
{ DelphiWorlds Cross-Platform Library }
... |
(* ***** 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... |
unit PXL.Formats;
{
This file is part of Asphyre Framework, also known as Pascal eXtended Library (PXL).
Copyright (c) 2000 - 2015 Yuriy Kotsarenko
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
Public License as published by the Free Software... |
unit unUtilsPortal;
interface
uses
Windows, Graphics, shellapi, Registry, SysUtils, Classes, ArchFuncs;
function GetApplicationMessage(APath: string): string;
function GetGeneralMessage: string;
function Get_PathMensajes: string;
procedure ExtractIconFromFile(AIcon: TIcon; AFile: String);
implementation
uses
... |
unit UnitOrdens.Model;
interface
uses Rest.Json;
type
TModelOrdens = class
private
Ffun_abertura: integer;
Fcontrato: integer;
Focorrencia: string;
Ffun_analise: integer;
Ffun_programador: integer;
Ffun_teste: integer;
Fdata_entrega: String;
Ffun_entrega: integer;
Festado: str... |
unit LegalPersonBaseUnit;
interface
uses
MSConnectionLayerUnit,
SysUtils,
ORMEntityUnit,
DataSetEnumeratorUnit,
NullablesUnit,
DB,
ADODB,
BaseEntityUnit,
JoinedColumnPairUnit,
MSDMLQueryRecordUnit;
type
TLegalPersonBase = class;
TLegalPersonListBase = class;
TLegalPers... |
{
Редактор события TPlanner
v0.0.1 (04.05.06)
}
unit ExamEditForm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Planner, StdCtrls, ComCtrls, Buttons,
SExams;
type
TEditFieldKind = (efkTime, efkAuditory, efkSubgrp);
TEditFields = set of TEditFieldKi... |
unit unRptNotaEntregaReq;
interface
uses Windows, SysUtils, Messages, Classes, Graphics, Controls,
StdCtrls, ExtCtrls, Forms, QuickRpt, QRCtrls, DB, SDEngine;
type
TqrNotaEntregaReq = class(TQuickRep)
TitleBand1: TQRBand;
qriLogoART: TQRImage;
QRMemo1: TQRMemo;
qrlFecha: TQRLabel;
QRLabel3: T... |
unit aidDatbaseLifetime;
{ ------------------------------------------------------------------------------------------------------------
Name : d_tDatbaseLifetime
Author : Alex carrell
Description : Database abstraction.
Modified :
AJC : initial version
2009Nov06 : another class type... |
{*******************************************************}
{ }
{ Vladimir Gaitanoff Delphi VCL Library }
{ TParams utility routines }
{ }
{ Copyright (c) 1... |
unit XMLEOSErrorTestCaseUnit;
interface
uses
Classes,
SysUtils,
TestFrameWork,
msxml;
type
TXMLEOSErrorTestCase = class(TTestCase)
strict private
FXmlDocument: IXMLDOMDocument3;
private
procedure LoadXmlDocument(relativePathToXmlFile: string);
strict protected
function Ge... |
(********************************************************************
* Example: Find Listener
*
* Description: Find all listeners (instruments) on the GPIB bus
*
* ADLINK Inc. 2006
********************************************************************)
unit Unit1;
interface
uses
Windows, Messages, SysUtils, C... |
unit clThreadParseReceipt1;
interface
uses
Windows, SysUtils, Variants, Classes, ShellAPI , clLogAcceptor1, clParseReceipt1,
ztvregister, ztvBase, ztvUnRar, ztvGbls, ActiveX , comObj;
type
TThParseReceipt = class(TThread)
private
fLog : TLogAcceptor;
fRootDir : String;
fWorkDir : String;
... |
unit Test.neImageList.Main;
interface
uses
DUnitX.TestFramework, neImageList, System.Classes, System.Types;
type
[TestFixture]
TneImageListTest = class(TObject)
private
fTestScale: Single;
fneImageList: TneImageList;
procedure OnLoadImages(Sender: TObject);
public
[Setup]
procedure Set... |
{*******************************************************************************
作者: dmzn@163.com 2011-11-14
描述: 中间件数据通道管理器
*******************************************************************************}
unit UMgrChannel;
{$I LibFun.inc}
interface
uses
Windows, Classes, SysUtils, SyncObjs, uROClient,... |
unit PXL.Types.GL;
{
This file is part of Asphyre Framework, also known as Pascal eXtended Library (PXL).
Copyright (c) 2000 - 2015 Yuriy Kotsarenko
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
Public License as published by the Free Softwar... |
unit IPSLicense;
interface
uses SysUtils, Windows, Registry;
function GetLastUpdate() : String;
function GetLastUpdateID() : Integer;
function GetLicense() : String;
function GetLimitDemo() : Integer;
function GetLimitVariables(): Integer;
function GetLimitWebFront() : Integer;
function Get... |
unit frameFormatDescriptor;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ArgusDataEntry;
type
TframeFormat = class(TFrame)
comboP: TComboBox;
comboREdit: TComboBox;
adeW: TArgusDataEntry;
Label1: TLabel;
adeD: TArgusDataEntry;
lblRe... |
unit DW.AuthenticationServices.Types;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Libr... |
{*******************************************************************************
作者: dmzn@163.com 2017-03-21
描述: 注册管理系统对象的运行状态
备注:
*.TObjectBase.DataS,DataP,Health属性,调用时需要用SyncEnter锁定,避免多线程操作
时写脏数据.
*******************************************************************************}
unit UBaseObject;
... |
unit Log.Intf;
interface
uses
Log.Level;
type
ILog = interface
['{44A3871E-897C-44A0-A986-99B2CFE35FF6}']
function Write(const AMessage: string; const ALogType: TLogType)
: Boolean; overload;
function Write(const AMessage: String; const Args: array of const;
const ALogType: TLogType): Boo... |
unit HashAlgMD2Engine_U;
// Description: MD2 Hashing Engine
// By Sarah Dean
// Email: sdean12@softhome.net
// WWW: http://www.SDean12.org/
//
// -----------------------------------------------------------------------------
//
// Delphi translation of the MD2 program by RSA Data Security, Inc., as specified in RFC... |
unit FTecCopiaDados;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters,
cxContainer, cxEdit, cxGroupBox, cxTextEdit, cxLabel, Menus, StdCtrls,
cxButtons, ImgList, cxCurrencyEdit, DB, DBTables;
type
... |
unit graphicsx;
{$i delphidefs.inc}
interface
uses
{$IFDEF FMX}
system.UITypes, system.UIConsts,
{$ELSE}
graphics,
{$ENDIF}
sysutils,
typex,
types;
{$IFDEF FMX}
const
clBlack = claBlack;
clSilver = claSilver;
clGrey = claGrey;
clNavy = claNavy;
clBlue = claBlue;
clGreen = claGreen;
clLime = ... |
unit mStrUtils;
interface
function EmailValidate(const Value: String): Boolean;
function FloatValidate(const AValue: String): Boolean;
function IntegerValidate(const AValue: String): Boolean;
function NonEmptyStr(const AValue1, AValue2: String): String;
function IsNumeric(const AValue: String): Boolean;
function IsIn... |
{*******************************************************************************
作者: dmzn@163.com 2019-06-11
描述: 海康威门岗LED引导屏
备注:
*.支持型号: DS-TVL224-4-5Y
*******************************************************************************}
unit UHKDoorLED2;
interface
uses
Classes, SysUtils, SyncObjs, ... |
unit uLangCharSet;
interface
uses
Classes, SysUtils, Windows;
const
cCharSetCount = 19;
type
(* --------------------------------------------------------------------------
TLangCharSet
-------------------------------------------------------------------------- *)
TCharSetRec = record
... |
unit NotificationServiceUnit;
interface
uses
System.SysUtils,
System.Classes,
System.Android.Service,
AndroidApi.JNI.GraphicsContentViewText,
Androidapi.JNI.Os, System.Notification, IdBaseComponent, IdComponent,
IdCustomTCPServer, IdCustomHTTPServer, IdHTTPServer, IdContext,
IdTCPConnection, IdTCPClient... |
unit iocp.Res;
interface
const
BytePerKB = 1024;
BytePerMB = BytePerKB * 1024;
BytePerGB = BytePerMB * 1024;
const
IOCP_CORE_LOG_FILE = 'Iocp_Core_Exception';
IOCP_CORE_DEBUG_FILE = 'Iocp_Core_Debug';
resourcestring
strEngine_DebugInfo = 'State: %s, Workers: %d';
strEngine_WorkerTitle = '----------... |
unit DbCrackerUnit;
interface
uses
{$if CompilerVersion >= 24.0}
System.Generics.Collections,
{$endif CompilerVersion >= 24.0}
Classes,
DB,
DBGrids,
DBCtrls,
StdCtrls,
Controls;
type
{$if CompilerVersion >= 24.0}
TDataLinks = TList<TDataLink>;
{$else}
TDataLinks = TList;
{$endif... |
{
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 WriteMT3D_Chem;
interface
uses Sysutils, Forms, AnePIE, WriteMT3D_Basic, WriteModflowDiscretization;
type
TMt3dChemWriter = class(TMT3DCustomWriter)
private
ISOTHM : integer;
IREACT : integer;
IRCTOP : integer;
IGETSC : integer;
CurrentModelHandle : ANE_PTR;
DisWriter : TDiscretizati... |
unit graph;
//mode objfpc}
//H+}
{$MODE Delphi}
interface
uses
Classes, SysUtils, Grids;
type
TErrorObject = class(Exception);
TAdjListElement = class
private
vertexname : string;
edgelist : tStringList;
public
constructor Create(_vertexName:string);
end;
... |
unit UnitHookControlChangeValue;
interface
uses Classes,Windows,cxTextEdit,cxDBExtLookupComboBox,cxRadioGroup,cxImage,ComCtrls,
cxCalendar,cxCheckBox, UnitUpdateImages,UnitFrameUpdateImages,cxImageComboBox,
cxCheckListBox,cxDropDownEdit,cxMemo, UnitProc,Controls,Forms,Grids;
type
TRecEventPersonal = record... |
// Licensed to the Apache Software Foundation(ASF) under one
// or more contributor license agreements.See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not ... |
unit UFrmUpdate;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, IdBaseComponent, IdComponent,
IdTCPConnection, IdTCPClient, IdExplicitTLSClientServerBase, IdFTP,
Vcl.ComCtrls, IdException, Vcl.StdCtr... |
unit mungo.intf.textfile.sourceeditor;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LazFileUtils,
mungo.intf.editor, mungo.intf.filepointer;
type
TSourceEditorIntf = class abstract ( TEditorFile )
protected
procedure FileChange(Sender: TObject); virtual; abstract;
procedure ActionFile... |
unit DocFileUn;
interface
uses Graphics, DBTables, Windows,IBQuery;
{ image sizes }
const
nImgWebMaxWidth = 640;
nImgWebMaxHeight = 480;
nImgWebMinWidth = 400;
nImgWebMinHeight = 300;
nImgWebQuality = 75;
nGroupLogoImageWidth = 258;
nGroupLogoImageHeight = 145;
{ web store folders }
const
sWebStoreF... |
unit AsfUIPlugInMgrImpl;
////////////////////////////////////////////////////////////////////////////////
//
// Description£º AsfUIPlugInMgr Implementation
// Author£º lksoulman
// Date£º 2017-11-15
// Comments£º
//
////////////////////////////////////////////////////////////////////////////////
interface... |
//==============================================================================
// CellML file: C:\Program Files\COR\Models\courtemanche_ramirez_nattel_model_1998.cellml
// CellML model: courtemanche_ramirez_nattel_model_1998
// Date and time: 21/07/2015 at 11:00:43
//-----------------------------------------------... |
unit CustomNCUI;
////////////////////////////////////////////////////////////////////////////////
//
// Description£º NCComstomUI
// Author£º lksoulman
// Date£º 2017-12-11
// Comments£º
//
////////////////////////////////////////////////////////////////////////////////
interface
uses
Windows,
Classe... |
unit Unit1;
// Demo 4
//
// Demonstrate one way to get around the reference counting problem shown in Demo 3
// The child object accesses the parent object through a function call rather than an interface reference
// This can be used in older versions of Delphi that do not support the [weak] attribute (see Demo... |
unit UtofPtfPieceCegid;
interface
uses M3FP, StdCtrls,Controls,Classes, Graphics, forms,sysutils,ComCtrls,
HCtrls,HEnt1,HMsgBox,UTOB,uTofAfBaseCodeAffaire,
{$IFDEF EAGLCLIENT}
MaineAGL,eQRS1,
{$ELSE}
Fe_Main,db,dbTables,MajTable,QRS1,
{$ENDIF}
UTOF, AglInit, Agent, Ent1 ;
Type
TOF... |
unit SelectLanguage;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Languages, inifiles;
const
LangSection = 'generell';
LangName = 'STR_Sprache';
type
TFRM_SelectLanguage =... |
unit aidwlCableGrid;
{ valCableGrid
Grid component for viewing Cables in the WireLess system.
see also
valRunoutGrid
modified
CGR 18/11/2004, Modified the delete storage so that we can also store log information.
ajc 2008Sept - expanded the wireless program so that it handles 25 cores.
}
int... |
unit regcheckbox_test;
{$mode Delphi}{$H+}
interface
uses
SysUtils,
fpcunit,
registrysource_wrapper,
regcheckbox_wrapper,
regtype,
test_const,
lrc_testcase,
regbasics;
type
{ TRegCheckBoxGenericTest }
TRegCheckBoxGenericTest<_T1,_T2>= class(TLRCTestCase<Boolean>)
private
FRegSrcWrapper: ... |
unit knapsack;
interface
uses
betterobject, typex, systemx, sharedobject, better_collections;
type
TKnapSackItem = class(TBetterObject)
strict private
FTag: string;
FWeight: double;
private
FUsed: boolean;
public
property Tag: string read FTag write FTag;
property Weight: double read FW... |
{*******************************************************************************
图像处理相关
创建人:TJH
创建日前:2009-11-10
描述:
*******************************************************************************}
unit GraphicProcess;
interface
uses
Windows, Classes, Sysutils, Messages, Graphics, Jpeg;
Type
//图像处理类
... |
(* This is file is part of PasLibVlcDemo program
*
* 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
* (at your option) any later version.
*
* This progr... |
unit DataObjectCache;
interface
//{$Message Warning 'This code using OLD, primitive threading techniques'}
uses
debug, DataObjectXref, classes, sysutils, Dataobject, generics.collections,
PersistentInterfacedObject, betterobject, sharedobject, stringx;
const
XREF_STRING_CACHE_SIZE = 5;
type
//##################... |
unit cbWatchThread;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, cbClass, cbAppClass;
type
TWatchThread = class(TMessageQueueThread)
private
{ Private declarations }
FMsgSubject: TMessageSubject;
FLastExecute: TDateTime;
FParam: TAppParam;
FPeriod: TAppPeriod;
procedur... |
uses WPFObjects, ArduinoABC;
const
scale = 0.5;
xPin = 0;
yPin = 1;
buttonPin = 7;
//Инициализация экземпляра Arduino
var
myUno := new Arduino('COM4');
// Парсинг строки вида "511;400;1;" - координаты джойстика и статус кнопки
function GetJoyStickState() : (real, real, boolean);
begin
Result := (rea... |
unit Horse.NewProject.View;
interface
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Imaging.pngimage, Vcl.ExtCtrls, Horse.Wizard.Types,
Horse.Middlewares, System.Generics.Collections;
type
THorseView... |
{*******************************************************}
{ }
{ Vladimir Gaitanoff Delphi VCL Library }
{ Report components for MS Word: TDataSet }
{ }
{ Copyright (c) 1... |
unit uNFSeComunicacao;
interface
uses
Windows, Classes, SysUtils, uDados, SOAPHTTPTrans;
type
TNFSeComunicacao = class
private
FServidorNFSe: IServidorNFSe;
function CriarHttp(AMetodo: widestring): THTTPReqResp;
protected
function dirSchema: string; virtual;
function ValidarXml(AXml, AMetodo:... |
unit ParamTest.Utils;
interface
const
HELP_PARAM0 = '?';
HELP_PARAM1 = 'h';
HELP_PARAM2 = 'help';
HelpParams: array [0..2] of string = (
HELP_PARAM0, HELP_PARAM1, HELP_PARAM2
);
KILOBYTE = 1024;
MEGABYTE = KILOBYTE * KILOBYTE;
GIGABYTE = MEGABYTE * KILOBYTE;
HexVolumes: array [0..15] of strin... |
{$MODE OBJFPC}
program STRHFI;
const
maxN = 1000;
maxD = 20;
maxM = (maxN - maxD + 1) * 2;
type
TInfo = (Head, Tail);
TToken = record
s : String[maxD - 1];
flag : TInfo;
end;
var
token : array[0..maxM] of TToken;
numHead, numTail, link : array[1..maxM] of Integer;
n, d, m, c... |
unit AidTdmDatbaseLifetime;
{ ------------------------------------------------------------------------------------------------------------
Name : d_tDatbaseLifetime
Author : Alex carrell
Description : Database abstraction.
Modified :
AJC : initial version
22Jan2007 : placed centr... |
unit DW.Toast.Android;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library }
... |
unit LoginBindUI;
////////////////////////////////////////////////////////////////////////////////
//
// Description:
// Author: lksoulman
// Date: 2017-8-12
// Comments:
//
////////////////////////////////////////////////////////////////////////////////
interface
uses
Windows,
Messages,
SysUtils,
... |
unit Foundation.Test.Mock.Classes;
{******************************************************************************}
{ }
{ Foundation Framework }
{ ... |
unit frmSnapShotU;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, Grids, DBGrids, DB, Buttons, fraChineseYMDU ,DBClient;
type
TfrmSnapShot = class(TForm)
Panel1: TPanel;
Panel2: TPanel;
edtAlias: TEdit;
Label1: TLabel;
... |
unit DynamicLoader;
{$include opts.inc}
interface
uses
USystem, Utils;
type
pDLLoader = ^DLLoader;
DLLoader = object
type
ParaLoadHook = procedure(dl: pDLLoader);
UnparaLoadHook = procedure;
scoped_enum_ LoadHookKind = (NotSet, Parametrized, Unparametrized); _end
LoadHook = record
cas... |
unit DW.NativeImage.Android;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
unit Transaction;
interface
uses
typex, stringx, systemx, commandprocessor, sysutils, debug;
//what this is:
// - this is an abstract transactional model. As it is, it does nothing
// but setup the scaffolding you'll need to build your own transactional
// models.
//How derives classes will be used:
// - The... |
unit MFRiver;
interface
{MFRiver defines the "Line River Unit[i]" and "Area River Unit[i]" layers
and the associated parameters and Parameterlist.}
uses ANE_LayerUnit, SysUtils;
type
TRiverBottomParam = class(T_ANE_LayerParam)
class Function ANE_ParamName : string ; override;
function Units : string; ove... |
unit unfraLocalidad;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, unArtDbFrame, StdCtrls, Mask, ToolEdit,
ArtComboBox, IntEdit, Db, SDEngine, ExComboBox, unArt, CheckCombo, PatternEdit, ComboEditor;
type
TfraLocalidad = class(TArtDbFrame)
lbCPostal: TLabel;
l... |
unit fOrdersRenew;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
fAutoSz, StdCtrls, ORFn, ComCtrls, uConst, rODMeds, uOrders, fOCAccept,
ExtCtrls, uODBase, ORCtrls, VA508AccessibilityManager, rOrders;
type
TfrmRenewOrders = class(TfrmAutoSz)
hdrOrders: THeaderCo... |
{*******************************************************}
{ }
{ Delphi FireDAC Framework }
{ FireDAC Base dialog form }
{ }
{ Copyright(c) 2004-2017... |
unit InputDate;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Mask, JvExMask, JvToolEdit, JvMaskEdit, JvCheckedMaskEdit,
JvDatePickerEdit;
type
TInputDateForm = class(TForm)
lblPrompt: TLabel;
dpDate: TJvDatePickerEdit;
b... |
unit SoundConversions_CommandLine;
{$Message '********************************Compiling SoundConversions_CommandLine'}
interface
{$IFDEF MSWINDOWS}
uses
exe, typex, commandprocessor, sysutils, tools, systemx;
const
FFMPEG_TIMEOUT = 90000;
procedure EndVideoToMp3(c: Tcmd_RunExe);
function BeginVideoToSafeVide... |
unit ComponentHelperUnit;
interface
uses
Classes;
type
TComponentEnumerator = class(TObject)
strict private
FMinValue: Integer;
FMaxValue: Integer;
FValue: Integer;
FComponent: TComponent;
public
constructor Create(const Component: TComponent);
destructor Destroy; over... |
unit uLWDataModule;
interface
uses
System.SysUtils, System.Classes, Data.DB, Data.Win.ADODB,System.JSON,
Data.DBXPlatform,System.Generics.Collections, ulwTable,System.Variants,
System.NetEncoding,Windows, DateUtils, Datasnap.DBClient,System.IniFiles,Forms,dialogs;
type
{$METHODINFO ON}
TLwDataModule = class(... |
unit UntBrandInfo;
interface
uses
Classes;
type
TBrandInfo = class(TObject)
private
Factive: Boolean;
Fbrand: string;
Fcode: string;
Fid: Integer;
procedure Setactive(const Value: Boolean);
procedure Setbrand(const Value: string);
procedure Setcode(const Value: strin... |
unit VvarMatrixIF;
interface
uses
System.Classes, ThreeDimTypes, MatrixTypes;
type
IVvarCell = interface(I3DimCell)
['{FF237668-F8C1-4D83-B89C-7E80061D5F22}']
function GetErrCode: SmallInt; stdcall;
function GetIzmNum: LongWord; stdcall;
function GetMemory: TMemoryStream; stdcall;
function Get... |
unit Deque.Intf;
interface
type
IDeque<T> = interface
function IsEmpty: boolean;
procedure PushBack(const element: T);
procedure PushFront(const element: T);
function PopBack: T;
function PopFront: T;
end;
implementation
end.
|
unit U_Version;
interface
const
C_Major=4;
C_Minor=0;
C_Release=0;
C_Revision=31078;
C_Date=42761.6684571528;
C_DB_Revision=5931;
implementation
end. |
unit frmMainU;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, Buttons, Encryption_TLB;
type
TForm1 = class(TForm)
Panel1: TPanel;
Panel2: TPanel;
Label1: TLabel;
edtIniFileName: TEdit;
SpeedButton1: TSpeedButton;
me... |
unit UClassHelper;
interface
uses
StdCtrls, DBCtrls, Graphics, Controls;
type
TEditX = class(TEdit)
private
FOldColor: TColor;
protected
procedure DoEnter; override;
procedure DoExit; override;
end;
TEdit = class(TEditX)
end;
TDBEditX = class(TDBEdit)
private
FOldColor: TColor;
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.