text
stringlengths
14
6.51M
unit WinTab32; { WinTab interface for delphi WinTab is standardized programming interface to digitizing tablets, three dimensional position sensors, and other pointing devices by a group of leading digitizer manufacturers and applications developers. converted from wintab.h, pktdef.h from www.pointing.com ...
unit Form.Animation; interface uses UCL.IntAnimation, UCL.IntAnimation.Helpers, Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls; type TformAnimation = class(TForm) buttonAni: TBut...
unit nsQuestionsWithChoices; // Модуль: "w:\garant6x\implementation\Garant\GbaNemesis\Data\nsQuestionsWithChoices.pas" // Стереотип: "UtilityPack" // Элемент модели: "nsQuestionsWithChoices" MUID: (4F9BB14900E7) {$Include w:\garant6x\implementation\Garant\nsDefine.inc} interface uses l3IntfUses , l3StringIDEx , ...
{----------------------------------------------------------------------------- Unit Name: bfcore Author: Sebastian Huetter Date: 2007-04-08 Purpose: Core for Brainfuck. OOP here too ;) NOTE: define FULL_OOP in Project Options to be able to assign events to object methods! Histo...
unit PE.Parser.Headers; interface uses System.Classes, PE.Common, PE.Types.DOSHeader, PE.Types.FileHeader, PE.Types.OptionalHeader, PE.Types.NTHeaders, PE.Utils; function LoadDosHeader(AStream: TStream; out AHdr: TImageDOSHeader): boolean; function LoadFileHeader(AStream: TStream; out...
unit ExtAINetClientOverbyte; interface uses Classes, SysUtils, OverbyteIcsWSocket, WinSock; // TCP client type TNotifyDataEvent = procedure(aData: pointer; aLength: cardinal) of object; TNetClientOverbyte = class private fSocket: TWSocket; fOnError: TGetStrProc; fOnConnectSucceed: TNotifyEvent; ...
unit OutputSrch_TLB; { This file contains pascal declarations imported from a type library. This file will be written during each import or refresh of the type library editor. Changes to this file will be discarded during the refresh process. } { OutputSrch Library } { Version 1.0 } interface uses Windows, A...
unit GenericExampleUnit; interface uses SysUtils, BaseExampleUnit, IConnectionUnit; type TGenericExample = class(TBaseExample) public procedure Execute(Connection: IConnection); end; implementation uses Route4MeManagerUnit, GenericParametersUnit, DataObjectUnit, SettingsUnit; procedure TGenericExam...
{ String manipulation routines. Copyright (C) 2006 - 2012 Aleg Azarousky. } //VG 260717: Added ReplaceNew routine from the old Tickler sources. Can be moved to another unit unit uStringUtils; interface uses Windows, Classes; const ListDivider = #13; // Used in DelphiToStringEx defHumanizeDivider ...
unit gUnitAI; //============================================================================= // gUnitAI.pas //============================================================================= // // Responsible for managing agent AI // //============================================================================= interfa...
{$MODE OBJFPC} {$DEFINE RELEASE} {$R-,Q-,S-,I-} {$OPTIMIZATION LEVEL2} {$INLINE ON} program Telecom; uses Math; const InputFile = 'TELECOM.INP'; OutputFile = 'TELECOM.OUT'; maxN = 200; maxC = 10000; epsilon = 1E-9; type TPoint = packed record case Boolean of False: (x, y: LongInt); True: (Code: I...
unit frmNoneCertifyServer; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, iocp_managers, iocp_server, StdCtrls, iocp_clients, iocp_sockets, iocp_clientBase; type TFormNoneCertifyServer = class(TForm) InIOCPServer1: TInIOCPServer; InFileManager1: TIn...
unit CompWizardFile; { Inno Setup Copyright (C) 1997-2010 Jordan Russell Portions by Martijn Laan For conditions of distribution and use, see LICENSE.TXT. Compiler Script Wizard File form $jrsoftware: issrc/Projects/CompWizardFile.pas,v 1.11 2010/03/06 22:33:02 jr Exp $ } interface uses Windows, Mess...
unit TokyoScript.BuiltIn; { TokyoScript (c)2018 Execute SARL http://www.execute.Fr } interface uses System.SysUtils; type TBuiltIn = ( bi_None, biWrite, biWriteLn, biInc ); const BUILTINS : array[TBuiltIn] of string = ( '', 'WRITE', 'WRITELN', ...
unit nsIntegerValueMap; {* реализация мапы "строка"-"число" } {$Include nsDefine.inc } interface uses Classes, l3Interfaces, l3BaseWithID, l3ValueMap, l3Types, vcmExternalInterfaces, vcmInterfaces, L10nInterfaces ; type TnsIntegerValueMapRecord = record rN: TvcmStringID; rV: Integer; end;...
unit objItem; interface uses System.SysUtils, FireDAC.Comp.Client, Vcl.Dialogs; type TItem = class(TObject) private Fcodigo: Integer; Fdescricao: String; Fvalor : Double; Fativo : Boolean; Fconexao : TFDConnection; protected function getCodigo : Intege...
unit uCRUDApuracao; interface uses FireDAC.Comp.Client, SysUtils, Vcl.Forms, Windows, Vcl.Controls, Data.DB, System.Classes, Vcl.CheckLst, UFuncoesFaciliteXE8, uConstantes; type TCRUDApuracaoMensal = class(TObject) private FConexao : TFDConnection; vloFuncoes : TFuncoesGe...
{*******************************************************} { Проект: Repository } { Модуль: uAppUserImpl.pas } { Описание: Реализация IAppUser } { Copyright (C) 2015 Боборыкин В.В. (bpost@yandex.ru) } { ...
unit Eagle.Alfred.CreateCommand; interface uses System.SysUtils, System.Classes, Winapi.Windows, System.RegularExpressions, Eagle.ConsoleIO, Eagle.Alfred.DprojParser, Eagle.Alfred.Command; type ECreateCommandException = class(Exception); TCreateCommand = class(TInterfacedObject, IC...
{ 12/10/1999 10:17:34 AM > [Bill on BILL] checked out /Change tables to TTS } unit SelectCollateralCode; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, Grids, AdvGrid, FFSAdvStringGrid, sBitBtn; type TfrmSelectCollateralCode = class(TForm)...
{8. Un local de ropa desea analizar las ventas realizadas en el último mes. Para ello se lee por cada día del mes, los montos de las ventas realizadas. La lectura de montos para cada día finaliza cuando se lee el monto 0. Se asume un mes de 31 días. Informar la cantidad de ventas por cada día, y el monto total acumulad...
unit eAtasOrais.Model.Configuracao; interface uses eAtasOrais.Model.Interfaces; Type TModelConfiguracao = Class(TInterfacedObject, iModelConfiguracao) Private Fservidor : string; FPastaAtas : string; FUID : String; FPWD : string; FUnidade : String; FBanco : St...
program TESTCH01 ( INPUT , OUTPUT ) ; //$A+ var IX : INTEGER ; function IX_INT ( X : CHAR ; Y : CHAR ) : INTEGER ; //************************************************** // ermittle Index fuer internes Feld aus externem // ab Position 26 (3. zeile) werden die Felder // der 1. Zeile (a1, b1 bis h1) abgelegt. // ..xx...
{Pascal wrappper for proj.4 library} {This License applies only to this wrapper and not the proj.4 itself} {For the latest proj.4 visit https://github.com/OSGeo/proj.4} {* Author: Giannis Giannoulas, <gg@iqsoft.gr> * ****************************************************************************** * Copyright (c) 2016,G...
unit PoliticsCache; interface uses Politics, CacheAgent, KernelCache; const tidCachePath_Surveys = 'Surveys\'; tidCachePath_Ratings = 'Ratings\'; tidCachePath_RatingSystem = 'CampaignSystem\'; tidCachePath_Projects = 'Projects\'; tidCachePath_Campaigns = 'Campai...
unit uMain; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, uClassDef, ComCtrls; type TfrmMain = class(TForm) btnLoadIntoMemory: TButton; btnSaveToDatabase: TButton; btnLoadFromdatabase: TButton; btnCleanDBTables: TButton...
{ 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.Decorators.Repeater; interface uses System.JSON, Behavior3, Behavior3.Core.Decorator, Behavior3.Core.BaseNode, Behavio...
unit demortti.description; interface type Descriptor = class(TCustomAttribute) private FLanguage: String; public property Language: String read FLanguage; constructor Create(const ALanguage: string); end; IDescription = interface ['{8CB83CF6-EE75-4B49-8CA8-DF684B0CE618}'] function Get(co...
unit WinSockRDOConnectionsServer; interface uses Windows, Classes, SyncObjs, SmartThreads, SocketComp, RDOInterfaces; type TQueryToService = record Text : string; Socket : TCustomWinSocket; end; PQueryToService = ^TQueryToService; type TWinSoc...
unit ddragon3_hw; interface uses {$IFDEF WINDOWS}windows,{$ENDIF} nz80,m68000,main_engine,controls_engine,gfx_engine,ym_2151,rom_engine, pal_engine,sound_engine,oki6295,qsnapshot; function iniciar_ddragon3:boolean; implementation const //Double Dragon 3 ddragon3_rom:array[0..1] of tipo_roms...
unit Rule_BDZX; interface uses BaseRule, BaseRuleData, Rule_STD, Rule_EMA; type TRule_BDZX_Price_Data = record ParamN: Word; ParamN_AK_EMA: WORD; ParamN_VAR6_EMA : WORD; ParamN_AD1_EMA : WORD; Var2_Float: PArrayDouble; Var5_Float: PArrayDouble; Var6_Float: PArrayDou...
unit UPatchMissingOpenURLEvent; //This unit is a patch for a bug in XE4, XE6 unpatched: The OpenURL event doesn't get called. // QC 115594 //The bug was fixed in XE6 SP1, so this doesn't apply for newer versions. //This patch is applied automatically in the initialization section, //so just including this unit in you...
(*********************************************************************** Slightly Modified TPMOUSE for 4HELP 4.0. Added ManualMouseInit Procedure, which moves the mouse initialization code from this unit to the calling program. You must call this procedure in order to use the mouse in a program. ...
// ---------------------------------------------------------------------- // | TComportDriver - A Basic Driver for the serial port | // ---------------------------------------------------------------------- // | 1997 by Marco Cocco | // | 1998 enhanced by An...
unit GetOrdersByDateUnit; interface uses SysUtils, BaseExampleUnit, OrderUnit; type TGetOrdersByDate = class(TBaseExample) public procedure Execute(Date: TDate); end; implementation procedure TGetOrdersByDate.Execute(Date: TDate); var ErrorString: String; Orders: TOrderList; begin Orders := Rou...
program ex; Type pTRoomD2=^TRoomD2; TRoomD2=object length,width:real; {поля: длина и ширина} function Square:real; virtual; {метод определения площади} constructor Init(l,w:real); {конcтруктор} destructor Done; {деструктор} end; Function TRoomD2.Square:real; {тело метода определения площади} ...
{ *************************************************************************** Copyright (c) 2016-2020 Kike Pérez Unit : Quick.Value.RTTI Description : FlexValue Helper for RTTI Author : Kike Pérez Version : 1.0 Created : 06/05/2019 Modified : 26/06/2020 This file is part of Qui...
{ rxapputils unit Copyright (C) 2005-2010 Lagunov Aleksey alexs@yandex.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 Fo...
unit kwForwardDeclaration; // Модуль: "w:\common\components\rtl\Garant\ScriptEngine\kwForwardDeclaration.pas" // Стереотип: "SimpleClass" // Элемент модели: "TkwForwardDeclaration" MUID: (4F4BB70D0144) {$Include w:\common\components\rtl\Garant\ScriptEngine\seDefine.inc} interface {$If NOT Defined(NoScripts)} uses ...
(* MPP_SS: HDO, 2004-02-06 ------ Syntax analyzer and semantic evaluator for the MiniPascal parser. Semantic actions to be included in MPI_SS and MPC_SS. ===================================================================*) UNIT MPC_SS; INTERFACE VAR s...
unit vg_platform_ios; {$mode objfpc}{$H+} {$modeswitch objectivec1} interface uses {$IFDEF DARWIN} iPhoneAll, CFBase, CFString, CGContext, CGImage, CGBitmapContext, CGGeometry, CGColorSpace, {$ENDIF} Classes, SysUtils, Variants, TypInfo, vg_scene, vg_forms; type { TvgPlatformCocoa } TvgPlatformCoc...
unit RouteParametersUnit; interface uses REST.Json.Types, JSONNullableAttributeUnit, EnumsUnit, NullableBasicTypesUnit; type /// <summary> /// Route Parameters /// </summary> /// <remarks> /// https://github.com/route4me/json-schemas/blob/master/RouteParameters.dtd /// </remarks> TRouteParamete...
{$I ok_sklad.inc} unit MetaTax; interface uses MetaClass, XMLDoc, XMLIntf, Classes; type TTaxMethod = (TaxMethodPercent, TaxMethodValue); TMetaTax = class(TMetaClass) protected FMethod: TTaxMethod; FValue: Extended; function LoadXMLNode(var topNode, Node: IXMLNode; p...
unit Quick.OAuth.Utils; interface type TRequestMethod = (rmGET, rmPOST); function EncodeURL (const aURL: string): string; procedure OpenURL (const aURL: string); function GetDomain (const aURL: string): string; function GetPort (const aURL: string): integer; function GetMethodFromRequest (const aRequest: string)...
{$include lem_directives.inc} unit GameMenuScreen; {------------------------------------------------------------------------------- The main menu dos screen. -------------------------------------------------------------------------------} interface uses Windows, Classes, Controls, Graphics, MMSystem,...
{ *********************************************************************************** } { * CryptoLib Library * } { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * } { * Github Repository <https://github.co...
unit WinSockRDOServerClientConnection; interface uses SmartThreads, Classes, ComObj, Windows, RDOInterfaces, SocketComp, SyncObjs, RDOQueries; type TWinSockRDOServerClientConnection = class(TInterfacedObject, IRDOConnection, IRDOServerClientConnection) private ...
unit CacheObjects; interface uses Windows, Classes, SysUtils, FileCtrl, SpecialChars, CacheProperties; const UnassignedRoot = '\'; // Cache root path function GetCacheRootPath : string; procedure SetCacheRootPath(const aPath : string); procedure ForceFolder(const Path : string); const D...
{*********************************************************************** } { File: VTCheckList.pas } { } { Purpose: } { source f...
unit untPages; interface Uses // VCL Windows, Classes, Controls, ExtCtrls, // This SizeableForm, TestManager; type TPage = class; TPageClass = class of TPage; { TPages } TPages = class private FList: TList; FPage: TPage; procedure Clear; function GetCount: Integer; procedure I...
{$I tdl_dire.inc} unit tdl_inde; { Indexing routines for working with the files we've copied over. Also contains structures for working with title metadata, such as favorites. } interface uses DOS, objects, tdl_glob, tdl_conf; const {Metadata bitflags:} numMetaFlags=2; m_favorite=1; m_unpacked=2; m...
{ Subroutine SST_W_C_INTRINSIC (INTR) * * Write out one of the symbols the C back end treats as if are intrinsic, * but that really do need to be declared. This routine first makes sure * the appropriate declarations is made, if needed, and then writes the * symbol at the current writing position. } module s...
Unit TERRA_INI; {$I terra.inc} Interface Uses TERRA_String, TERRA_Utils, TERRA_Math, TERRA_Stream; Type TokenFormat=(tkInteger, tkCardinal, tkFloat, tkBoolean, tkByte, tkString, tkColor, tkVector, tkKey ); PINIToken=^INIToken; INIToken=Record Name:TERRAString...
unit UPryvDemo; interface uses System.SysUtils, System.Types, System.UITypes, System.Rtti, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls, FMX.TMSCloudBase, FMX.TMSCloudBaseFMX, FMX.TMSCloudCustomPryv, FMX.TMSCloudPryv, FMX.Objects, FMX.Layouts, FMX.TreeView, FM...
unit main; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ComCtrls, clTcpClient, clTcpClientTls, clMC, clImap4, ImgList, clCertificate, clMailMessage, clTcpCommandClient, clOAuth, DemoBaseFormUnit, ExtCtrls; type TForm1 = class(TclDemoBaseForm) ...
{ MIT License Copyright (c) 2017 Marcos Douglas B. Santos Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, mo...
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, TypInfo, ComDrv32; type TCheque = record Banco: Integer; Agencia: string; Conta: string; NroCheque: integer; Valor: currency; Data: TDateTime; Nominal: string; Cidad...
unit uMainForm; 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.ListView.Types, FMX.ListView.Appearances, FMX.ListView.Adapters.Base, FireDAC.St...
{ *********************************************************************************** } { * CryptoLib Library * } { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * } { * Github Repository <https://github.co...
unit steCommon; {$mode objfpc}{$H+} interface uses Classes, SysUtils; type ESTEParserError = class(Exception); const steWhiteSpaceChars = [ #0..' ' ]; steSCR = #13; steSLF = #10; function STEGetSourceLineNumber(const source : string; srcPos: integer): integer; implementation function STEGetSo...
{ Uma empresa deve desenvolver um programa para controlar o salário de todos os seus funcionários. As informações que ela mantém sobre cada funcionário são: registro_funcionario, nome, cargo e salario Esta estrutura de dados deve ser armazenada em um vetor de registro onde cada posição contém um funcionário. Pe...
unit fmxSASLCrypt; interface uses classes, sysutils,IdCoderMIME, IdGlobal,IdHashMessageDigest, strutils, system.IOUtils; //Decode jabber SASL message for authentification function GetSASLResponse(AStr: string; AUsername,APassword,AServer : string): string; implementation // convert string to commatext procedure p...
{ Mark Sattolo 428500 CSI-1100A DGD-1 TA: Chris Lankester Assignment 7, Question 1(b) } program GetFrequent (input,output); const MaxSize = 25; tab = ' '; type WordArray = array[1..MaxSize] of string; { ************************************************************************ } procedure ListWords...
unit htDataConverter; // Модуль: "w:\common\components\rtl\Garant\HT\htDataConverter.pas" // Стереотип: "SimpleClass" // Элемент модели: "ThtDataConverter" MUID: (55599B5C014A) {$Include w:\common\components\rtl\Garant\HT\htDefineDA.inc} interface uses l3IntfUses , l3ProtoObject , htInterfaces , HT_Const , daT...
Unit Unit6; Interface Uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, DB, DBTables, db_STORE, StdCtrls, ExtCtrls, Buttons, Grids, DBGrids, FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS, FireDAC.Phys.Intf, FireDAC.DApt.Intf...
{ Subroutine SST_R_PAS_SMENT_CONST * * Process the CONST_STATEMENT syntax. } module sst_r_pas_SMENT_CONST; define sst_r_pas_sment_const; %include 'sst_r_pas.ins.pas'; procedure sst_r_pas_sment_const; {process CONST_STATEMENT syntax} var tag: sys_int_machine_t; {tag number from .syn file} st...
(* libltc - en+decode linear timecode Copyright (C) 2005 Maarten de Boer <mdeboer@iua.upf.es> Copyright (C) 2006-2012 Robin Gareus <robin@gareus.org> Copyright (C) 2008-2009 Jan <jan@geheimwerk.de> Binary constant generator macro for endianess conversion by Tom Torfs - donated to the public domain ...
unit List_Module; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Библиотека "View" // Модуль: "List_Module.pas" // Родные Delphi интерфейсы (.pas) // Generated from UML model, root element: VCMFormsPack::Class Shared Delphi Sand Box$UC::Li...
{ *********************************************************************************** } { * CryptoLib Library * } { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * } { * Github Repository <https://github.co...
{ *********************************************************************************** } { * CryptoLib Library * } { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * } { * Github Repository <https://github.co...
unit Splitter; interface uses Messages, Windows, Classes, Sysutils, Controls, Graphics; {$INCLUDE Splitter.inc} const cDefaultTrackWidth = 2; type TSplitterStyle = (ssNone, ssLowered, ssRaised); type TSplitter = class; TOnNotify = procedure (Sender : TSplitter; x, y : integer) of object; TSplitter =...
unit G2Mobile.Controller.Clientes; interface uses FMX.ListView, System.Classes, Datasnap.DBClient, FireDAC.Comp.Client, FMX.Objects, FMX.Graphics, FMX.Grid; type iModelClientes = interface ['{25F82A84-4E2F-43D5-ADE2-143CE97FFC1D}'] function BuscaClientesServidor(Super, cod_vend: Integer; AD...
unit Thread._ImportarBaixasTFO; interface uses System.Classes, Common.ENum, Control.EntregadoresExpressas, Control.Entregas, Dialogs, Windows, Forms, SysUtils, Messages, Controls, FireDAC.Comp.Client, Control.Sistema, System.DateUtils, Control.Bases, Control.VerbasExpressas; type Thread_ImportarBaixasTFO = cla...
(* ***** 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/ * * Softwa...
unit Funcionarios; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, DBCtrls, Mask, Buttons; type TformFuncionarios = class(TForm) lblMatricula: TLabel; fldMatricula: TDBText; lblNomeFuncionario: TLabel; fldNomeFuncionario: TDBEdit; ...
unit PE.DataDirectories; interface uses System.Classes, System.SysUtils, PE.Common, PE.Msg, PE.Section, PE.Sections, PE.Types.Directories, PE.Utils; type TDataDirectories = class private FPE: TObject; // TPEImage FItems: array of TImageDataDirectory; function GetC...
unit clCadastro; interface uses clpessoajuridica, Vcl.Dialogs,System.SysUtils, clConexao, System.StrUtils; type TCadastro = class(TPessoaJuridica) private FCodigo: Integer; FTipoCadastro: Integer; FDepartamento: Integer; FSubTipo: Integer; FFilial: Integer; FFuncao: Integer; FTipoDoc:...
unit MasterURLHandler; interface uses Windows, Classes, Controls, GameTypes, Protocol, MapTypes, VoyagerInterfaces; type TSetWorldInfo = record MapImage : TMapImage; BuildClasses : IBuildingClassBag; end; type TTestMasterUrlHandler = class(TInterfacedObject, I...
unit VCLForm1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Script.Interfaces ; type TForm1 = class(TForm, IscriptCompileLog, IscriptRunLog) Button1: TButton; Button2: TButton; ...
unit G2Mobile.Model.NovoPedidoItem; interface uses FMX.Grid, FMX.ListView, System.Classes, Datasnap.DBClient, FireDAC.Comp.Client, FMX.Objects, FMX.Graphics, System.UITypes, G2Mobile.Controller.Pedidos; const CONST_POPULAPRODSQLSTRINGGRID = ' SELECT vi.cod_prod, vi.valor, vi.desconto, case w...
unit caDataProviderParams; // Модуль: "w:\common\components\rtl\Garant\ComboAccess\caDataProviderParams.pas" // Стереотип: "SimpleClass" // Элемент модели: "TcaDataProviderParams" MUID: (56A86B450218) {$Include w:\common\components\rtl\Garant\ComboAccess\caDefine.inc} interface {$If Defined(UsePostgres) AND Defined...
unit kwPopEditorSetShowDocumentParts; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Библиотека "ScriptEngine" // Модуль: "w:/common/components/rtl/Garant/ScriptEngine/kwPopEditorSetShowDocumentParts.pas" // Родные Delphi интерфейсы (.pas)...
unit ActionHandler.Scripts; interface uses ActionHandler, SysUtils, Classes, Import_COMMON, IMP_GsDocument, PaxCompiler, PaxRunner, PaxProgram; const PARAM_FILENAME = 'filename'; type TScriptActionHandler = class(TAbstractActionHandler) private FPC: TPaxCompiler; FPaxProgram: TPaxProgram; FPaxPa...
unit TestBed; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, FileCtrl, StrUtils, KM_Game, KM_CommonTypes, ExtAIDelphi, ExtAILog, KM_Consts, ExtAIInfo, // Detection of IP address Winsock, Vcl....
{!DOCTOPIC}{ Type » T2DIntArray } {!DOCREF} { @method: function T2DIntArray.Len(): Int32; @desc: Returns the length of the arr. Same as c'Length(Arr)' } function T2DIntArray.Len(): Int32; begin Result := Length(Self); end; {!DOCREF} { @method: function T2DIntArray.IsEmpty(): Boolean; @desc: Returns Tru...
program squareRoot(input, output); var x: real; begin repeat write('Enter a number: ' ); read(x); if x >= 0 then writeln(sqrt(x)) else writeln(x, ' Does not have a real square root.') until x = 0; end.
{ *********************************************************************************** } { * CryptoLib Library * } { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * } { * Github Repository <https://github.co...
unit np.HttpUt; interface function ResponseText(const AValue: Integer) : UTF8String; implementation const // HTTP Status RSHTTPChunkStarted = 'Chunk Started'; RSHTTPContinue = 'Continue'; RSHTTPSwitchingProtocols = 'Switching protocols'; RSHTTPOK = 'OK'; RSHTTPCreated = 'Created'; RSHTTPAccepted = 'Ac...
unit uProxyWalmart; interface uses SysUtils, Classes, AppEvnts, Forms, Controls, Dialogs, DateUtils, uMatVars, udmDadosCTe, ACBrSocket, udmPrincipal, DBXJSON, DBXJSONReflect, RTTI; type TcodeRetorno = (SUCESSO, CRITICA, ERRO, OUTROS); TmodalDocumento = (rodo, aereo, maritmo, fluvial, ferroviario); Tcond...
unit ChangeAllTablesTest; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Библиотека "TestFormsTest" // Модуль: "w:/common/components/gui/Garant/Daily/ChangeAllTablesTest.pas" // Родные Delphi интерфейсы (.pas) // Generated from UML model, ...
unit uBloqueio; interface uses udmBloqueio, uIntegracaoUnilever, Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls, Soap.InvokeRegistry, System.Net.URLClient, Soap.Rio, Soap.SOAPHTTPClient; type ...
{ UDebug: Delphi units debugging module. Copyright by Andrej Pakhutin } {$IFDEF SERVER} {$I ok_server.inc} {$ELSE} {$I ok_sklad.inc} {$ENDIF} unit UDebug; interface uses Classes; const fStackPtrMax = 1000; debugLevelHigh = 10; debugLevelHi = 10; debugLevelMed = 5; debugL...
unit LUX.Map.D3; interface //#################################################################### ■ type //$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$【型】 //$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$【レコード】 //$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$...
unit evConstStringStorable; // Модуль: "w:\common\components\gui\Garant\Everest\evConstStringStorable.pas" // Стереотип: "SimpleClass" // Элемент модели: "TevConstStringStorable" MUID: (48F49EEA0008) {$Include w:\common\components\gui\Garant\Everest\evDefine.inc} interface uses l3IntfUses , evStringStorable , ev...
{$I ViewerOptions.inc} unit UFormPluginsOptions; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ComCtrls, ExtCtrls; type TFormPluginsOptions = class(TForm) btnCancel: TButton; btnOK: TButton; boxPlugins: TGroupBox; List: TListView; btnAdd...
unit Processor; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Utils, StdCtrls, ComCtrls, ExtCtrls, DialMessages; type TCreateThumbnail = procedure(const PictureFile, ThumbnailFile: string; const Size: Integer); TProcessorForm = class(TForm) Progre...
unit GPSParametersUnit; interface uses HttpQueryMemberAttributeUnit, JSONNullableAttributeUnit, NullableBasicTypesUnit, GenericParametersUnit; type TGPSParameters = class(TGenericParameters) private [HttpQueryMember('format')] [Nullable] FFormat: NullableString; [HttpQueryMember('member_id')...
{ 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.Actions.Wait; interface uses System.JSON, Behavior3, Behavior3.Core.Action, Behavior3.Core.BaseNode, Behavior3.Core.Ti...
unit clRoteiroEntregador; interface uses Vcl.Forms, System.SysUtils, System.Classes, Vcl.dialogs, clConexao, udm; type TRoteiroEntregador = class(TObject) private FRoteiroAntigo: String; FRoteiroNovo: String; FLog: String; conexao: TConexao; FID: Integer; FDescricao: String; FMostrar:...
{ Clever Internet Suite Copyright (C) 2014 Clever Components All Rights Reserved www.CleverComponents.com } unit clSFtp; interface {$I ..\common\clVer.inc} uses {$IFNDEF DELPHIXE2} Classes, SysUtils,{$IFDEF DEMO}Forms, Windows,{$ENDIF} {$ELSE} System.Classes, System.SysUtils,{$IFDEF DEMO}Vcl.Forms, Wina...