text stringlengths 14 6.51M |
|---|
unit UBarcodeDemo;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls,
FMX.Objects, FMX.TMSCloudImage, FMX.TMSCloudBase, FMX.TMSCloudBaseFMX,
FMX.TMSCloudCustomBarcode, FMX.TMSCloudBarcode,... |
{**************************************************************************\
*
* Module Name: PMFONT.H
*
* OS/2 Presentation Manager type declarations for Fonts.
*
* Copyright (c) International Business Machines Corporation 1981, 1988-1990
*
\**************************************************************************}
... |
PROGRAM TresEnRaya;
USES
CRT;
CONST
INI = 1;
FIN = 3;
TYPE
TTablero = ARRAY [INI..FIN, INI..FIN] OF char;
PROCEDURE Inicializar (VAR t: TTablero);
VAR
i, j: integer;
BEGIN
FOR i:= INI TO FIN DO
FOR j:= INI TO FIN DO
t[i,j] := '-';
END;
PROCEDURE Mostrar (t: TTablero);
VAR
i, j: in... |
unit FileClass;
{
Inno Setup
Copyright (C) 1997-2010 Jordan Russell
Portions by Martijn Laan
For conditions of distribution and use, see LICENSE.TXT.
TFile class
Better than File and TFileStream in that does more extensive error checking
and uses descriptive, localized system error messages.
TTextFil... |
unit uClienteEmailVO;
interface
uses
System.SysUtils, uTableName, uKeyField;
type
[TableName('Cliente_Email')]
TClienteEmailVO = class
private
FEmail: string;
FId: Integer;
FIdCliente: Integer;
FNotificar: Boolean;
procedure SetEmail(const Value: string);
procedure SetId(const Value: ... |
{
Copyright © 1999 by Harris Software Ltd
Author:Kyley Harris
Kyley@HarrisSoftware.com
------------------------------------------------------------------------------}
unit uHssStringsCSV;
interface
uses
sysutils,
classes;
type
THssCustomStringsCSV = class(TStringList)
private
FCSVDelim: char;
... |
unit DamFind;
interface
uses
{$IFDEF FPC}
Forms, StdCtrls, Controls, ExtCtrls, Classes,
{$ELSE}
Vcl.Forms, Vcl.StdCtrls, Vcl.Controls, Vcl.ExtCtrls, System.Classes,
{$ENDIF}
DamUnit;
type
TFrmDamFind = class(TForm)
Label1: TLabel;
EdText: TEdit;
L: TListBox;
BoxDIO: TPanel;
BtnCancel: TBu... |
unit uCadVeiculos;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, UFrmPadrao, Data.DB, Vcl.StdCtrls,
Vcl.ExtCtrls, ZDataset, Vcl.Mask,
Vcl.ComCtrls, Vcl.DBCtrls, Vcl.Buttons,uClientes,uDtmPrincipal,
RxTool... |
unit evdTypes;
{* Базовые типы, используемые форматом EVD. }
// Модуль: "w:\common\components\rtl\Garant\EVD\evdTypes.pas"
// Стереотип: "Interfaces"
// Элемент модели: "Types" MUID: (469D0AC7005E)
{$Include w:\common\components\rtl\Garant\EVD\evdDefine.inc}
interface
uses
l3IntfUses
;
const
CI_TOPIC = 65537;
... |
{ RxAboutDialog
Copyright (C) 2005-2010 Lagunov Aleksey alexs@hotbox.ru and Lazarus team
original conception from rx library for Delphi (c)
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foun... |
unit NewProgressBar;
{
Inno Setup
Copyright (C) 1997-2006 Jordan Russell
Portions by Martijn Laan
For conditions of distribution and use, see LICENSE.TXT.
TNewProgressBar component - a smooth TProgressBar for Delphi 2 and a 32 bit
TProgressBar for Delphi 2 and all platforms
Note: themed Vista and newer... |
unit KSCParser;
{$reference 'System.Data.dll'}
uses System.Data, Types;
function CutFromText(s: string; delim1, delim2: string): string;
begin
var a, b: integer;
a:=s.IndexOf(delim1);
b:=s.IndexOf(delim2);
Result := Copy(s,a+delim1.Length+1,b-a-delim1.Length);
end;
function OutOfContext(s: string... |
unit fbkOUTLINETable;
interface
uses
Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf;
type
TfbkOUTLINERecord = record
PTopicID: Integer;
PProject: String[10];
PDescription: String[40];
PParentTopic: Integer;
PStatusID: Integer;
PComments: String[60];
End;
T... |
unit TextEditorVisitor;
{* Тест, работающий с текстом документа через редактор, но не изменяющий его }
// Модуль: "w:\common\components\gui\Garant\Daily\TextEditorVisitor.pas"
// Стереотип: "TestCase"
// Элемент модели: "TTextEditorVisitor" MUID: (4BE425C70228)
{$Include w:\common\components\gui\sdotDefine.inc}
int... |
unit ExtAIEvents;
interface
uses
Classes, SysUtils,
ExtAIMsgEvents, ExtAINetClient, ExtAISharedInterface;
// Events of the ExtAI
type
TExtAIEvents = class
private
fEvents: TExtAIMsgEvents;
public
constructor Create();
destructor Destroy(); override;
property Msg: TExtAIMsgEvents read fEvent... |
unit MagazinePushFrame;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls,
System.Generics.Collections, task_1, Vcl.Grids;
type
TFrame2 = class(TFrame)
NameEdit: TLabeledE... |
unit uGame;
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.Effects, FMX.StdCtrls, Math, FMX.Ani, FMX.Filter.Effects, FMX.Layouts,System.IOUtils,
System.IniFiles, FMX.Platform;
type
... |
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.Controls.Presentation, FMX.ScrollBox, FMX.Memo,
DateUtils,
Quick.Commons,
Quick.Threads, FMX.StdCtrls, FMX.Layouts;
type
TMyJob =... |
unit UWIZSendPASC_EnterQuantity;
{$mode delphi}
{$modeswitch nestedprocvars}
{ Copyright (c) 2018 Sphere 10 Software (http://www.sphere10.com/)
Distributed under the MIT software license, see the accompanying file LICENSE
or visit http://www.opensource.org/licenses/mit-license.php.
Acknowledgements:
Ugochuk... |
unit uIConverter;
interface
uses
System.Classes;
type
IConverter = interface
['{1E9EB0EC-68FC-4592-94C2-99CAE7C7345A}']
function Converter: string;
function GetTexto: string;
procedure SetTexto(const value: string);
property Texto: string read GetTexto write SetTexto;
end;... |
unit Form.Main;
interface
{$SCOPEDENUMS ON}
uses
System.Types, System.Classes, FGX.Forms, FGX.Forms.Types, FGX.Controls, FGX.Controls.Types, FGX.Layout,
FGX.Layout.Types, FGX.Button.Types, FGX.Button, FGX.Memo;
type
TFormMain = class(TfgForm)
fgMemo1: TfgMemo;
fgButton1: TfgButton;
procedure fgB... |
unit Model.Interceptor.Edit;
interface
uses
Vcl.StdCtrls,
Vcl.ExtCtrls,
System.Classes;
type
TEdit = class(Vcl.StdCtrls.TEdit)
private
FShape: TShape;
FMinLength: integer;
FLblError: TLabel;
procedure SetMinLength(const Value: integer);
protected
procedure Loaded; overrid... |
unit fmuNodeAttributes;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, AtrPages, ToolCtrlsEh, ComCtrls, ToolWin,
GridsEh, DBGridEh, DB, FIBDataSet, pFIBDataSet, ActnList,
DBGridEhToolCtrls, DBAxisGridsEh, System.Actions, PrjConst,
EhLibVCL, System.UITypes... |
unit IdAboutDotNET;
interface
uses
System.Drawing, System.Collections, System.ComponentModel,
System.Windows.Forms, System.Data;
type
TfrmAbout = class(System.Windows.Forms.Form)
{$REGION 'Designer Managed Code'}
strict private
/// <summary>
/// Required designer variable.
/// </s... |
unit TestServer;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, IdBaseComponent, IdComponent,
IdCustomTCPServer, IdCustomHTTPServer, IdHTTPServer, Vcl.XPMan, Vcl.StdCtrls,
IdContext;
type
TfmTestServer = ... |
//***********************************************************
// InventorySystem
//
// Copyright (c) 2002 Failproof Manufacturing Systems
//
//***********************************************************
//
// 10/31/2002 Aaron Huge Initial creation
unit Logon;
interface
uses
Windows, Messages, Sy... |
unit UDemo;
interface
uses
SysUtils, Types, UITypes, Classes,
Variants, FMX.Forms, FMX.Types, FMX.TMSBaseControl, FMX.TMSTableView,
FMX.TMSBitmapContainer, FMX.Objects, FMX.TMSBitmap, FMX.Controls,
FMX.TMSBarButton, FMX.TMSPopup, FMX.ListBox, FMX.StdCtrls;
type
TForm536 = class(TForm)
TMSFMXBitmapCont... |
unit Recording;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, ComCtrls, StdCtrls, Buttons, ToolWin, ImgList, CommCtrl,
INIFiles, ID3v2LibraryDefs;
type
TfrmRecording = class(TForm)
lblInfo: TLabel;
pbBuffer: TProgressBar;
SaveDialog: ... |
unit URemoveGridLines;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
System.Math,FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls, FMX.Grid,
FMX.Layouts, FMX.Edit;
procedure RemoveRows(strgrid : TStringGrid;StartRow,RemoveRows : integer);
implement... |
{ GDAX/Coinbase-Pro client library
Copyright (c) 2018 mr-highball
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, co... |
unit ECC200procs;
{===============================================================================
DataMatrix Barcode standard ECC200.
(c) 2012 QBS Software Ltd
http://www.qbs.co.uk
================================================================================}
interface
uses
Windows, Messages, S... |
// Filename : Hashtable.pas
// Version : 1.1 (Delphi)
// Date : July 4, 2003
// Author : Jeff Rafter
// Details : http://xml.defined.net/SAX/aelfred2
// License : Please read License.txt
unit Hashtable;
// !! This is meant to be upgraded !! -- I know it is awful.
interface
{$WEAKPACKAGEUNIT ON}... |
unit DelphiTwain_FMX;
{$I DelphiTwain.inc}
interface
uses
SysUtils, Classes, DelphiTwain, Twain, Messages, Windows, FMX.Types, UITypes,
FMX.Forms
{$IFDEF DELPHI_XE5_UP}, FMX.Graphics{$ENDIF}
;
type
TOnTwainAcquire = procedure(Sender: TObject; const Index: Integer;
Image: TBitmap; var Cancel: Boolean) ... |
{ *******************************************************************************
Copyright (c) 2004-2010 by Edyard Tolmachev
IMadering project
http://imadering.com
ICQ: 118648
E-mail: imadering@mail.ru
******************************************************************************* }
unit TrafficU... |
unit D_CorrectExportFolder;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, RBtnDlg, StdCtrls, Buttons, ExtCtrls, vtCtrls, vtRadioButton,
vtLabel;
type
TTCorrectExportFolder = class(TRBtnDlg)
btnSelectDir: TSpeedButton;
vtLabel1: TvtLabel;
rbChan... |
{===============================================================================
CRC32 Calculation
©František Milt 2013-11-22
Version 1.3.1
===============================================================================}
unit CRC32;
interface
uses
Classes;
type
TCRC32 = LongWord;
PCRC32 = ^TCRC32;
const
... |
{
Clever Internet Suite
Copyright (C) 2013 Clever Components
All Rights Reserved
www.CleverComponents.com
}
unit clUriUtils;
interface
{$I clVer.inc}
{$IFDEF DELPHI6}
{$WARN SYMBOL_PLATFORM OFF}
{$ENDIF}
uses
clWinInet, clWUtils;
type
TclUrlType = (utUnknown, utFTP, utGOPHER, utHTTP, utHTTPS, utFILE,... |
{$MODE OBJFPC}
program COCI6;
const
InputFile = 'WEIGHT.INP';
OutputFile = 'WEIGHT.OUT';
maxN = Round(1E6);
type
TStack = record
items: array[1..maxN] of Integer;
top: Integer;
end;
TArr = array[1..maxN] of Integer;
var
a: array[1..maxN] of Integer;
lmax, rmax, lmin, rmin: TArr;
stack: TStack... |
unit PatchExeUnit;
{
Freeware downloaded from delphipraxis.net
Author: sx2008
Date: 2010-01-05
}
interface
type
TExeData = record
MagicWord : array[0..11] of Ansichar;
Checksum : Cardinal;
BrandingDate : TDateTime;
Data : array[0..19] of Ansichar;
end;
PExeData = ^TExeData;
... |
unit formSOListExample;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, SOList,
FMX.Layouts, FMX.Controls.Presentation, FMX.StdCtrls, FireDAC.Stan.Intf,
FireDAC.Stan.Option, FireDAC.Stan.Param, FireDA... |
unit DirectoryServerProtocol;
interface
type
TAccountId = string;
const
DIR_NOERROR_StillTrial = -1;
DIR_NOERROR = 0;
DIR_ERROR_Unknown = 1;
DIR_ERROR_AccountAlreadyExists = 2;
DIR_ERROR_UnexistingAccount = 3;
DIR_ERROR_SerialMaxed =... |
unit sina_InfoApp;
interface
uses
cef_apiobj,
HostWnd_chromium,
define_dealitem,
BaseStockApp;
type
TSinaInfoApp = class(TBaseStockApp)
protected
fCefClientObject: cef_apiobj.TCefClientObject;
fStockIndex: integer;
fHostWindow: HostWnd_chromium.THostWndChromium;
procedure LoadU... |
{ GDAX/Coinbase-Pro client library
Copyright (c) 2018 mr-highball
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, co... |
{
DBAExplorer - Oracle Admin Management Tool
Copyright (C) 2008 Alpaslan KILICKAYA
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at... |
unit Thread.ImportarPedidosSIMExpress;
interface
uses
System.Classes, Control.Entregas, Control.PlanilhaEntradaSIMExpress, System.SysUtils, System.DateUtils, Control.VerbasExpressas,
Control.Bases, Control.EntregadoresExpressas, Generics.Collections, System.StrUtils;
type
TThread_ImportarPedidosSIMExpress = cl... |
unit fmMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, uEventAgg, uEvents, uModel;
type
TfrmMain = class(TForm)
Edit5: TEdit;
Edit6: TEdit;
Edit7: TEdit;
Edit8: TEdit;
btnPrev: TButton;
btnNext: TButton;
btnBarChart:... |
unit Main;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, uniGUIBaseClasses, uniGUIClasses,
uniButton, Vcl.StdCtrls, Vcl.ExtCtrls;
type
TMainForm = class(TForm)
Panel1: TPanel;
Button1: TButton;
... |
{ ***************************************************************************
Copyright (c) 2015-2019 Kike Pérez
Unit : Quick.Config.YAML
Description : Save config to YAML file
Author : Kike Pérez
Version : 1.0
Created : 12/04/2019
Modified : 27/04/2019
This file is ... |
unit LS.ServiceModule;
interface
uses
System.SysUtils, System.Classes, System.Android.Service, System.Sensors, System.Notification,
Androidapi.JNI.App, AndroidApi.JNI.GraphicsContentViewText, Androidapi.JNI.Os, Androidapi.JNIBridge,
AndroidApi.JNI.JavaTypes,
DW.FileWriter, DW.MultiReceiver.Android, DW... |
(*
* iocp 线程锁、线程基类
*)
unit iocp_baseObjs;
interface
{$I in_iocp.inc} // 模式设置
uses
{$IFDEF DELPHI_XE7UP}
Winapi.Windows, System.Classes, System.SysUtils, Winapi.ActiveX, {$ELSE}
Windows, Classes, SysUtils, ActiveX, {$ENDIF}
iocp_base, iocp_log;
type
// ===================== 线程... |
{$mode delphi}
unit uSHA256; {taken from fundamentals. see license at bottom of file }
interface
type
T256BitDigest = record
case integer of
0 : (Longs : array[0..7] of LongWord);
1 : (Words : array[0..15] of Word);
2 : (Bytes : array[0..31] of Byte);
end;
{ ... |
program gcd(input, output);
var
n, m : integer;
function gcd(n, m : integer) : integer;
var
rem : integer;
begin
while m <> 0 do
begin
rem := n mod m;
n := m;
m := rem;
end;
gcd := n
end;
begin
write('(n, m) : ');
read(n, m);
writeln('GCD(', n, ', ', m, ') = ', gcd(n, m))
end.
|
unit Charge;
interface
uses
Pkg.Json.DTO, System.Generics.Collections, REST.Json.Types;
{$M+}
type
TBilling = class
private
FBirthDate: string;
FDocument: string;
FEmail: string;
FName: string;
FNotify: Boolean;
FPhone: string;
FSecondaryEmail: string;
publishe... |
object fmCodeOptions: TfmCodeOptions
Left = 442
Top = 167
BorderIcons = [biSystemMenu, biMaximize]
Caption = 'Code Librarian Options'
ClientHeight = 241
ClientWidth = 321
Color = clBtnFace
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Tahoma'
Fo... |
{ Subroutine SST_W_C_DTYPE_VREC (FIELD_P)
*
* Write data type definition of a variant within a record. On entry,
* FIELD_P is pointing to the first field within each variant (overlay).
* On return, it will be pointing to the next field after the last field
* in this overlay, or NIL if no fields follow this o... |
{ behavior3delphi - a Behavior3 client library (Behavior Trees) for Delphi
by Dennis D. Spreen <dennis@spreendigital.de>
see Behavior3.pas header for full license information }
unit Behavior3.Core.Decorator;
interface
uses
System.JSON,
Behavior3, Behavior3.Core.BaseNode;
type
(**
* Decorator is the base... |
unit DAO.Acareacao;
interface
uses
FireDAC.Comp.Client, System.SysUtils, DAO.Conexao, Model.Acareacoes;
type
TAcareacaoDAO = class
private
FConexao : TConexao;
public
constructor Create;
function GetID(): Integer;
function Inserir(AAcareacoes: TAcareacoes): Boolean;
func... |
unit Rule_TROUGH;
interface
uses
BaseRule,
BaseRuleData;
(*//
TROUGH -- PEAK
TROUGH(CLOSE,N,1)
收盘价N%之字转向的前1个波谷值
//*)
type
TRule_TROUGH = class(TBaseRule)
protected
fParamA: Word;
fInt64Ret: PArrayInt64;
fFloatRet: PArrayDouble;
function Get_TROUGH_ValueF(AIndex: integer): double;
functio... |
{ Subroutine SST_R_PAS_RAW_SMENT
*
* Create new opcodes from the RAW_STATEMENT syntax. All opcodes will be of
* "executable" type.
}
module sst_r_pas_RAW_SMENT;
define sst_r_pas_raw_sment;
%include 'sst_r_pas.ins.pas';
procedure sst_r_pas_raw_sment; {build opcodes from RAW_STATEMENT syntax}
const
max... |
unit uCardapio;
interface
uses
System.Classes;
type TCardapio = class(TPersistent)
private
FPRO_VALORINTEIRA: Double;
FPRO_GRUPO: Integer;
FPRO_VALORMEIA: Double;
FPRO_DESCRICAO: String;
FPRO_CODIGO: Integer;
procedure SetPRO_CODIGO(const Value: Integer);
procedure SetP... |
unit mnSynUtils;
{$mode delphi}
{**
* Light PHP Edit project
*
* This file is part of the "Mini Library"
*
* @url http://www.sourceforge.net/projects/minilib
* @license modifiedLGPL (modified of http://www.gnu.org/licenses/lgpl.html)
* See the file COPYING.MLGPL, included in this di... |
unit App;
{ Based on 013_striped_cubes.cpp example from oglplus (http://oglplus.org/) }
{$INCLUDE 'Sample.inc'}
interface
uses
System.Classes,
Neslib.Ooogles,
Neslib.FastMath,
Sample.Geometry,
Sample.App;
type
TStripedCubesApp = class(TApplication)
private
FProgram: TGLProgram;
FVerts: TGLBuf... |
{***********************************************************************************************************************
*
* TERRA Game Engine
* ==========================================
*
* Copyright (C) 2003, 2014 by SÚrgio Flores (relfos@gmail.com)
*
***************************************************... |
{$I ACBr.inc}
unit ASCIOTReg;
interface
uses
SysUtils, Classes, ASCIOT, pcnConversao,
{$IFDEF VisualCLX} QDialogs {$ELSE} Dialogs, FileCtrl {$ENDIF},
{$IFDEF FPC}
LResources, LazarusPackageIntf, PropEdits, componenteditors
{$ELSE}
{$IFNDEF COMPILER6_UP}
DsgnIntf
{$ELSE}
DesignIntf,... |
{*********************************************************}
{* VPEDPOP.PAS 1.03 *}
{*********************************************************}
{* ***** BEGIN LICENSE BLOCK ***** *}
{* Version: MPL 1.1 ... |
{ ***************************************************************************
Copyright (c) 2015-2021 Kike Pérez
Unit : Quick.Options
Description : Configuration group settings
Author : Kike Pérez
Version : 1.0
Created : 18/10/2019
Modified : 15/12/2021
This file is part of Qui... |
//---------------------------------------------------------------------------
// This software is Copyright (c) 2015 Embarcadero Technologies, Inc.
// You may only use this software if you are an authorized licensee
// of an Embarcadero developer tools product.
// This software is considered a Redistributable as defin... |
unit uImportarNFeXLS;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, DB, ZAbstractRODataset, ZDataset, JvDialogs, ImgList,
Menus, ZAbstractDataset, Buttons, ExtCtrls, Grids, DBGrids, JvExDBGrids,
JvDBGrid, JvExStdCtrls, JvGroupBox, JvCombobox, ZCon... |
{-----------------------------------------------------------------------------
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/NPL/NPL-1_1F... |
{$REGION 'Copyright (C) CMC Development Team'}
{ **************************************************************************
Copyright (C) 2015 CMC Development Team
CMC 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 ... |
unit SctBtn;
{ ----------------------------------------------------------------
Ace Reporter
Copyright 1995-2004 SCT Associates, Inc.
Written by Kevin Maher, Steve Tyrakowski
---------------------------------------------------------------- }
interface
{$I ace.inc}
uses windows, SysUtils, Messages,... |
unit Backup;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ComCtrls, StdCtrls, Buttons, ErrorListDialog, VCLZip, VCLUnZip, kpZipObj,
FFSColorLabel, FFSReportProgress, ExtCtrls, sBitBtn;
type
TBackupProgress = procedure(percent:integer) of object;
TBac... |
// ***************************************************************************
//
// Delphi MVC Framework
//
// Copyright (c) 2010-2020 Daniele Teti and the DMVCFramework Team
//
// https://github.com/danieleteti/delphimvcframework
//
// ***************************************************************************
//
// ... |
unit BatchForwardGeocodeAddressUnit;
interface
uses SysUtils, BaseExampleUnit;
type
TBatchForwardGeocodeAddress = class(TBaseExample)
public
procedure Execute(Address: String);
end;
implementation
uses GeocodingUnit;
procedure TBatchForwardGeocodeAddress.Execute(Address: String);
var
ErrorString... |
{uMyExcel - модуль для выполнения основных операций с MS Excel
Разработчик Vlad
Сайт http://webdelphi.ru
E-mail: vlad383@mail.ru
Описание модуля:
Вся работа ведется через переменную MyExcel
[+] CheckExcelInstall - проверяет установлен ли Excel на компьютре
[+] CheckExcelRun - проверяет есть ил запущенный э... |
unit K607751255;
{* [RequestLink:607751255] }
// Модуль: "w:\common\components\rtl\Garant\Daily\K607751255.pas"
// Стереотип: "TestCase"
// Элемент модели: "K607751255" MUID: (56124E780397)
// Имя типа: "TK607751255"
{$Include w:\common\components\rtl\Garant\Daily\TestDefine.inc.pas}
interface
{$If Defined(nsTest)... |
unit uCadastraUsuario;
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, FMX.Layouts, FMX.Edit, FMX.ListBox,
FMX.MediaLibrary.Actions, Syste... |
unit SFXAutoRun;
interface
uses
SysUtils, Windows, IniFiles, ShellAPI;
type
TExecuteSFXAutoRunResult = record
AutoRunSectionAvailable: boolean;
ExecutionSucceed: boolean;
HInstance: Integer;
OpenUnzippedContent: boolean;
end;
function ExecuteSFXAutoRun(ADirectory: string): TExec... |
unit nsExternalObjectData;
(*-----------------------------------------------------------------------------
Название: nsExternalObjectData
Автор: Лукьянец Р. В.
Назначение: Реализация интерфайса InsLinkedObjectData для IExternalObject
Версия:
$Id: nsExternalObjectData.pas,v 1.10 2014/01/15 12:57:42 kostit... |
{ Subroutine SST_W_C_IMPLICIT_CONST (DTYPE,VAL,SYM_P)
*
* Create or reuse an implicit variable with a constant value. If an
* implicit variable exists with the same data type and value, then it
* is reused. Otherwise, a new variable is created.
}
module sst_w_c_IMPLICIT_CONST;
define sst_w_c_implicit_const;
%... |
unit DW.UIHelper.iOS;
{*******************************************************}
{ }
{ Kastri Free }
{ }
{ DelphiWorlds Cross-Platform Library }
... |
{ Subroutine SST_R_PAS_SMENT_DEFINE
*
* Process DEFINE_STATEMENT syntax. The tag for this syntax has just been read.
* This statement indicates that the named symbol will be globally know to the
* binder, and will be defined here.
}
module sst_r_pas_SMENT_DEFINE;
define sst_r_pas_sment_define;
%include 'sst_r_... |
unit kwMainFormFormClose;
{* Эмулирует выполнение FormClose главной формы, возращая после выполнения все в исходное состояние.
Формат:
[code]
MainForm:FormClose
[code] }
// Модуль: "w:\archi\source\projects\Archi\Archi_Insider_Test_Support\kwMainFormFormClose.pas"
// Стереотип: "ScriptKeyword"
// Элемент модели: "Ma... |
unit NotificationToastExport_TLB;
// ************************************************************************ //
// WARNING
// -------
// The types declared in this file were generated from data read from a
// Type Library. If this type library is explicitly or indirectly (via
// another type library referring to this... |
PROGRAM concordance (input, output);
CONST
tablesize = 1000;
maxwordlen = 20;
TYPE
charindex = 1..maxwordlen;
counttype = 1..1000;
tableindex = 1..tablesize;
wordtype = ARRAY [charindex] OF char;
entrytype = RECORD
word : wordtype;
count :... |
unit f2Decorators;
interface
uses
Classes,
d2dTypes,
d2dInterfaces,
d2dClasses,
d2dUtils,
d2dSprite,
d2dStaticText,
d2dGUIButtons,
d2dGUITypes,
furqTypes,
furqContext,
f2Types,
f2DecorScript,
f2FontPool,
JclStringLists;
type
Tf2DecoratorList = class;
Tf2SingleTargetProcessor = class;
If2ActionD... |
unit fmuCustomerLetters;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, AtrPages, ToolCtrlsEh, ComCtrls, ToolWin,
GridsEh, DBGridEh, DB, FIBDataSet, pFIBDataSet, ActnList,
DBGridEhToolCtrls, Buttons, ExtCtrls, DBAxisGridsEh,
System.Actions, PrjConst, EhLi... |
unit nsFolderFilterInfo;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "Search"
// Модуль: "w:/garant6x/implementation/Garant/GbaNemesis/Search/nsFolderFilterInfo.pas"
// Родные Delphi интерфейсы (.pas)
// Generated from UML mo... |
unit DriveCombo;
// Copyright (c) 1998 Jorge Romero Gomez, Merchise
interface
uses
Windows, Messages, SysUtils, Classes, Controls, StdCtrls,
Graphics;
// TDriveComboBox
type
TFilterDrive = procedure( Drive : char; var SkipDrive : boolean ) of object;
type
TDriveType = ( dtUnknown, dtNoDri... |
unit tcDifference;
interface
uses
tcInterfaces
;
procedure tcBuildDifference(const aSource, aNew: ItcToolBarsList; OldMode: Boolean;
out anAddedToolbars: ItcAddedToolBarsList; out aChangedToolBars: ItcChangedToolBarsList);
implementation
uses
SysUtils,
l3Base,
l3Types,
l3String,
tcAddedToolBarsList,
tc... |
{ Pubby - a flexible pub/sub implementation
Copyright (c) 2018 mr-highball
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 t... |
unit K599800930;
{* [Requestlink:599800930] }
// Модуль: "w:\common\components\rtl\Garant\Daily\K599800930.pas"
// Стереотип: "TestCase"
// Элемент модели: "K599800930" MUID: (5559ED00003A)
// Имя типа: "TK599800930"
{$Include w:\common\components\rtl\Garant\Daily\TestDefine.inc.pas}
interface
{$If Defined(nsTest)... |
unit RealAvoidanceZoneProviderUnit;
interface
uses
SysUtils,
AvoidanceZoneUnit, IAvoidanceZoneProviderUnit;
type
TRealAvoidanceZoneProvider = class(TInterfacedObject, IAvoidanceZoneProvider)
protected
public
function AvoidanceZones: TAvoidanceZoneList;
end;
implementation
uses
DateUtils,
EnumsU... |
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics, Math,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls,
Vcl.ComCtrls, Vcl.ExtDlgs;
type
TForm1 = class(TForm)
Image2: TImage;
Button2: TButton;
... |
Unit RdSwitch;
{ This file contains routines to process some of cjpeg's more complicated
command-line switches. Switches processed here are:
-qtables file Read quantization tables from text file
-scans file Read scan script from text file
-qslots N[,N,...] Set com... |
unit vcmPrimCollectionItem;
{ Библиотека "vcm" }
{ Автор: Люлин А.В. © }
{ Модуль: vcmPrimCollectionItem - }
{ Начат: 03.04.2003 12:16 }
{ $Id: vcmPrimCollectionItem.pas,v 1.25 2011/07/29 15:08:37 lulin Exp $ }
// $Log: vcmPrimCollectionItem.pas,v $
// Revision 1.25 2011/07/29 15:08:37 lulin
// {RequestL... |
unit RouteParametersQueryUnit;
interface
uses
REST.Json.Types, HttpQueryMemberAttributeUnit, JSONNullableAttributeUnit,
GenericParametersUnit, NullableBasicTypesUnit, RouteParametersUnit, EnumsUnit;
type
/// <summary>
/// Route parameters accepted by endpoints
/// </summary>
TRouteParametersQuery = class... |
{
"name": "RockyRockNugget",
"players": [
2,
10
],
"creator": "(Metapod)",
"version": "1",
"date": "2016/07/02",
"description":"A barren rock with balanced spawns and evenly dispersed metal",
"planets": [
{
"name": "Chronosfear",
"mass": 5000,
... |
unit kwPopEditorSetStyle2Block;
{* [code]
aStyle anEditor pop:editor:SetStyle2Block
[code]
aStyle - номер стиля из таблицы стилей.
anEditor - редактор, в котором производятся изменения. }
// Модуль: "w:\archi\source\projects\Archi\Archi_Insider_Test_Support\kwPopEditorSetStyle2Block.pas"
// Стереотип: "ScriptKeyword... |
unit CustomWebBrowser;
interface
uses
Windows, ActiveX, SHDocVw_TLB, Mshtmhst, Messages, Graphics, controls;
const
navOpenInNewWindow = $1; //.rag
navNoHistory = $2;
navNoReadFromCache = $4;
navNoWriteToCache = $8;
navAllowAutosearch = $10;
navBrowserBar = $20; ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.