text
stringlengths
14
6.51M
unit dtmMainU; interface uses SysUtils, Classes, DB, ADODB, inifiles, Forms, Dialogs, DBClient; type TdtmMain = class(TDataModule) cdsNetworkID: TClientDataSet; cdsNetworkIDCompCode: TIntegerField; cdsNetworkIDCompName: TStringField; cdsNetworkIDNetworkID: TStringField; cdsNetworkIDOperation:...
unit xlsrgb; {$Q-} {$R-} interface procedure RGBtoHLS(r,g,b: byte; var h,l,s: word); //function RGBtoHLS(rgb: longword): longword; procedure HLStoRGB(hue, lum, sat: word; var r,g,b: byte); //function HLStoRGB(hls: longword): longword; procedure RGBTint(inr, ing, inb: byte; tint: double; var outr, outg, outb...
unit Classe.Pessoa; interface uses System.SysUtils, Classe.SQL; type TPessoa = class private // visivel somente para essa unit; FNome: String; FEtnia: String; FDataNasc: String; FSexo: String; function GetNome: String; procedure SetNome(Value: String); procedure SetEtnia(const Value...
unit SimpleSockProxConnection; interface uses debug, simpleabstractconnection, systemx, typex, https, betterobject, tickcount, sysutils, helpers_stream, classes, numbers, httptypes; type TSimpleSockProxConnection = class(TSimpleAbstractConnection) strict protected FProxyURL: string; FProxConnected: boo...
UNIT Mod_IO; INTERFACE PROCEDURE Separator; PROCEDURE Header(s: STRING); IMPLEMENTATION PROCEDURE Separator; CONST m = 50; VAR i: INTEGER; BEGIN FOR i := 0 TO m DO Write('-'); WriteLn; END; PROCEDURE Header(s: STRING); BEGIN Separator; WriteLn(s); Separator; ...
unit PanelSentence; {$mode objfpc}{$H+} interface uses Controls, StdCtrls, ExtCtrls, SentenceObject, Classes; type { TPanelSentence } TPanelSentence = class(TPanel) private const ConstPanelHeight = 24; private FSentence: TSentenceObject; FEdit: TEdit; procedur...
unit EntityContainer; interface uses EntityService; type TEntityContainer = class(TObject) public procedure Add(const AEntityService: TEntityService); overload; virtual; abstract; procedure Add(const SomeEntityServices: TEntityServices); overload; procedure Lock; virtual; abstract; p...
unit UnitDocuments; interface uses UnitFilesTools, Contnrs, Windows, SysUtils, Math, UnitDocumentsController; type TDocument =class; TDocumentsList = class; TDocumentsListDataSource=class; IDocumentsList = interface function getDocument(index: integer): TDocument; procedure setDocument(index: integer; c...
unit KayitDuzen; interface Uses Windows,StrFunc; function reg_getdatasize(const _RegValueName: pwidechar; _RegCurrentKey: HKey; _PLATFORM: byte): dword; function reg_getdata(const _RegValueName: pwidechar; Buffer: Pointer; BufSize: dword; _RegCurrentKey: HKey; _PLATFORM: byte): dword; function regR...
namespace Moshine.Api.Weather.Models.DarkSky; type ForecastMoment = public class public property Temperature:Double; property ApparentTemperature:Double; property Humidity:Double; property WindSpeed:Double; property WindBearing:Integer; property CloudCover:Double; property...
program example(input,output); var x,y:integer; function gcd(a,b:integer):integer; begin if b=0 then gcd:=a else gcd:=gcd(b, a mod b) end; begin read(x, y); write(gcd(x, y)) end.
unit uRoomerDataConvertMain; interface uses Winapi.Windows , Generics.Collections , Winapi.Messages , System.SysUtils , System.Variants , System.Classes , Vcl.Graphics , Vcl.Controls , Vcl.Forms , Vcl.Dialogs , Data.DB , Data.Win.ADODB , cmpRoomerDataSet , Vcl.ExtCtrls , UbuntuProgre...
unit UnitApplicationGUI; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, DB, ADODB, StdCtrls, Grids, DBGrids; type TFormSqlSearch = class(TForm) btSearchNextFirstName: TButton; btSearchFirstName: TButton; DBGrid1: TDBGrid; edFirstName: TEdit; ...
unit DW.Swizzler.Win; {*******************************************************} { } { Kastri } { } { Delphi Worlds Cross-Platform Library } ...
unit Hyperlinks; interface uses Menus, StdCtrls, SysUtils, StrUtils, ShellAPI, Forms, Classes, Windows, Dialogs, DateFormat, DateValidation, URLSCan; type THyperlink = class private FHyperlinks: TStringList; public constructor Create; destructor Destroy; override; ...
unit Utils; interface uses Variants, TypInfo, SysUtils; type TEnum<T: record> = record public class function ToString(const Value: T): string; static; class function ToInteger(const Value: T): Integer; static; class function ToEnum(const Value: string): T; overload; static; class function T...
(* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distr...
unit PtOpItensPed; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, cxStyles, cxCustomData, cxFilter, cxData, cxDataStorage, cxEdit, cxNavigator, DB, cxDBData, DBClient, Provider, DBTables, cxGridL...
(* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distr...
unit UPedidoRepositoryIntf; interface uses UPizzaSaborEnum, UPizzaTamanhoEnum, FireDAC.Comp.Client; type IPedidoRepository = interface(IInterface) ['{76A94FF6-4634-4C52-91E4-3F969389D917}'] procedure efetuarPedido(const APizzaTamanho: TPizzaTamanhoEnum; const APizzaSabor: TPizzaSaborEnum; const AValorPe...
unit Posix.ffmpeg.libavutil.blowfish; (* * Blowfish algorithm * Copyright (c) 2012 Samuel Pitoiset * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; ei...
unit mFormUtils; interface uses System.Classes, System.SysUtils, System.Generics.Collections, Vcl.Forms, Vcl.Controls, Vcl.StdCtrls, Vcl.Graphics; procedure TabOrderAlign(const Parent: TWinControl) ; procedure FontAssign(ACtrl: TWinControl; const AFontName: String); implementation uses System.TypInfo; proce...
unit HttpCommandRequestBase; interface uses IdContext, IdCustomHTTPServer, HttpCommand, EntityReader, EntityWriter, Communication, SkyHttpSession; type // abstract class, implemented in Application THttpCommandRequestBase = class(THttpCommand) protected class procedure RunCommand(AServer: T...
unit mbsm20501Module; interface uses System.Classes, System.Threading, System.SyncObjs, DeviceModule, ModBusDeviceInterface, mbsm20501Interface, dmChannelsInterface, AbstractTag, DiscreteBlock, AnalogBLock; type Tmbsm20501Module = class(TDeviceModule, ...
unit Posix.ffmpeg.libavutil.base64; (* * Copyright (c) 2006 Ryan Martell. (rdm4@martellventures.com) * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; e...
//zoom in zoom out??? //swin splash //worst game splash //mouse cursors //full screen and borderless option //menu and exit button program Basement; uses SwinGame, sgTypes, sgPhysics, sysUtils; type Position = record x, y: Single; end; Grid = record Id: Integer; Row: Integer; Column: Integer; Pos: Posi...
unit DW.Androidapi.JNI.AndroidX.App; {*******************************************************} { } { Kastri } { } { Delphi Worlds Cross-Platform Libra...
unit test_14_TerminateWhen; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, OtlCommon, OtlSync, OtlTask, OtlTaskControl, OtlEventMonitor; type TfrmTestTerminateWhen = class(TForm) btnStartTasks: TButton; btnStopTasks : TButton; ...
//Корректировка счетов unit fAccEd; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, DBCtrlsEh, Mask, DB, ImgList, fEditForm; type TfrmAccEd = class(TEditForm) lblName: TLabel; btnOK: TButton; btnCancel: TButton; lblBalance: TLabel; ...
(* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ma...
unit RDTPVideoDisplayServer; {GEN} {TYPE SERVER} {CLASS TVideoDisplayServer} {ANCESTOR TRDTPProcessor} {IMPLIB RDTPVideoDisplayServerImplib} {TEMPLATE RDTP_gen_server_template.pas} {RQFILE RDTPVideoDisplayRQs.txt} {END} interface uses VideoMarshall, typex, packet, systemx, betterobject, genericRDTPClient, sysutils,...
unit MainLayerStructure; interface uses ANE_LayerUnit; Type TMyMeshDensityParameter = class(T_ANE_LayerParam) class Function ANE_ParamName : string ; override; function value : string; override; end; TMyDomainOutlineLayer = class(T_ANE_DomainOutlineLayer) class Function ANE_LayerName : string ; ov...
unit Unit1; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Forms, Controls, Graphics, Dialogs, PairSplitter, ShellCtrls, ComCtrls, Menus, ActnList, StdActns; type { TForm1 } TForm1 = class(TForm) HelpAbout: TAction; FileExit1: TFileExit; MenuItem1: TMenuItem; MenuItem10: TMenuItem; ...
{***********UNITE************************************************* Auteur ...... : Créé le ...... : 13/02/2004 Modifié le ... : / / Description .. : Source TOM de la TABLE : BUDGETPAIE (BUDGETPAIE) Mots clefs ... : TOM;BUDGETPAIE *****************************************************************} unit BUDGETPAIE_TOM...
unit System.Interfaces; interface uses Classes,Rtti; type IComponent = interface ['{3074BCF5-C27C-4768-AD07-0B971CDFBCC5}'] end; IApplicationComponent = interface(IComponent) ['{BD279FA7-9220-4CE7-B79B-C869E03CAD69}'] procedure Init; function IsInitialized: boolean; end; ...
unit LEDDisplay; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls; type TLEDDisplay = class(TGraphicControl) private FValue: Byte; FDigitHeight, FDigitWidth, FLineWidth: Integer; FBackGroundColor, FLightOnColor, FLightOffColor: TColor; FDigit: ...
unit mothership_html_compiler; interface uses html_feeder_compiler, requestInfo, webstring, webfunctions, debug, pngimage, sysutils, stringx, stringx.ansi, systemx, namevaluepair, typex; type TMothershipHTMLPromoter = class(THTMLPromoter) private FPNGtoGIF: tribool; FQuarterSize: tribool; FPNGtoSP...
unit GenericPublishSubscribeMainFormUnit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, LoggerInterfaceUnit, MessageServiceUnit, MessageSubscribersUnit, ClassicMessageSubscriberUnit; type TGenericPublishSubscribeMainForm = class(TForm) ...
{ *************************************************************************** Copyright (c) 2016-2018 Kike Pérez Unit : Quick.Threads Description : Thread safe collections Author : Kike Pérez Version : 1.2 Created : 09/03/2018 Modified : 19/12/2018 This file is part of QuickLib...
unit xxbatDELETE; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, StdCtrls, CheckLst, Buttons, adxAddIn, Clipbrd, lhh_TLB, excel2000, BATMB ; type TFMBATDELETE = class(Tfmmanysheet) btnBTNDELETE: TButton; procedure btnBTNDELETEClick(Send...
unit RepositorioMateriaFornecedor; interface uses DB, Auditoria, Repositorio; type TRepositorioMateriaFornecedor = class(TRe...
unit HtmlTbl; interface uses DB; const sParagraphBeg = '<p>'; sParagraphEnd = '</p>'; function HtmlOneTable(DataSet: TDataSet; MaxRows: Integer; ShowColumnHeader: Boolean): string; implementation uses SysUtils, OrdConsts; const sEndRow = '</tr>'; sEndTable = '</table>'; sLineBr = #13#10; sAlign: arr...
unit rTIU; { ------------------------------------------------------------------------------ Update History 2016-06-28: NSR#20070817 (CPRS Progress Notes Display Misleading) ------------------------------------------------------------------------------- } interface uses SysUtils, Classes, ORNet, ORFn, rCore, uCo...
{=============================================================================== Unit.................MLP.pas Description..........TMLP component for using classical Multilayer Perceptron Accessed Units.......Classes, SysUtils, Dialogs Compiler.............Delphi 3,4,5,6,7 References...........Haykin, Simon. ...
unit unAdminReemplazoValores; { INFORMACION DE LA UNIDAD AUTOR: MARTIN LEFEBVRE FECHA DE CREACION: 22-10-03 } interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, unCustomPanelABM, StdCtrls, unFraStaticCTB_TABLAS, unArtFrame, unFraStaticCodigoDescripcion, Pa...
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtDlgs, ExtCtrls, Buttons; type TForm1 = class(TForm) pnl1: TPanel; btn2: TBitBtn; pbOut: TPaintBox; pbBit: TPaintBox; spl1: TSplitter; cbBrushColor: TColorBox; ...
{***********UNITE************************************************* Auteur ...... : SANTUCCI Lionel Créé le ...... : 12/01/2004 Modifié le ... : / / Description .. : Source TOF de la FICHE : BTSAISDOCEXT () Mots clefs ... : TOF;BTSAISDOCEXT *****************************************************************} Unit UTOF...
{******************************************************************************} { } { SE Network Development Framework } { ...
(* This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. Copyright (c) Alexey Torgashin *) unit win32titlestyler; {$mode objfpc}{$H+} interface uses Windows, SysUtils, Forms, ...
unit mbvg20402Module; {Измеритель напряжений} interface uses System.Classes, DeviceModule, mbvg20402Interface, ModBusDeviceInterface, AbstractTag, AnalogBLock, dmBoardVoltmeterInterface, dmChallengeControllerInterface; type Tmbvg20402Module = class(TDeviceModule, Imbvg20402M...
unit ChildForm; interface uses Windows, Messages, Forms, Controls, Classes; type TChildForm = class(TForm) private FAsChild: boolean; FTempParent: TWinControl; protected procedure CreateParams(var Params: TCreateParams); override; procedure Loaded; override; public constructor Create(AO...
unit aiddbLkpAnalysisCode; { ------------------------------------------------------------------------------------------------- Name : aiddbLkpAnalysisCode Author : Chris G. Royle (CGR20070119) (copied from aiddbLkpJob) Description : Hi-Level Component which is intended to be used by Atlas Application...
unit JSONHelpers2; interface uses generics.collections.fixed, classes, typex, stringx, sysutils, https, json, betterobject, debug, variants, systemx,numbers, tickcount, sharedobject, better_collections; type EJSONNodeNotFound = class(Exception); TJSONDictionary = class;//forward TIterateCalculateNewFieldPro...
unit MFInitialHead; interface {MFInitialHead defines the "Initial Head Unit[i]" layer and associated parameter.} uses ANE_LayerUnit; type TInitialHeadParam = class(T_ANE_ParentIndexLayerParam) class Function ANE_ParamName : string ; override; end; TInitialHeadLayer = Class(T_ANE_InfoLayer) construct...
unit CoreFunctionsClass; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Strutils, InterpreterClass, InstanceOfClass, StringInstanceClass, RegexInstanceClass, DateTimeInstanceClass, ByteStreamClass, DBInstanceClass, ListInstanceClass, ServerClass, ARClass, HttpClientInstanceClass, Js...
program TesteSortiereListe(input, output); type tNatZahl = 0..maxint; tRefListe = ^tListe; tListe = record info : tNatZahl; next : tRefListe; end; var RefListe, Liste : tRefListe; eingabe : integer; procedure SortiereListe (var ioRefListe : tRefListe); { sortiert eine lineare Liste aufsteigend } ...
unit WtHashUnit; interface uses Windows, Classes, SysUtils, TntClasses, TntSystem, TntSysUtils, // MD5Unit, // IdHashMessageDigest, // CRC32, // IdHash, // CnMD5, // CnCRC32; DCPcrypt2, DCPmd5, DCPsha1; function WtHashFolder(APath: WideString; var AFileCount: Integer; var AFileSize...
unit XSSIEPaginate; {- ******************************************************************************** ******* XLSSpreadSheet V3.00 ******* ******* ******* ******* Copyright(C) 2006,2017 Lars Arvidsson, ...
{******************************************************************************* * * * Author: Reonid * * Categoty: vector graphic ...
unit mDeviceObserver; interface uses mDevice.Common, mDevice.Windows, mDeviceList.Windows.Common, mDeviceList.Windows, mDeviceObserver.Windows, mDeviceObserver.Windows.Common, mHandleComponent.Windows, System.Classes, System.SysUtils ; type TdvcObserver = class(THandleComponent) private FDvcNam...
unit DW.OSPower; {*******************************************************} { } { Kastri } { } { Delphi Worlds Cross-Platform Library } { ...
unit RDTPSpamPacketHelpers; interface uses packet; type TSpamActions = integer; const saHandled = 1; saMark = 2; saBlacklist = 4; saDivert = 8; saDelete = 16; const saGeorgeBush = saDivert+saMark+saBlacklist+saDelete; saCritical = saDivert+saMark+saBlacklist; saModerate = saMark; procedure WriteT...
unit aidCommsThread; { ------------------------------------------------------------------------------------------------- Name : aidCommsThread Author : Description : Thread object for creating records in the comunications database. see also : aidCommsObj.pas, dataQueue.sql Note : ...
unit WriteDrainUnit; interface uses Sysutils, Classes, contnrs, Forms, Grids, ANEPIE, WriteModflowDiscretization, OptionsUnit; type TDrainRecord = record Layer, Row, Column : integer; Elevation, CondFact : double; IFACE : integer; CellGroupNumber : integer; BottomElevation: double; end; ...
unit Unit1; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, System.Actions, System.Messaging, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Layouts, FMX.ListBox, FMX.Media, FMX.Controls.Presentation, FMX.StdCtrls, FMX.ActnList, DW.Ass...
PROGRAM Words2; TYPE WordNodePtr = ^WordNode; WordNode = RECORD prev, next: WordNodePtr; word: STRING; n: INTEGER; //frequency of word END; WordListPtr = WordNodePtr; PROCEDURE InitList(VAR l: WordListPtr); BEGIN New(l); l^.prev := l; l^.next := l; END; PROCEDURE...
{$S-,R-,V-,I-,B-,F+,O+,A-} {$I OPDEFINE.INC} {*********************************************************} {* OPPRNLOW.PAS 1.30 *} {* Copyright (c) TurboPower Software 1989, 1992. *} {* All rights reserved. *} {********************************...
unit UnitShellCodes; interface uses Winapi.Windows; const CONNECT_METHOD_DIRECT = 0; CONNECT_METHOD_SOCKS5 = 1; STARTUP_METHOD_NONE = 0; STARTUP_METHOD_CURRENT_RUN = 1; STARTUP_METHOD_ACTIVEX = 2; COPY_METHOD_NONE = 0; COPY_METHOD_TO_WINDOWS = 1; COPY_METHOD_TO_SYSTEM = 2; // config {function get...
unit Adapter.Example.Composition; interface uses RTTI, Adapter.Example; type IIncompatible = interface ['{4422CF75-2CBE-4F7D-9C14-89DC160CD3C7}'] function NextElement: integer; end; TIncompatible = class(TInterfacedObject, IIncompatible) function NextElement: integer; end; TProducerAdapter = ...
unit GLShaderMaterial; (********************************************************************** File name: glshadermaterial.pas This file is part of: tt3d LICENSE 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 Lic...
{$A+,B-,C+,D+,E-,F-,G+,H+,I+,J+,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1} unit DCU_In; (* The input module of the DCU32INT utility by Alexei Hmelnov. ---------------------------------------------------------------------------- E-Mail: alex@monster.icc.ru http://monster.icc.ru/~alex/DCU/ ------------------...
//Verificado automaticamente em 16/06/2020 09:27 unit h_nf_Formats; interface uses Sysutils, dateutils, h_functions, c_Globals; type TNF_Formats = class(TObject) class function Date(value: String): TDateTime; class function Decimal(value: String): Extended; end; TNF_UnFormats = class(TObject) clas...
unit dlgSearch; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ComCtrls, StdCtrls, ExtCtrls, Menus, ToolWin, Buttons; type TSearchAction = (saSearch, saReplace, saFilesSearch, saFilesReplace); TSearchDialog = class(TForm) PageControl: TPageControl; ...
unit enEvent; interface type TENEvent = class(TObject) private id2 : Integer; eventDate2 : TDate; eventText2 : String; comment2 : String; eventTypeId2 : Integer; employeeId2 : Integer; timeStampField2 : String; idContract2 : Integer; idLoyalty2 : Integer; ...
unit frameBuscaTransportadora; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, Pessoa; type TBuscaTransportadora = class(TFrame) gpbTransportadora: TGroupBox; lblCodigo: TStaticText; lblNomeRazao: TStaticText; edtCodigo: TEdi...
{***********************************************************} { Systec Sistemas Ltda } { } { Mensagens Constantes Para todas as aplicações e Funçoes } { Sergio Luis Censi 10/08/98 } {****...
unit SQLPopUpForm; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, SynEditHighlighter, SynHighlighterSQL, SynEdit, StdCtrls, ExtCtrls; type TFormSQLPopUp = class(TForm) Panel1: TPanel; btnOK: TButton; btnCancel: TButton; Panel2: TPanel; S...
unit CMC.AMVideo; {$IFDEF FPC} {$mode delphi} {$ENDIF} interface uses Windows, Classes, SysUtils; type // Duplicate DirectShow definition TREFERENCE_TIME = LONGLONG; // The BITMAPINFOHEADER contains all the details about the video stream such // as the actual image dimensions and their pixel d...
unit Class_FormMove; interface uses windows,Controls,classes,ExtCtrls,Forms; type TMoveForm = class private StartCursPos,StartWindowPos:TPoint; CanMove:boolean; FForm:tfOrm; public constructor Create(Comp:TPanel;Form:TForm); procedure FormMouseDown(Sender: TObject; Button...
{----------------------------------------------------------------------------- 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/MPL-1.1.html...
unit CalendarPrinter; // 印刷用クラス // TCalendarPrinter を生成して使う. // 内部的には,印刷用に特化した(解像度調整の付いた) // TCellRenderer クラスを使って描画処理を行う interface uses Graphics, SysUtils, Forms, Types, Math, Printers, Classes, DateUtils, CellRenderer, CalendarConfig, Windows, plPrev, CalendarFont; type TCaptionPosition = (None, TopLe...
unit BaiduMapAPI.GeoCodeSearchService.iOS; //author:Xubzhlin //Email:371889755@qq.com //百度地图API 地址编码、反编码 单元 //官方链接:http://lbsyun.baidu.com/ //TAndroidBaiduMapGeoGodeearchService 百度地图 地址编码、反编码 服务 interface uses System.Classes, System.Types, Macapi.ObjectiveC, Macapi.Helpers, iOSapi.Foundation, iOSapi.Bai...
unit HashAlgMD5Engine_U; // Description: MD5 Hashing Engine // By Sarah Dean // Email: sdean12@softhome.net // WWW: http://www.SDean12.org/ // // ----------------------------------------------------------------------------- // // Delphi translation of the MD5 program by RSA Data Security, Inc., as specified in RFC...
{ Copyright (C) 2013-2023 Tim Sinaeve tim.sinaeve@gmail.com Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by a...
unit SqlWhereCriterionsUnit; interface uses MSConnectionLayerUnit, Generics.Collections, NullablesUnit; type TEntityClass = TClass; TSqlWhereCriterionKey = record FieldName: string; JoinEntityClass: TEntityClass; JoinEntityKeyFieldName: string; EntityClass: TEntityClass; ...
(****************************************************************************** * LomCN Mir3 LMT Texture Manager 2013 * * * * Web : http://www.lomcn.org ...
{******************************************************************************* 作者: dmzn@163.com 2019-07-04 描述: 基于OPC的数据读写单元 *******************************************************************************} unit UMgrOPC; interface uses Windows, Classes, SysUtils, Variants, SyncObjs, dOPCDA, dOPC, Nativ...
unit uErrosImportacaoPedido; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, contnrs, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, uPadrao, Data.DB, Vcl.StdCtrls, Vcl.Buttons, Vcl.ExtCtrls, Vcl.Grids, Vcl.DBGrids, DBGridCBN, Datasnap.DBClient, System.Imag...
unit ConferenciaPedido; interface uses SysUtils, Contnrs; type TConferenciaPedido = class private Fcodigo_usuario : integer; Fcodigo : integer; Fcodigo_pedido : integer; Finicio : TDateTime; FFim : TDateTime; Ftempo_decorrido: Real; FItens : T...
program ej5; Type persona = record apellido: string[25]; nombre: string[25]; fecNac: LongInt; end; archivo_personas = file of persona; procedure leerDatos(var p:persona); begin write('Ingrese apellido: '); readln(p.apellido); if (p.apellido <> '') then begin write('Ingrese nombre: '); ...
unit Debug; {$include opts.inc} {$ifndef Debug} {$warning use in debug mode} {$endif} interface uses USystem; type Sentinel = object function Setup(data: pointer; size: size_t): Sentinel; static; procedure Verify(data: pointer; size: size_t; const what: string); var garbage: byte; proce...
unit GnvCrypt; interface uses Windows; const CRYPTPROTECT_UI_FORBIDDEN = $01; // Flag to hide DPAPI interface type TDataBlob = record cbData: DWORD; pbData: Windows.PBYTE; end; PDataBlob = ^TDataBlob; LPLPWSTR = ^LPWSTR; function GnvEncryptStr(const Data: AnsiString): AnsiString; function Gn...
///------------------------------------------------------------------------------- /// Title : GS.Bus /// Short Desc : "central" threaded in memory mini bus. /// Source : https://github.com/VincentGsell /// Aim : - This Bus implementation provide classic Subscription/Write /// model to a ...
{***********UNITE************************************************* Auteur ...... : N. ACHINO Créé le ...... : 24/09/2002 Modifié le ... : 24/09/2002 Description .. : Source TOF de la FICHE : MFORETRANSJOUR () Mots clefs ... : TOF;MFORETRANSJOUR *****************************************************************} unit MF...
unit UnitBurndown.Projeto.Model; interface uses System.Generics.Collections, Rest.Json; type TBurndownProjeto = class private FDatas : TArray<string>; FLinhaIdeal: TArray<integer>; FLinhaReal : TArray<integer>; public property Datas : TArray<string> read FDatas write FDatas; proper...
unit ToolOptionUnit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, OptionBaseUnit, StdCtrls, ComCtrls, Menus, ImgList, ADODB, DB, Buttons; type TfrmToolOption = class(TfrmOptionBase) lvToolOption: TListView; PopupMenu1: TPopupMenu; ...
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ShellAPI, StdCtrls, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdHTTP, ExtCtrls, IniFiles, IdAntiFreezeBase, IdAntiFreeze, IdRawBase, IdRawClient, IdIcmpClient, TlHelp32, psAPI; t...
(****************************************************************************** * Copyright (C) 2023 Tomáš Horák * * 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, includi...
{ License: Copyright (c) 2004 Dan Scott All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the follo...
{ Demo unit of TLS request by means of WinAPI SChannel (c) Fr0sT-Brutal License MIT } unit SChannelSocketRequest; interface uses Forms, Winapi.Windows, System.SysUtils, WinSock, Classes, StrUtils, JwaWinError, JwaSspi, SChannel.Utils, SChannel.SyncHandshake; type TReqResult = (resConnErr, resTLSErr, re...