text
stringlengths
14
6.51M
{*******************************************************} { Проект: Repository } { Модуль: uNotificationService.pas } { Описание: Реализация INotificationService } { Copyright (C) 2015 Боборыкин В.В. (bpost@yandex.ru) } { ...
program pbxreader; {$mode delphi}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} heaptrc, Classes, SysUtils, pbxfile, pbxcontainer, xcodeproj { you can add units after this }; function ReadFileToString(const fn: string): string; var fs : TFileStream; begin fs:=TFileStream.Crea...
unit InputSearch; interface uses Classes, SysUtils, Collection, FluidLinks, CacheCommon; // InputLink = X×Y×M×Town×Company×FacilityName type TInputLink = class; // Temporal object to store an Input TInputSearch = class; // Performs a query to find the best group of Inputs TInputLink = ...
unit Model.UsuariosJornal; interface uses Common.ENum, FireDAC.Comp.Client, Controller.Sistema, DAO.Conexao, FireDAC.Comp.DataSet; type TUsuarios = class private FCodigo: integer; FNome: String; FLogin: String; FSenha: String; FGrupo: String; FAtivo: Boolean; FAcao: TAcao; FConex...
program Project1; var s:string; i:integer; begin s:='Hey! How are you?'; for i:=1 to length(s) do s[i]:=upcase(s[i]); write(s); {'HEY! HOW ARE YOU'} readln; end. {Function UpCase(C:Char):Char; Description Converts the character C to uppercase and returned. If the character is already in uppercase for...
unit DAO.ContatosBases; interface uses FireDAC.Comp.Client, System.SysUtils, DAO.Conexao, Model.ContatosBases; type TContatosBasesDAO = class private FConexao: TConexao; public constructor Create; function GetSeq(AContatos: TContatosBase): Integer; function Inserir(AContatos: TContatosBase): ...
unit SDConsoleForm; interface uses Windows, Forms, BaseForm, Classes, Controls, StdCtrls, Sysutils, ExtCtrls, Dialogs, VirtualTrees, define_dealitem, define_dealmarket, define_datasrc, define_price, define_datetime, StockDataConsoleApp, StockDataConsoleTask, DealItemsTreeView, StockDayDataAccess, SDFrameDea...
unit MainWindow; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, D3DXCore, DirectDraw, Direct3D; type TMainForm = class(TForm) OpenDialog: TOpenDialog; procedure FormCreate(Sender: TObject); procedure FormDestroy(Sender: TObject);...
unit GX_ClipboardHistory; {$I GX_CondDefine.inc} interface uses Classes, Controls, Forms, StdCtrls, ExtCtrls, Menus, ComCtrls, ActnList, ToolWin, GX_Experts, GX_ConfigurationInfo, GX_IdeDock; type TClipInfo = class(TObject) private FClipTimeStamp: string; FClipString: string; pub...
unit xLog; interface uses SysUtils, Classes, xClasses; type TxLog = class(TComponent) private FFileName: TFileName; FMutex: TxMutex; FBeginStrWithTime: Boolean; FTimeout: Cardinal; FLogStack: TStringList; procedure SetTimeout(const Value: Cardinal); public con...
unit CambiarBd; interface uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, ExtCtrls, IniFiles, Dialogs, ImgList, ComCtrls, Menus, pngimage; const ctIniFile = 'BDatos.ini'; ctSeccion = 'BDATOS'; ctError = 'Por favor, seleccione Base de Datos'; type TCambiarBdDlg = c...
{*****************************************************} { } { EldoS Themes Support Library } { } { (C) 2002-2003 EldoS Corporation } { http://www.eldos.com/ ...
program piValue; (* Computes pi from series pi / 4 = 1/1 - 1/3 + 1/5 - 1/7 + 1/9 + ... *) const TINY = 0.00000002; var n : integer; pi, term : real; begin writeln('Computation of pi:'); writeln(); pi := 0.0; n := 1; repeat term := 4/n - 4/(n + 2); pi := pi + term; n := n + 4; until term < TINY; wr...
{******************************************************************************} { } { Delphi FB4D Library } { Copyright (c) 2018-2022 Christoph Schneider ...
unit ItfwKeywordFinderWordsPack; // Модуль: "w:\common\components\rtl\Garant\ScriptEngine\ItfwKeywordFinderWordsPack.pas" // Стереотип: "ScriptKeywordsPack" // Элемент модели: "ItfwKeywordFinderWordsPack" MUID: (559BCED301F0) {$Include w:\common\components\rtl\Garant\ScriptEngine\seDefine.inc} interface {$If NOT De...
program enteros; type vector = array[1..100] of integer; function posicion(v:vector; x:integer):integer; begin if ((x >= 1) and (x <= 100)) then obtenerX := v[x] else obtenerX := -1; end; procedure intercambio(v:vector; x,y:integer); var aux :int...
unit MainForm; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, jc.IniFile, jc.Libs.Interfaces; type TMain_Form = class(TForm) Button1: TButton; Edt_Host: TEdit; Edt_UserName: TEdit...
unit ContactListKeywordsPack; {* Набор слов словаря для доступа к экземплярам контролов формы ContactList } // Модуль: "w:\garant6x\implementation\Garant\GbaNemesis\View\Chat\ContactListKeywordsPack.pas" // Стереотип: "ScriptKeywordsPack" // Элемент модели: "ContactListKeywordsPack" MUID: (B87F040AE285) {$Include w:...
unit xn.grid.Register; interface uses ToolsAPI, System.Classes; type TxnGridAbout = class(TNotifierObject, IOTAWizard, IOTAMenuWizard) function GetIDString: string; function GetName: string; function GetState: TWizardState; procedure Execute; function GetMenuText: string; end; ...
unit uInterfaceFactory; interface uses SysUtils, Classes; type TInterfacedObjectClass = class of TInterfacedObject; TInterfaceFactory = class(TObject) private FGuildList: TStringList; public constructor Create; destructor Destroy; override; function CreateInterface(GUID: TGUID; AName: stri...
unit ServerMethodsUnit1; interface uses System.SysUtils, System.Classes, System.Json, Data.FireDACJSONReflect, Datasnap.DSServer, Datasnap.DSAuth, Datasnap.DSProviderDataModuleAdapter, FireDAC.Stan.StorageJSON, FireDAC.Stan.StorageBin; type {$METHODINFO ON} TServerMethods1 = class(TDataModule) FDStanStor...
unit xpr.parser; { Author: Jarl K. Holta License: GNU Lesser GPL (http://www.gnu.org/licenses/lgpl.html) A parser... Or, that's what it's ment to be :P } {$I express.inc} interface uses SysUtils, xpr.express, xpr.lexer, xpr.AST, xpr.errors; const ATOM = [tk_ident, tk_int, tk_float, tk_bool, ...
{ *************************************************************************** } { } { } { Copyright (C) Amarildo Lacerda } { } { https://github.com/amarildolacerda } { } { } { *************************************************************************** } { } { Licensed under the Apache License, Version 2.0 (the "License...
unit Model.Interceptor.Button; interface uses StdCtrls, Controls, System.Classes; type TButton = class(StdCtrls.TButton) private State: Boolean; Toogle: Boolean; procedure SwitchState (Value : Boolean); public property Checked : Boolean read State write SwitchSta...
unit Solid.Samples.DIP.Books.Step3; interface uses System.IOUtils; type { IBook } IBook = interface ['{59A3B142-73C3-4BF5-AC7D-CEB422591DA2}'] function Read: TArray<Byte>; end; { TPdfBook } TPdfBook = class(TInterfacedObject, IBook) private FPath: string; public ...
unit pgFreeIDHelper; // Модуль: "w:\common\components\rtl\Garant\PG\pgFreeIDHelper.pas" // Стереотип: "SimpleClass" // Элемент модели: "TpgFreeIDHelper" MUID: (56556EF3017C) {$Include w:\common\components\rtl\Garant\PG\pgDefine.inc} interface {$If Defined(UsePostgres)} uses l3IntfUses , l3ProtoObject , daInterfa...
unit pgTableQueryFactory; // Модуль: "w:\common\components\rtl\Garant\PG\pgTableQueryFactory.pas" // Стереотип: "SimpleClass" // Элемент модели: "TpgTableQueryFactory" MUID: (55F81B3F024D) {$Include w:\common\components\rtl\Garant\PG\pgDefine.inc} interface {$If Defined(UsePostgres)} uses l3IntfUses , l3ProtoObje...
{ ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: QuickReport 6.0 for Delphi and C++Builder :: :: :: :: QRGraphcon TQRGraphicCanvas :: :: ...
unit DW.iOSapi.Helpers; {*******************************************************} { } { Kastri } { } { Delphi Worlds Cross-Platform Library }...
unit TiledPanel; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls; type TTiledPanel = class(TPanel) public constructor Create(AOwner : TComponent); override; destructor Destroy; override; private...
unit XMLFiles; interface uses SysUtils, Classes, Windows, Forms, Dialogs; type { XML Attrs } TXMLAttrs = class public dataWideString : WideString; end; function GetAttrs(Name: WideString; Attrs: TStringList): WideString; procedure LoadXMLStations(sFileName : String; DATA : TStringList); impleme...
{$I ATViewerDef.inc} unit REProc; interface uses Windows, ComCtrls; function RE_CurrentLine(Edit: TRichEdit): integer; function RE_LineFromPos(Edit: TRichEdit; Pos: integer): integer; function RE_PosFromLine(Edit: TRichEdit; Line: integer): integer; procedure RE_ScrollToStart(Edit: TRichEdit); procedure...
unit dsMainList; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Библиотека "List" // Автор: Морозов М.А. // Модуль: "w:/garant6x/implementation/Garant/GbaNemesis/List/dsMainList.pas" // Начат: 2007/04/06 13:04:11 // Родные Delphi интерфейс...
unit nsMainMenu2011Node; // Модуль: "w:\garant6x\implementation\Garant\GbaNemesis\Common\nsMainMenu2011Node.pas" // Стереотип: "SimpleClass" // Элемент модели: "TnsMainMenu2011Node" MUID: (4E730AE6014C) {$Include w:\garant6x\implementation\Garant\nsDefine.inc} interface {$If NOT Defined(Admin) AND NOT Defined(Monit...
{ 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...
{ ***************************************************************************** * * * This file is part of the iPhone Laz Extension * * * *...
unit db_dealitem_loadIni; interface uses BaseApp, db_dealItem, Define_DealMarket; procedure LoadDBStockItemIni(App: TBaseApp; ADB: TDBDealItem); procedure LoadDBStockItemIniFromFile(App: TBaseApp; ADB: TDBDealItem; AFileUrl: string); procedure SaveDBStockItemIniToFile(App: TBaseApp; ADB: TDBDealItem; ...
unit untOutgoingData; interface uses DateUtils, sysutils, untUtils; type OutgoingDataErrors = (ERROR_NoError = 0); PByte = ^Byte; type TOutgoingData = class private bPilotSymbol: Byte; bCommandLength: Byte; wSubstationAddress: Word; bCommandType: Byte; dtDateTime: TDateTime; wYear, w...
unit linux_explicit_synchronization_unstable_v1_protocol; {$mode objfpc} {$H+} {$interfaces corba} interface uses Classes, Sysutils, ctypes, wayland_util, wayland_client_core, wayland_protocol; type Pzwp_linux_explicit_synchronization_v1 = Pointer; Pzwp_linux_surface_synchronization_v1 = Pointer; Pzwp_linu...
unit tanque; interface uses SysUtils, DateUtils; type T_Tanque = class(TObject) private F_Id: Integer; F_Capacidade_Litros: Double; F_Quantidade_Litros: Double; F_TipoCombustivel_Id: Integer; // F_Id procedure ...
unit uRamalItensVO; interface uses System.SysUtils, uTableName, uKeyField, System.Generics.Collections; type [TableName('Ramal_Itens')] TRamalItensVO = class private FIdRamal: Integer; FId: Integer; FNumero: Integer; FNome: string; procedure SetId(const Value: Integer); procedure SetI...
unit MVCBr.PersistentModel; interface uses System.Classes, System.SysUtils, MVCBr.Interf, MVCBr.Model, MVCBr.Controller; Type TPersistentModelFactory = class(TModelFactory, IPersistentModel) protected FController:IController; public function Controller(const AController: IController): IPersistentMod...
unit ulimitedstringlist; {$mode objfpc}{$H+} interface uses Classes, SysUtils; type TLimitedStringList = class(TObject) private FIndexOfInsert: integer; FList: TStringList; function Get(Index: integer): string; function GetCount: integer; public constructor Create(AMaxCount: integer); ...
{ 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...
{******************************************************************************* 作者: dmzn@163.com 2011-11-30 描述: 商品订单确认 *******************************************************************************} unit UFormReturnConfirm; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Cont...
unit EVDtoNSRCPlusWriterTest; {* Тест записи в NSRC+ } // Модуль: "w:\common\components\rtl\Garant\Daily\EVDtoNSRCPlusWriterTest.pas" // Стереотип: "TestCase" // Элемент модели: "TEVDtoNSRCPlusWriterTest" MUID: (4B853E7501DF) {$Include w:\common\components\rtl\Garant\Daily\TestDefine.inc.pas} interface {$If Define...
{***************************************************************************} { } { VCL.Menus.Helpers } { } { ...
unit SiteMan; interface uses ElVCLUtils, ElTools, ElGraphs, ElPgCtl, ExtCtrls, Classes, Forms, SysUtils, ElTimers; type TSite = class private FInterval: integer; procedure SetInterval(Value : integer); procedure SetRepCount(Value : integer); //procedure SetRepFile (Value : ...
{ Version 1.0 - Author jasc2v8 at yahoo dot com This is free and unencumbered software released into the public domain. For more information, please refer to <http://unlicense.org> } unit threadunit; {$mode objfpc}{$H+} interface uses Classes, SysUtils; type { TThreadUnit } TThreadUnit = class(TThread) p...
{*********************************************} { } { ATImageMap component } { Copyright (c) 2008 Alexey Torgashin } { http://atorg.net.ru } { } {*******************************...
unit uPlayer; interface uses glr_core, glr_render2d, glr_math, glr_utils, uUnit; type { TArenaPlayer } TArenaPlayer = class (TArenaUnit) private fMeleeAttackInProgress: Boolean; // procedure MeleeAttack1(const dt: Double); // procedure MeleeAttack2(const dt: Double); /...
unit TTSUSERTable; interface uses Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf; type TTTSUSERRecord = record PUserName: String[10]; PModCount: Integer; PPassword: String[50]; PRealName: String[30]; PLoggedInFlag: Boolean; PLoggedInStamp: String[17]; PLogged...
unit MFichas.Model.Produto.Interfaces; interface uses System.Generics.Collections, MFichas.Model.Entidade.PRODUTO, ORMBR.Container.ObjectSet.Interfaces, ORMBR.Container.DataSet.interfaces, FireDAC.Comp.Client; type iModelProduto = interface; iModelProdutoMetodos = interf...
{ This file is part of the Free Pascal run time library. Copyright (c) 2008 by the Free Pascal development team Common stuff for Tiff image format. See the file COPYING.FPC, included in this distribution, for details about the copyright. This program is distributed in the hope that it will be...
unit NewStaticText; { TNewStaticText - similar to TStaticText on D3+ but with multi-line AutoSize support and a WordWrap property } interface {$IFNDEF VER90} {$IFNDEF VER100} {$IFNDEF VER120} {$IFNDEF VER130} {$DEFINE Delphi6OrHigher} {$ENDIF} {$ENDIF} {$ENDIF} {$ENDIF} uses Wi...
unit uTAGRequests; interface uses SysUtils, Windows, Messages, Classes, Graphics, Controls, Forms, Dialogs, uModel, System.Generics.Collections; type TTAGRequestItem = class; TTAGRequest = class(TAppObject) private FCabang: TCabang; FKeterangan: string; FNoBukti: string; FPetugas: string; ...
unit Model.PlanilhaBaixasDIRECT; interface uses Generics.Collections, System.Classes, System.SysUtils; type TPlanilhaBaixasDIRECT = class private FRegiao: String; FDataRegistro: TDate; FOperacao: String; FMotorista: String; FDataAtualizacao: TDate; FPesoNominal: Double; ...
unit UMazeHandler; //Fully annotated interface uses Classes, SysUtils, UInterface; type TCell = record // Properties of each square Wall: boolean; Passed: boolean; Solution: boolean; end; TMaze = Array of Array of TCell; //All squares in the maze TMazeHandler = class privat...
unit UHistory; {$mode objfpc}{$H+} interface uses Classes, SysUtils, UDraw, Math; type THistoryItem = record Figures: TFigureArray; Saved: boolean; end; { THistory } THistory = class private FItems: array of THistoryItem; FIndex: SizeInt; public constructor Create; procedure ...
unit DDUtils; interface uses Windows, SysUtils, Classes, DDraw ; { DDCopyBitmap - Draw a bitmap into a DirectDrawSurface } procedure DDCopyBitmap( Surface : IDirectDrawSurface ; Bitmap : HBITMAP ; x, y, Width, Height : integer ) ; { DDLoadBitmap - Create a Di...
{ *********************************************************** } { * TForge Library * } { * Copyright (c) Sergey Kasandrov 1997, 2016 * } { *********************************************************** } unit tfArrays; {$I TFL.inc} interface uses SysUti...
unit fmuWriteSerial; interface uses // VCL ComCtrls, Controls, StdCtrls, ExtCtrls, Classes, SysUtils, Buttons, Graphics, // This untPages, untUtil, untDriver; type { TfmWriteSerial } TfmWriteSerial = class(TPage) gbSerialNumber: TGroupBox; edtSerialNumber: TEdit; gbLicense: TGroupBox; ...
unit mainform; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls, DateUtils, clock_control; type { TForm1 } TForm1 = class(TForm) btnCronometer: TButton; btnStart: TButton; btnStop: TButton; btnReset: TButton; btnCl...
{$MODE OBJFPC} program DIGIT; const InputFile = 'DIGIT.INP'; OutputFile = 'DIGIT.OUT'; nbit = 32; radix = QWord(1) shl nbit; mask = radix - 1; maxd = 3; type TNumber = array[0..maxd] of Int64; var a, b, k: QWord; res: Integer; procedure Enter; var f: TextFile; begin AssignFile(f, InputFile); Res...
{ Classes for interpreting the output of svn commands Copyright (C) 2007 Vincent Snijders vincents@freepascal.org 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 Foundation; either version 2 of ...
unit uPengeluaranKas; interface uses uModel, uRekBank, uAR, uAccount, System.Generics.Collections, System.SysUtils, uSupplier, uPenerimaanKas; type TPengeluaranKasAPNew = class; TPengeluaranKasAP = class; TPengeluaranKasNonAP = class; TPengeluaranKas = class(TAppObject) private FCabang: TCabang; ...
unit ConstantsTypes; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Station, way; const r=5; // radius of stations mincr=1; maxcr=5; minway=1; maxway=30; type PItem = ^SItem; SItem = record Value:Tstation; next:PItem; end; type WPitem = ^WayItem; WayItem = record V...
program ManageArrays; {$Mode delphi} uses SysUtils, Quick.Commons, Quick.Console, Quick.Arrays; type TUser = record Name : string; Age : Integer; end; TUserArray = TXArray<TUser>; var userarray : TUserArray; user : TUser; normalarray : TArray<TUser>; begin try user.Name := 'Joe...
program MultiTask_PreCompiler; uses sysutils, classes, strutils, typinfo, fileutil, ucmdline, uMultiTask, uMultiTaskQueue, StringUtils, uIOFile_v4, regexpr, SuperObject; type tParam = record Name : string; Typ : string; end; tMethod = rec...
{ Date Created: 5/22/00 11:17:33 AM } unit InfoPULLLISTLOOKUPTable; interface uses Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf; type TInfoPULLLISTLOOKUPRecord = record PItemNumber: String[1]; PSI: String[2]; PDescription: String[20]; PAbbreviation: String[12]; End; ...
unit uvMain; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ExtCtrls, ComCtrls; type TFormMain = class(TForm) StatusBar1: TStatusBar; pnlTool: TPanel; btnAdd: TBitBtn; scrlTiles: TScrollBox; pnlTiles: TPane...
{*_* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Author: Arno Garrels <arno.garrels@gmx.de> Description: Delphi 2009 and 2010 do not update old projects correctly. This IDE plugin reads OutputDir, UnitOutputDir, SearchPath and Conditionals from the .d...
unit languajecontrol; interface implementation uses Windows, Consts; // Assign new value to a resource string procedure HookResourceString(ResStringRec: pResStringRec; NewStr: pChar) ; var OldProtect: DWORD; begin VirtualProtect(ResStringRec, SizeOf(ResStringRec^), PAGE_EXECUTE_READWRITE, @OldProtec...
{ Subroutine SST_R_SYO_UTITEM (TARG, SYM_MFLAG) * * Process UNTAGGED_ITEM syntax. } module sst_r_syo_utitem; define sst_r_syo_utitem; %include 'sst_r_syo.ins.pas'; procedure sst_r_syo_utitem ( {process UTITEM syntax} in out jtarg: jump_targets_t; {execution block jump targets info} in sym...
unit SmartThreadRegistry; interface uses Windows, Classes, Collection; procedure InitThreadRegistry; procedure DoneThreadRegistry; procedure RegisterThread( Thread : TThread ); procedure UnregisterThread( Thread : TThread ); function FindThread( ThreadId : dword ) : TThread; implementation var ...
unit ddCharacterProperty; interface uses Classes, ddTypes, ddPropertyObject, k2Prim, k2Interfaces, l3Interfaces, RTfTypes, l3Types, l3Base ; type TddCharacterProperty = class(TddPropertyObject) private f_FontName: AnsiString; f_LongProperties: Array[TddCharProperties] of Longint; ...
unit D3Math; interface function Min(a, b : integer) : integer; function Max(a, b : integer) : integer; implementation function Min(a, b : integer) : integer; begin if a < b then Result := a else Result := b; end; function Max(a, b : integer) : integer; begin if a > b...
unit CircuitEquivalences; interface uses Collection, Circuits; type TEquivalence = class; TEquivalences = class; TEquivalence = class public constructor Create(aRep : TCircuit); destructor Destroy; override; private fCircuits : TCollection; ...
unit FeatureErrorIntf; interface uses ErrorIntf; type IFeatureError = interface(IError) ['{0BA0638C-53C1-41A8-9EB2-6DC94244E2E6}'] function GetLine: Integer; function GetSugestedAction: string; procedure SetLine(const Value: Integer); procedure SetSugestedAction(const Value: string); prope...
(* This source code is Copyright (C) 2000 Kyley Harris This software is provided 'as-is', without any express or implied warranty. In no event will the author be held liable for any damages arising from the use of this software. Permission is granted to anyone who has received permission from the author ...
unit SQLite3Constants; { ******************************************************* SQLite 3 Dynamic Library wrapper for Delphi 2012 Ángel Fernández Pineda. Madrid. Spain. This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. To view a copy of this license, ...
unit FMX.Grid.DataManager; interface uses System.Classes, System.SysUtils, System.Rtti, FMX.Grid; type TGridDataManager = Class(System.Classes.TComponent) private FData: array of array of TValue; // Col and Row FMyGrid: TCustomGrid; // protected Procedure SetColLength(Const Value: Integer)...
{ 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 QRColorBox; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Buttons, system.UITypes; type TQRColorBox = class(TCustomControl) protected FColorval : TColor; FColor : TColor; F...
{*********************************************************} {* VPTASKEDITDLG.PAS 1.03 *} {*********************************************************} {* ***** BEGIN LICENSE BLOCK ***** *} {* Version: MPL 1.1 ...
{ $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...
// ********************************************************************** // // Copyright (c) 2001 MT Tools. // // All Rights Reserved // // MT_DORB is based in part on the product DORB, // written by Shadrin Victor // // See Readme.txt for contact information // // *****************************************************...
unit ParserBaseTestCase; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FpcUnit, TestRegistry, WpcScriptParser, WpcScript, WpcStatements, WpcExceptions, WpcWallpaperStyles; const PARSER_TEST_SUITE_NAME = 'Parser'; DEFAULT_PROBABILITY = 100; DEFAULT_TIMES = 1; TEST_DEFAULT_DELAY_STRING...
unit BitmapForm; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, FormOperations, ExtDlgs, ExtCtrls, SaveStatusForms; type TFormBitmap = class(TSaveStatusForm, IFormOperations) Image1: TImage; OpenPictureDialog1: TOpenPictureDialog; SavePictureDialo...
// 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 MdiChilds.ComponentCreate; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, MDIChilds.CustomDialog, System.ImageList, Vcl.ImgList, System.Actions, Vcl.ActnList, Vcl.PlatformDefaultStyleActnCtrls, Vcl.Actn...
unit evEmptyTableEliminator; {* Фильтр, выкидывающий пустые таблицы } // Модуль: "w:\common\components\gui\Garant\EverestCommon\evEmptyTableEliminator.pas" // Стереотип: "SimpleClass" // Элемент модели: "TevEmptyTableEliminator" MUID: (4CF7B733015E) {$Include w:\common\components\gui\Garant\EverestCommon\evDefine.in...
PROGRAM Complex; TYPE complex = RECORD re, im : real END; mystring = ARRAY[1..3] OF char; VAR x, y, z : complex; PROCEDURE print(name : mystring; VAR z : complex); BEGIN write(name, ' = (', z.re:0:5, ', ', z.im:0:5, ') '); END; PROCE...
{ ICS TWSocket descendant that performs TLS communication by means of Windows SChannel. Automatically processes SChannel connection bug. Supports establishing and finishing TLS channel over existing connection. Requires at least **ICS V8.66 - Part 10** for HTTP tunnel support. For older versions either: ...
unit tmsUFlxStack; {$INCLUDE ..\FLXCOMPILER.INC} interface uses Classes, SysUtils, tmsUFlxMessages; type TStringStack=class private FList: array of UTF16String; FListCount: integer; public constructor Create; destructor Destroy; override; function Count: Integer; function AtLeast(ACount: ...
unit nsUnderControlNotificationManager; // Модуль: "w:\garant6x\implementation\Garant\GbaNemesis\Data\Common\nsUnderControlNotificationManager.pas" // Стереотип: "SimpleClass" // Элемент модели: "TnsUnderControlNotificationManager" MUID: (55D429A70008) {$Include w:\garant6x\implementation\Garant\nsDefine.inc} interf...
unit PIImpl; interface uses orbtypes, orb, exceptions, PIDemo_int, PIDemo, LoggerPolicy_int, LoggerPolicy, pi, code_int, orb_int, policy_int, poa, poa_int, req_int; type TPIDemo_impl = class(TPIDemo_serv) private FOtherObj: IPIDemo; protected procedure noargs; override; procedure noargs_oneway; o...
unit blacktiger_hw; interface uses {$IFDEF WINDOWS}windows,{$ENDIF} nz80,mcs51,main_engine,controls_engine,ym_2203,gfx_engine,timer_engine, rom_engine,file_engine,pal_engine,sound_engine,qsnapshot; // {$define speed_debug} function iniciar_blktiger:boolean; implementation {$ifdef speed_debug}uses principa...
unit CsReplyProceduresPrim; {* Класс для регистрации "ответных процедур" сервера для запросов от клиента } // Модуль: "w:\common\components\rtl\Garant\cs\CsReplyProceduresPrim.pas" // Стереотип: "SimpleClass" // Элемент модели: "TCsReplyProceduresPrim" MUID: (537F645C01D1) {$Include w:\common\components\rtl\Garant\c...
{$I ok_sklad.inc} unit WaybillOutClass; interface uses XMLDoc, XMLIntf, WayBillClass, WBMetaItem, MetaClass; type TWaybillOutClass = class(TWayBillClass) private FWarehouseID: Integer; // common WH if all positions are from/to the same place function LoadXMLNode(var topNode, Node...