text
stringlengths
14
6.51M
unit InfoXCHKACCTTable; interface uses Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf; type TInfoXCHKACCTRecord = record PAcctID: String[4]; PModCount: String[1]; PName: String[30]; PAccountNo: String[20]; PNextChkNo: String[6]; PRConDate: String[8]; PRConBal...
{ *************************************************************************** Copyright (c) 2016-2018 Kike Pérez Unit : Quick.Service Description : Service functions Author : Kike Pérez Version : 1.1 Created : 14/07/2017 Modified : 30/08/2018 This file is part of QuickLib: http...
unit quaternion_lib; interface uses classes,streaming_class_lib,sysUtils; type TAbstractQuaternion=class(TStreamingClass) protected procedure set_A(val: Real); virtual; abstract; procedure set_X(val: Real); virtual; abstract; procedure set_Y(val: Real); virtual; abstract; procedure set_...
unit PE.Parser.Resources; interface uses System.SysUtils, PE.Common, PE.Types, PE.Types.Directories, PE.Types.Resources, PE.Resources; type TPEResourcesParser = class(TPEParser) protected FBaseRVA: TRVA; // RVA of RSRC section base FTree: TResourceTree; // Read resource...
{====================================================} { } { EldoS Visual Components } { } { Copyright (c) 1998-2003, EldoS Corporation } { ...
{ Unit with the basics to communicate with engines that use the winboard protocol. I used some code of the TProcess example also: https://lazarus-ccr.svn.sourceforge.net/svnroot/lazarus-ccr/examples/process/ } unit winboardConn; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Forms, Process, StdCtrls, Sorok...
unit Unit1; 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.Controls.Presentation, FMX.WebBrowser, System.RTTI; type TForm1 = class(TForm) WebBrowser1: TWebBrowser; ToolBar1...
{ Subroutine SST_SCOPE_NEW * * Create and initialize a new current scope. The previous current scope will * be the new parent scope. } module sst_SCOPE_NEW; define sst_scope_new; %include 'sst2.ins.pas'; procedure sst_scope_new; {create new scope subordinate to curr scope} var mem_p: util_mem_c...
UNIT BinTree; interface type NodePtr = ^Node; Node = record left, right: nodePtr; val: string; end; TreePtr = NodePtr; function newTree(val: string): NodePtr; procedure disposeTree(var t: TreePtr); procedure writeTreeInOrder(t: TreePtr); //function valueOf(n: Node...
unit FiveViewUtils; interface uses Classes, Controls; const xfPrefix = 'xfer_'; tidNonAvail = 'n/a'; function SetViewProp(View : TWinControl; Properties : TStringList) : boolean; procedure GetViewPropNames(View : TWinControl; Names : TStringList); implementation uses Forms; pr...
unit l3FontInfo; // Модуль: "w:\common\components\rtl\Garant\L3\l3FontInfo.pas" // Стереотип: "SimpleClass" // Элемент модели: "Tl3FontInfo" MUID: (5786531B02BD) {$Include w:\common\components\rtl\Garant\L3\l3Define.inc} interface uses l3IntfUses , l3CProtoObject , l3Interfaces , Graphics ; type Tl3FontInfo =...
{$include lem_directives.inc} unit LemDosGraphicSet; interface uses Classes, SysUtils, GR32, UMisc, LemTypes, LemMetaObject, LemMetaTerrain, LemGraphicSet, LemDosStructures, LemDosBmp, LemDosCmp, LemDosMisc; type TBaseDosGraphicSet = class(TBaseGraphicSet) private pro...
unit K620665614_B20410989; {* [RequestLink:620665614] } // Модуль: "w:\common\components\rtl\Garant\Daily\K620665614_B20410989.pas" // Стереотип: "TestCase" // Элемент модели: "K620665614_B20410989" MUID: (56FA6CCB0243) // Имя типа: "TK620665614_B20410989" {$Include w:\common\components\rtl\Garant\Daily\TestDefine.i...
{====================================================} { } { EldoS Visual Components } { } { Copyright (c) 1998-2002, EldoS } { ...
unit UApplication_impl; interface uses ComObj, ActiveX, ActiveXStarterKit_TLB, StdVcl; type TApplication_ = class(TAutoObject, IApplication) protected { Protected-Deklarationen } function Get_Version: WideString; safecall; procedure SendTextMessage(const text: WideString); safecall; ...
// Upgraded to Delphi 2009: Sebastian Zierer (* ***** 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 a...
unit PI.Types; interface type TAPIKeyMRU = TArray<string>; TDeviceInfo = record ChannelId: string; DeviceID: string; Token: string; OS: string; LastSeen: TDateTime; function Equals(const ADeviceInfo: TDeviceInfo): Boolean; end; TDeviceInfos = TArray<TDeviceInfo>; ...
{$I ok_sklad.inc} unit MetaPrice; interface uses MetaClass, MetaDiscount, MetaTax, XMLDoc, XMLIntf, Classes; type // !!! Some of this should go to the TMetaCurrency somehow TMetaPrice = class(TMetaClass) private FCalculateValue: Boolean; // enable .Value prop calculation form BasePri...
{$IfNDef l3FakeImpurity_imp} // Модуль: "w:\common\components\rtl\Garant\L3\l3FakeImpurity.imp.pas" // Стереотип: "Impurity" // Элемент модели: "l3FakeImpurity" MUID: (MSMA75ED92E7AC6) // Имя типа: "_l3FakeImpurity_" {$Define l3FakeImpurity_imp} _l3FakeImpurity_ = class(_l3FakeImpurity_Parent_) private f_Prop:...
unit UStopWatch; interface type IStopWatch = interface ['{ACEC2B05-9F77-4F60-A592-F3F51AD05F06}'] procedure Start; procedure Stop; procedure Reset; procedure ReStart; function GetRunning: Boolean; procedure SetRunning(const Value: Boolean); function MilliSe...
unit uFuns; interface uses FMX.Forms, System.Classes, System.SysUtils, FMX.Dialogs, uFrmBase, uGlobal; procedure ClosePage(AClassName: string = ''); procedure CreateForm(AOwner: TComponent; AFormName: string; APageIndex: Integer); implementation procedure CloseOtherPages(AClassName: string = ''); var i: Integ...
unit xpr.mmgr; { Author: Jarl K. Holta License: GNU Lesser GPL (http://www.gnu.org/licenses/lgpl.html) still thinking.. } {$I express.inc} interface uses SysUtils, xpr.express, xpr.dictionary, {$I objects.inc}; const //base array size of a temp storage used when moving objects between generations. ...
{*********************************************************************************************************************** * * TERRA Game Engine * ========================================== * * Copyright (C) 2003, 2014 by SÚrgio Flores (relfos@gmail.com) * ***************************************************...
unit Ufrm_Principal; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.ComCtrls, Data.DB, Data.Win.ADODB, Vcl.StdCtrls, Vcl.Grids, Vcl.DBGrids, Vcl.Mask, Vcl.DBCtrls, frxClass, frxDBSet, Datas...
unit fMainform; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, IdContext, IdBaseComponent, IdComponent, IdCustomTCPServer, IdTCPServer, StdCtrls, ShellAPI, Pipes, frPipePrinter, ExtCtrls, Generics.Collections; type TfrmMain = class(TForm) ...
unit enet_socket; (** @file win32.c @brief ENet Win32 system specific functions for freepascal 1.3.12 win32 => ENET_CALLBACK = _cdecl linux socket implementaion wasn't tested. *) {$ifdef APPLE} {$define HAS_GETADDRINFO} {$define HAS_GETNAMEINFO} {$define HAS_INET_PTON} {$define HAS_INE...
{******************************************************************************} { } { Delphi FB4D Library } { Copyright (c) 2018-2022 Christoph Schneider ...
unit MainUnit; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, IdTCPClient, IdGlobal, IdIOHandler, Windows, jwawinuser, IdHTTP, IdContext; type TConnectionThread = class(TThread) protected procedure Execute; override; procedure ConnectAnd...
{ This class implements a temporary file stream } unit TempStr; interface uses Classes; type TTempFileStream = class (TFileStream) private FFileName : string; FPrefix: string; function CreateTempFile(const APrefix : string): string; procedure AddToList; public constructor Create (const D...
unit MainFrm; // Simple demo of showing a "pseudo modal" that does not cover the entire screen 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.StdCtrls, FMX.Edit, ...
unit objSituacao; interface uses System.SysUtils, System.Classes, FireDAC.Comp.Client; type TSituacao = class(TObject) private Fcodigo: Integer; Fdescricao : String; Fconexao : TFDConnection; protected function getCodigo: Integer; function getDescricao: String; procedu...
unit ufrmKartuAR; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, ufrmDefaultLaporan, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, dxBarBuiltInMenu, Vcl.Menus, cxContainer, cxEdit, cxStyles,...
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Author: Shumkin Alexey Object: TSslSmtpNTLMCli class adds full NTLM support to TSslSmtpCli Creation: 08 April 2016 Version: 1.0.1 EMail: http://github.com/ashumkin Alex.Crezoff@gmail.com Support: Leg...
unit nsListSortTypeMap; {* реализация мапы "внутри системная строка языка"-"число - ID языка на адаптере"} {$Include nsDefine.inc } interface uses Classes, l3Interfaces, l3BaseWithID, l3ValueMap, l3Types, bsTypes, BaseTypesUnit, vcmExternalInterfaces, vcmInterfaces, L10nInterfaces ; const ...
unit dcCheckBox; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, dbctrls, datacontroller, db,sCheckBox; type TdcCheckBox = class(TsCheckBox) private Fclearing: boolean; procedure Setclearing(const Value: boolean); function GetDataBuf...
object formNumeroOC: TformNumeroOC Left = 192 Top = 107 BorderStyle = bsDialog Caption = 'Números de Ordens de Compras' ClientHeight = 273 ClientWidth = 265 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS Sans Serif' Font.S...
unit uL3ParserVsNewParser; { Delphi DUnit Test Case ---------------------- This unit contains a skeleton test case class generated by the Test Case Wizard. Modify the generated code to correctly setup and call the methods from the unit being tested. } interface uses TestFramework, System.SysUtils, Vcl....
{ *********************************************************** } { * TForge Library * } { * Copyright (c) Sergey Kasandrov 1997, 2016 * } { *********************************************************** } unit tfSHA1; {$I TFL.inc} {$IFDEF TFL_CPUX86_WIN32} ...
unit FFSRas; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ras; type TFFSRas = class(TComponent) private hRasConn : THRASCONN; FUserName: string; FUserPass: string; FEntryName: string; FConnected: boolean; nRasConnCount : DWORD...
{ 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 uHtml; interface const cstHTMLCss = '<!--body' +'{' +'margin: 0;' +'padding: 0;' +'display: flex;' +'justify-content:center;' +'align-items: center;' +'min-height: 100vh;' ...
unit cpp_dll_interface; { UNICODE Handling: NONE! All Strings are AnsiStrings! You have to manually convert WideStrings into UTF8 if you want to use this Parser! 16.10.2011 Ulrich Hornung } interface uses parser_types, Classes; const MaxListSize = MaxInt div 16; type ppAnsiChar = ^P...
{ Clever Internet Suite Copyright (C) 2014 Clever Components All Rights Reserved www.CleverComponents.com } unit clStreamLoader; interface {$I clVer.inc} uses {$IFNDEF DELPHIXE2} Classes, SysUtils, HTTPUtil, {$ELSE} System.Classes, System.SysUtils, Soap.HTTPUtil, {$ENDIF} clHttp; type TclStreamLoad...
{ Copyright (C) 2013-2019 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 atari_system1; interface uses {$IFDEF WINDOWS}windows,{$ENDIF} m6502,m68000,main_engine,controls_engine,gfx_engine,rom_engine,pokey, pal_engine,sound_engine,slapstic,ym_2151,atari_mo; function iniciar_atari_sys1:boolean; implementation const //System ROMS atari_sys1_bios:array[0..1] of...
unit Utils; interface uses Classes, SysUtils; type TLanguage = record System: record Charset: string; end; Links: record ThumbnailsHint: string; Index: string; Previous: string; Next: string; end; Titles: record MainPage: string; IndexNum: string; ...
unit gamma_function; interface uses math,graphics,windows; type RGBColor=packed record case Integer of 0: (R: byte; G: byte; B: byte; pad: byte); 1: (Color: TColor); end; PRGBScanline = ^TRGBScanline; TRGBScanline=array [0..32767] of RGBColor; PColorScanline = ^TColorScanline; TColorScanlin...
unit UBuscaRotas; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.ListView.Types, FMX.ListView.Appearances, FMX.ListView.Adapters.Base, FMX.StdCtrls, FMX.ListView, FMX.Edit, FMX.Controls.P...
unit uLang; interface const LangMin = 1000; LangMax = 9999; type TLang = class(TObject) private FL: array [LangMin..LangMax] of string; function IsNum(S: string): Boolean; public //** Конструктор. constructor Create; //** Деструктор. destructor Destroy; override; ...
{ Module of routines that generate comparison expressions. } module sst_r_syo_compare; define sst_r_syo_comp_var_int; define sst_r_syo_comp_var_sym; define sst_r_syo_set_mflag; %include 'sst_r_syo.ins.pas'; { ******************************************************* } procedure sst_r_syo_comp_var_int ( {create exp ...
unit chessconfig; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Forms; type { TChessConfig } TChessConfig = class public function GetResourcesDir: string; function GetCurrentSkinDir: string; end; var vChessConfig: TChessConfig; implementation {$ifdef Darwin} uses MacOSAll; {$endif...
unit uPluginEdit; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, uPlugin, FMX.StdCtrls, FMX.Controls.Presentation, FMX.Edit, FMX.ListBox, FMX.Objects, FMX.Layouts, System.Actions, FMX.ActnList, FMX.S...
unit StartUnit; // Модуль: "w:\garant6x\implementation\Garant\tie\Garant\GblAdapterLib\StartUnit.pas" // Стереотип: "Interfaces" // Элемент модели: "Start" MUID: (456FF1DD031C) {$Include w:\garant6x\implementation\Garant\nsDefine.inc} interface uses l3IntfUses , IOUnit , BaseTypesUnit , FoldersUnit , DocumentU...
unit SrvGeneralSheetForm; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, VisualControls, ObjectInspectorInterfaces, PercentEdit, GradientBox, FramedButton, SheetHandlers, ExtCtrls, FingerTabs, InternationalizerComponent; const tidSecurityId = 'SecurityI...
{ Author: Jarl K. Holta License: GNU Lesser GPL (http://www.gnu.org/licenses/lgpl.html) Runtime datatype representations } unit xpr.char; {$I express.inc} interface {$I objh.inc} uses SysUtils, xpr.express, xpr.objbase; type TCharObject = class(TEpObject) value: epChar; constructor Cre...
{ *********************************************************************************** } { * CryptoLib Library * } { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * } { * Github Repository <https://github.co...
unit Cloud.App; interface uses System.Console, System.Classes, System.SysUtils, System.DateUtils, App.Intf, DEX.Types, Cloud.Consts, Cloud.Utils, Cloud.Core; type TCloudApp = class(TInterfacedObject,IAppCore,IUI) private CloudCore: TCloudCore; Console: TConsole; pu...
unit clEstados; interface uses clConexao; type TEstados = class(TConexao) private function getNome: String; function getSigla: String; function getExecutante: String; function getData: TDateTime; procedure setSigla(const Value: String); procedure setNome(const Value: String); procedu...
{ Clever Internet Suite Copyright (C) 2013 Clever Components All Rights Reserved www.CleverComponents.com } unit clFtp; interface {$I clVer.inc} {$IFDEF DELPHI7} {$WARN UNSAFE_CODE OFF} {$WARN UNSAFE_TYPE OFF} {$ENDIF} uses {$IFNDEF DELPHIXE2} SysUtils, Classes, SyncObjs, {$ELSE} System.SysUtils, Sy...
unit Main; interface uses Windows, MMSystem, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, IniFiles, Misc, SensorFrame, DdhAppX, Menus, SyncObjs, ConvTP, ExtCtrls, NMUDP, DataTypes, SensorTypes, StdCtrls; type TMainThread = class; TFormMain = class(TForm) AppExt: TDdhAppExt; Pop...
program Project1; Type str25=string[25]; TBookRec= record Title, Author,ISBN:Str25; Price:real; end; Procedure EnterNewBook(var newBook:TBookRec); begin writeln('Please enter the book details: '); write('Book Name: '); readln(newBook.Title); write('Author: '); readln(newBook.Author); ...
{ ***************************************************************************** * * * This file is part of the iPhone Laz Extension * * * *...
unit uConsoleOutput; {$mode objfpc}{$H+} interface uses Classes, SysUtils; type { TLogger } TLogger = class(TObject) private FDebug: boolean; FVerbose: boolean; function IsDebug: boolean; function IsInfo: boolean; public constructor Create(const aDebug, aVerbose: boolean); proce...
{ Subroutine SST_EXP_SIMPLE (EXP) * * Return TRUE if the expression is "simple". This means it has only one term * and contains no function references. } module sst_EXP_SIMPLE; define sst_exp_simple; %include 'sst2.ins.pas'; function sst_exp_simple ( {check for expression is simple/complicated} i...
unit StepParamIntf; interface type IStepParam = interface(IInterface) ['{7A685760-0757-4A0F-B4AF-4DBB3513D061}'] function GetName: string; function GetValue: string; procedure SetName(const Value: string); procedure SetValue(const Value: string); property Name: string read GetName write SetNa...
unit clTipoOcorrencias; interface type TTiposOcorrencias = class(TObject) private function getCodigo(): String; function getDescricao(): String; procedure setCodigo(const Value: String); procedure setDescricao(const Value: String); function getOperacao: String; procedure setOperacao(const...
unit mappy_hw; interface uses {$IFDEF WINDOWS}windows,{$ENDIF} m6809,main_engine,controls_engine,gfx_engine,namco_snd,namcoio_56xx_58xx, rom_engine,pal_engine,sound_engine; function iniciar_mappyhw:boolean; implementation const //Mappy mappy_rom:array[0..2] of tipo_roms=( (n:'mpx_3....
{*************************************************************************} { TTodoList component } { for Delphi & C++Builder } { } { Copyright © 20...
unit uOrcamentoVectoVO; interface uses System.SysUtils, System.Generics.Collections, uTableName, uKeyField; type [TableName('Orcamento_Vectos')] TOrcamentoVectoVO = class private FValor: Currency; FDescricao: string; FId: Integer; FIdOrcamento: Integer; FData: TDate; FParcela: Integer...
// -------------------------------------------------------------------------- // Archivo del Proyecto Ventas // Página del proyecto: http://sourceforge.net/projects/ventas // -------------------------------------------------------------------------- // Este archivo puede ser distribuido y/o modificado bajo lo terminos ...
unit nsAppConfigRes; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Библиотека "Config" // Автор: Люлин А.В. // Модуль: "w:/garant6x/implementation/Garant/GbaNemesis/Config/nsAppConfigRes.pas" // Начат: 10.03.2010 17:49 // Родные Delphi ин...
namespace Sugar.IO; interface uses {$IF WINDOWS_PHONE OR NETFX_CORE} System.IO, {$ELSEIF COOPER} {$ELSEIF ECHOES} {$ELSEIF TOFFEE} {$ENDIF} Sugar, {$IF COOPER} com.remobjects.elements.linq, {$ENDIF} Sugar.Collections; type Folder = public class mapped to {$IF WINDOWS_PHONE OR NETFX_CORE}Win...
unit GX_BackupConfig; {$I GX_CondDefine.inc} interface uses SysUtils, Classes, Controls, Forms, StdCtrls, ExtCtrls, GX_BaseForm, Menus; type TfmBackupConfig = class(TfmBaseForm) gbxOptions: TGroupBox; cbBackupInc: TCheckBox; cbIncludeDir: TCheckBox; btnOK: TButton; btnCancel: ...
unit DAO.Cadastro; interface uses FireDAC.Comp.Client, System.SysUtils, DAO.Conexao, Model.Cadastro; type TCadastroDAO = class private FConexao : TConexao; public constructor Create; function GetID(): Integer; function Inserir(ACadastro: TCadastro): Boolean; function Alt...
{ CSI 1101-X, Winter, 1999 } { Identification: Mark Sattolo, student# 428500 } { tutorial group DGD-4, t.a. = Jensen Boire } program ExpressionEvaluate ; const Opers = ['+', '-', '^', '*', '/'] ; type element = string ; pointer = ^node ; node = record value: element ; nex...
unit DW.Androidapi.JNI.Log; {*******************************************************} { } { Kastri Free } { } { DelphiWorlds Cross-Platform Library ...
unit uTabPrecoController; interface uses System.SysUtils, uTabelaPrecoVO, Data.DBXJSON, Data.DBXJSONReflect, uConverter, System.Generics.Collections, uRegras, uDM, uFuncoesSIDomper, uDMTabPreco, uEnumerador, Vcl.Dialogs, Vcl.Forms, Data.DB; type TTabPrecoController = class private FModel: TDMTabPreco; ...
unit uSqlProject; interface uses SysUtils, Classes, uTextData; type TTextDataMethod = procedure(aTextData: THsTextData) of object; TSqlProject = class(TObject) private FProjectFolder: string; FTextDatas:array[TTextDataType] of TTextDatas; procedure SetProjectFolder(const Value: string); ...
unit extractimages; interface Uses MSXML2_TLB,Classes; Type TCallBackProc=procedure(message:string;percent:Integer) of object; Procedure ExtractImagesToFolder(DOM:IXMLDOMDocument2;Path:WideString;CallBack:TCallBackProc;FilesToClean:TStringList); implementation uses SysUtils,Variants; Procedure ExtractImagesToFo...
unit ShellIcons; // Copyright (c) 1996 Jorge Romero Gomez, Merchise. interface uses Windows, SysUtils, Graphics, ShellAPI; function GetDirectoryLargeIcon : HICON; function GetDirectorySmallIcon : HICON; function GetSystemLargeIcon( const FileName : string ) : HICON; function GetSystemSmallIcon( const ...
{====================================================} { } { EldoS Visual Components } { } { Copyright (c) 1998-2003, EldoS Corporation } { Portion copyright (c) 2001, Alexander Hra...
{ Copyright (C) 2013-2019 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 infoPOSTSOATable; interface uses Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf; type TinfoPOSTSOARecord = record PDatePaid: String[8]; PCheckNumber: String[10]; PtranType: String[1]; PAmount: Currency; PPmtType: String[2]; End; TinfoPOSTSOABuffer = class(...
unit evFacadeUtils; // Модуль: "w:\common\components\gui\Garant\EverestCommon\evFacadeUtils.pas" // Стереотип: "UtilityPack" // Элемент модели: "evFacadeUtils" MUID: (48EEF98B01FF) {$Include w:\common\components\gui\Garant\EverestCommon\evDefine.inc} interface uses l3IntfUses , evCommonTypes , evCustomTextSource...
unit AxlDebug; interface uses SysUtils; const DEBUGGING = {$ifndef _NODEBUG} true {$else} false {$endif}; ASSERTING = {$ifopt C+} true {$else} false {$endif}; type IDebugConsole = interface procedure WriteDebugStr(const which : string); end; var Console : IDebugConsole = nil; proced...
unit StreamUtils; interface uses Classes; // Calls StreamProc and destroys the stream. Ex: StreamObject( TFileStream.Create(...), LoadFromStream ); type TStreamProc = procedure ( Stream : TStream ) of object; procedure StreamObject( Stream : TStream; StreamProc : TStreamProc ); // TPointerStream:...
unit SetupForm; { Inno Setup Copyright (C) 1997-2010 Jordan Russell Portions by Martijn Laan For conditions of distribution and use, see LICENSE.TXT. TSetupForm $jrsoftware: issrc/Projects/SetupForm.pas,v 1.16 2010/02/02 06:59:38 jr Exp $ } interface {$I VERSION.INC} uses Windows, SysUtils, Messages...
unit l3LongintListReverseSorter; {* Пример списка, который сортирует исходный список в обратном порядке } // Модуль: "w:\common\components\rtl\Garant\L3\l3LongintListReverseSorter.pas" // Стереотип: "SimpleClass" // Элемент модели: "Tl3LongintListReverseSorter" MUID: (4DEFC02E01CF) {$Include w:\common\components\rtl...
unit uMain; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, System.IniFiles, System.Messaging, System.IOUtils, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Objects, FMX.Layouts, System.Math, FMX.StdCtrls, FMX.Ani, FMX.Media, FMX.Platform, FM...
unit OvcCmd; {* Translates messages into commands. } {*********************************************************} {* OVCCMD.PAS 2.17 *} {* Copyright (c) 1995-98 TurboPower Software Co *} {* All rights reserved. *} {************************...
unit fmuSlipClose; interface uses // VCL Windows, StdCtrls, Controls, Classes, SysUtils, ExtCtrls, Buttons, ComCtrls, Spin, Grids, ValEdit, // This untPages, untDriver, untUtil, untTypes, untTestParams; type { TfmSlipClose } TfmSlipClose = class(TPage) lblCount: TLabel; btnStandardCloseCheckOn...
unit steProcGenHelper; {$mode objfpc}{$H+} interface // I/O Helper for output generation uses Classes, SysUtils, steProcessor; type TSTEProcGenHelper = class helper for TSTEProcessor function GenerateToString : string; procedure GenerateToFile(const AFileName : string); // generate and parse inter...
{******************************************************************************* 作者: dmzn@163.com 2011-11-21 描述: 会员列表 *******************************************************************************} unit UFrameMembers; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, F...
unit evCellWidthCorrecterSpy; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Библиотека "Everest" // Модуль: "w:/common/components/gui/Garant/Everest/evCellWidthCorrecterSpy.pas" // Родные Delphi интерфейсы (.pas) // Generated from UML mod...
{ Clever Internet Suite Copyright (C) 2013 Clever Components All Rights Reserved www.CleverComponents.com } unit clMultiUploader; interface {$I clVer.inc} uses {$IFNDEF DELPHIXE2} Classes, SysUtils, {$ELSE} System.Classes, System.SysUtils, {$ENDIF} clWinInet, clDC, clMultiDC, clDCUtils, clUtils, clHtt...
program Ch2; {$mode objfpc} uses SysUtils,Types; var Arr:TIntegerDynArray; Count:Integer; procedure Swap(var A,B:Integer); var Temp:Integer; begin Temp := A; A := B; B := Temp; end; function IsCute(constref Arr:TIntegerDynArray):Boolean; var I:Integer; begin for I := 1 to Length(Arr) do if...
unit UIWrapper_DBListUnit; interface uses FMX.TabControl, FMX.TreeView, UIWrapper_DBTreeViewUnit, DBManager, SearchResult, DataFileSaver; type TUIWrapper_DBList = class(TObject) private FTabControl: TTabControl; FTreeViews: array of TUIWrapper_DBTreeView; FSelectedDBName: String; F...
unit MetaImage; interface uses Jpeg, DB, DBClient, MetaClass; type TMetaImageType = (mitNone, mitJpeg); TMetaImage = class(TMetaClass) private FType: TMetaImageType; FImage: TJPEGImage; FOwnerType, FOwnerID: Integer; FuserData: Integer; // userdata field from blobs public...
{ CSI 1101-X, Winter 1999 } { Assignment 5, Question 2 } { Identification: Mark Sattolo, student# 428500 } { tutorial group DGD-4, t.a. = Jensen Boire } program a5q2 (input,output) ; label 310 ; const maxMazeSize = 12 ; maxSolutionLength = 78 ; { solutions must be length 77 or less } ...
{ $Project$ $Workfile$ $Revision$ $DateUTC$ $Id$ This file is part of the Indy (Internet Direct) project, and is offered under the dual-licensing agreement described on the Indy website. (http://www.indyproject.org/) Copyright: (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All r...