text
stringlengths
14
6.51M
unit DataDonaciones; interface uses SysUtils, Classes, DB, ADODB; type TdmDonaciones = class(TDataModule) Datos: TDataSource; qrDatos: TADOQuery; qrDatosDonacionID: TStringField; qrDatosMuestraNo: TStringField; qrDatosMuestraNoAS: TStringField; qrDatosNoAsCorto: TStringField; qrDatosF...
// ************************************************************************ // // The types declared in this file were generated from data read from the // WSDL File described below: // WSDL : http://localhost/wsbuildfax/buildfax.asmx?wsdl // >Import : http://localhost/wsbuildfax/buildfax.asmx?wsdl:0 // Encoding :...
unit rSortListView; interface uses Classes, ComCtrls; type TSortDirection = (sdAscending, sdDescending); TLVOwnerSortEvent = procedure(Sender: TObject; const SortColumn: Integer; SortDirection: TSortDirection) of object; TrSortListView = class(TListView) private fColumnToSort: Integer; fSortDirec...
{******************************************************************************} { } { Indy (Internet Direct) - Internet Protocols Simplified } { ...
unit TTextureManagerClass; {$mode objfpc}{$H+} { ----- interface ------------------------------------------------------------------------------------------------- } interface uses zglHeader, BasicTypes, Classes, SysUtils; { ----- global types -------------------------------------------------------...
{ $HDR$} {**********************************************************************} { Unit archived using Team Coherence } { Team Coherence is Copyright 2002 by Quality Software Components } { } { For further infor...
object SerialDialog: TSerialDialog Left = 227 Top = 108 BorderStyle = bsDialog Caption = 'Serial Port Settings' ClientHeight = 176 ClientWidth = 351 Color = clBtnFace ParentFont = True OldCreateOrder = True Position = poOwnerFormCenter OnCreate = FormCreate OnShow = FormShow PixelsPerInch = 96...
//二维码单据 unit ECC200; interface uses DateUtils; type TByteArray = array of byte; TECC200Size = ( ecc200_Autosize, ecc200_10x10, ecc200_12x12, ecc200_14x14, ecc200_16x16, ecc200_18x18, ecc200_20x20, ecc200_22x22, ecc200_24x24, ecc200_26x26, ecc200_32x32, ecc200_36x...
unit MainLibrary; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Registration, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Menus, Vcl.Imaging.jpeg, Vcl.ExtCtrls, Vcl.StdCtrls, Vcl.Themes, Authorization; type TMainForm = class(TForm) ...
unit mcsConstantesRutinas; interface uses windows, sysUtils, dialogs,Graphics,Math;//,Contnrs; const NUMERO_MAXIMO_DE_MICROCONTROLADORES = 2;//4; type TELista=array[1..NUMERO_MAXIMO_DE_MICROCONTROLADORES] of integer; const DIR_ULTIMO_BYTE_MEM_PROG=8191; {4095 para 8051} type TablaDeDir...
unit OpenGLUtils; interface uses Windows, Messages, SysUtils, Classes, Graphics, OpenGL; type EOpenGLError = class(Exception); TOGLDevice = class(TObject) private FOwnDC: Boolean; FDC: HDC; FRC: HGLRC; FIsCurrent: Boolean; procedure SetIsCurrent(const Value: Boolean); protected pub...
{*******************************************************} { } { Delphi DataSnap Framework } { Copyright(c) 2012-2013 Embarcadero Technologies, Inc. } { } {*****************************...
unit u_login; // ============================================================================= // ============================================================================= // // Module name : $RCSfile: u_login.pas,v $ // Short description : Login-Fenster // Compiler : Delphi 2007 // F...
program Layerss; {$IFNDEF HASAMIGA} {$FATAL This source is compatible with Amiga, AROS and MorphOS only !} {$ENDIF} { Project : layers Source : RKRM } {* ** For the sake of brevity, the example is a single task. No Layer ** locking is done. Also note that the routine myLabelLayer() is used ** to redraw...
unit Tracks; interface uses Windows, Contnrs, Board, TrackItems, Intersect, UndoEngine; // ************************************************************ // CONTAINER HOLDS ALL STRIPS & SEGMENTS ON A BOARD // ************************************************************ type TbeTracks = class ...
{**********************************************************************} { } { "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 comp...
unit rHtmlUtils; interface uses Types, Classes; type THtmlEncodeOption = ( heEof, // преобразовывать переводы строк heQuotes, // преобразовывать двойные кавычки heLinks, // преобразовывать ссылки heAmp, // преобразовывать & в & heTags, // прео...
(* * WebBrowserHelper * WebBrowser Utility * * Copyright (c) 2015 HOSOKAWA Jun. * * CONTACT * Twitter @pik or freeonterminate@gmail.com * * LAST UPDATE * 2015/12/13 First Release * * PLATFORM * iOS, Android * Delphi (XE7 <- maybe) XE8, 10 seattle * Maybe, Appmethod and C++Bu...
unit ViewModel.CompanyList; interface uses Model.Interfaces; function CreateCompanyListViewModelClass: ICompanyListViewModelInterface; implementation uses Model.Company, Model.FormDeclarations, Model.ProSu.Interfaces, Model.ProSu.InterfaceActions, Model.ProSu.Provider, Model.ProSu.Subscriber; type T...
{ TUserAccountInfo Component Version 1.9b - Suite GLib Copyright (©) 2009, by Germán Estévez (Neftalí) Contiene información acerca de las cuenta de usuario en el ordenador. Utilización/Usage: Basta con "soltar" el componente y activarlo. Place the component in the form and active it. ...
unit FMX.Helpers.Controls; interface uses System.SysUtils, System.IOUtils, System.Types, System.UITypes ,System.Classes, System.Variants, System.Actions, System.ImageList ,FMX.Types, FMX.Graphics, FMX.Objects, FMX.Controls, FMX.Controls.Presentation ,FMX.StdCtrls, FMX.Forms, FMX.Dialogs, FMX.TabControl, FMX...
unit KerbalSpaceCtrl.Model; interface uses System.Classes, System.SysUtils, SocketClient, kRPC_DataBuffer, kRPC_Types, KerbalSpaceControls; type TKSPControlContext = record VesselID, VesselControlID: UInt64; procedure Initialize; function IsValid: boolean; end; TKSPVesse...
program ej3; type establecimiento = record CUE : Integer; nombre : string; docentes : Integer; alumnos : Integer; localidad : string; end; maximos = record max1 : Real; max2 : Real; CUE1 : Integer; CUE2 : Integer; nombre1 : string; nombre2 : string; end; procedure leerDatos(var escuela:estab...
unit depscan.Db; interface uses SysUtils, Generics.Collections, sqlite3; type TImageId = int64; TImageIdList = TList<TImageId>; TDepImageData = record id: TImageId; name: string; path: string; end; TDepImageList = TList<TDepImageData>; TDepExportData = record ord: intege...
//Unit printfileinfo; //{$mode objfpc}{$H+} // Interface // Uses // // resource, versiontypes, versionresource; // VAR // Stream: TResourceStream; // vr: TVersionResource; // fi: TVersionFixedInfo; // // // // FUNCTION resourceVersionInfo: STRING; // // // // BEGIN // RESULT:= ''; // T...
unit FrameLogs; interface uses SysUtils, Grids, StdCtrls, Forms, Controls, Classes, ComCtrls, InvokeRegistry, LogWS, CommonObjs; type PWStrings = ^TWStrings; TWStrings = array[0..0] of WideString; TLogCategory = ( lcInformation, lcWarning, lcError ); const LogCategoryNames : array[ TLogCate...
unit uHilang; interface uses uType; procedure lapor_hilang (logInfo : User; var dKehilangan : kehilanganArr); procedure lihat_laporan (logInfo : User; dKehilangan : kehilanganArr; dBuku : bukuArr); implementation procedure lapor_hilang (logInfo : User; var dKehilangan : kehilanganArr); va...
unit fBlkIR; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, StdCtrls, Spin, fMain, TBlokIR; type TF_BlkIR = class(TForm) E_Nazev: TEdit; SE_ID: TSpinEdit; L_IR02: TLabel; L_IR01: TLabel; GB_MTB: TGroupBox; L_IR04: TLabel; ...
unit drawingview; {$mode delphi} interface uses Classes, SysUtils, And_jni, AndroidWidget, systryparent, PaintShader; type //CCW - counter-clockwise //CW - clockwise TPathDirection = (pdClockwise, pdCounterClockwise); TOnDrawingViewSizeChanged = procedure(Sender: TObject; width: integer; height: int...
unit Score; 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.Objects, FMX.Layouts; type TScoreForm = class(TForm) ToolBar1: TToolBar; Label1: TLabel; lResults...
unit ProjNameNoWin; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, IniFiles, StdCtrls, CommUtils; type TfrmProjNameNo = class(TForm) mmoOEM: TMemo; btnCancel: TButton; btnOk: TButton; mmoODM: TMemo; Label1: TLabel; Label2: TLabel; ...
unit ObservationReceiver; interface uses Classes, IdTCPClient, Constants, Observation; type TObservationDataReceiver = class(TThread) private DataReceiver : TIdTCPClient; fChannel : smallint; fOwnerObs : TObservation; private procedure ReceiveMovement; protected procedur...
unit ExtUtils; {********************************************** Kingstar Delphi Library Copyright (C) Kingstar Corporation <Unit> ExtUtils <What> 包含常用函数(文件处理,字符串处理等等) <Written By> Huang YanLai <History> **********************************************} interface uses windows,messages,SysUtils,Cl...
{$R+} {Directiva de compilador R} program CargaMatrices; const max = 5; type rangofila= 1..max; rangoCol= 1..max; Matriz = array [rangofila, rangoCol] of integer; var Mat: Matriz; Procedure Cargar (var M:Matriz); var fil: rangofila; col: rangoCol; Begin randomize;...
unit uROIdServerWebsocketHandling; interface uses Classes, IdServerWebsocketHandling, IdServerWebsocketContext, IdContext, IdIOHandlerWebsocket; type TOnRemObjectsRequest = procedure(const AThread: TIdContext; const strmRequest: TMemoryStream; const strmResponse: TMemoryStream) of object; TROIdServerWSConte...
(* Copyright (c) 2011, Stefan Glienke All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and t...
unit Report_GoodsRemains_byPack; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, AncestorReport, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, dxSkinsCore, dxSkinsDefaultPainters, dxSkinscxPC...
unit Unit1; { Copyright (c) 2010 Peter Hearnshaw Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License, as described at http://www.apache.org/licenses/ and http://www.pp4s.co.uk/licenses/ Converted to Smart Pascal by...
unit StaticArraysForm; 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.ScrollBox, FMX.Memo; type TForm1 = class(TForm) Memo1: TMemo; Button1: TBut...
unit UQryThread; interface uses System.Classes, System.Generics.Collections, System.SyncObjs, FireDAC.Comp.Client, FireDAC.Stan.Param, Vcl.DBGrids, {$IFDEF LOG} ULog, {$ENDIF} UDefinitions; type TSQLAction = (saOpen, saExec); TErrData = record HeaderId: Integer; PacketName: string; ...
unit Alcinoe.FMX.NativeView.Android; interface {$I Alcinoe.inc} {$IFNDEF ALCompilerVersionSupported} {$MESSAGE WARN 'Check if FMX.Presentation.Android.pas was not updated and adjust the IFDEF'} {$ENDIF} uses System.Classes, System.Types, Androidapi.JNI.GraphicsContentViewText, Androidapi.JNI...
{************************************************** To run CGI application like PHP-CGI.exe or Perl.exe **************************************************} unit Alcinoe.CGI; interface uses system.classes, Alcinoe.IsapiHTTP, Alcinoe.HTTP.Client, Alcinoe.StringList; Procedure AlCGIInitDefaultServe...
unit VirtualPanningWindow; {Adapted from VirtualTrees by Luiz Américo to work in LCL/Lazarus} {$mode objfpc}{$H+} interface uses Windows, Graphics, Classes, SysUtils; type { TVirtualPanningWindow } TVirtualPanningWindow = class private FHandle: THandle; FImage: TBitmap; pro...
unit SOLID.SemOCP; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS, FireDAC.Phys.Intf, FireDAC.DApt.Intf, F...
unit SearchInFilesUnit; {$IFDEF FPC} {$MODE Delphi} {$ENDIF} interface uses {$IFnDEF FPC} Windows, {$ELSE} LCLIntf, LCLType, LMessages, {$ENDIF} Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, HelperUnit, SynEdit, SynEditHighlighter, SynHighli...
unit ZBase64; // *************************************************************************** // ******** Библиотека классов для работы с MIME base 64 кодированием ******** // ********************** (C) Зайцев О.В.,2002 г. **************************** // **************************************************************...
// Fit4Delphi Copyright (C) 2008. Sabre Inc. // 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 2 of the License, or (at your option) any later version. // // This program is...
unit TSTOModToolKit; interface Uses Windows, Classes, SysUtils, HsStringListEx, TSTOProject.Xml, TSTODlcIndex, TSTOPatches, TSTOProjectWorkSpace.IO; Type TTSTODlcGenerator = Class(TObject) Public Procedure ValidateXmlFiles(AProject : ITSTOXMLProject); Procedure CreateMod(AProject : ITSTOXMLProject; AWo...
program exer2; const max = 100; type tpmat = record mat:array [1 .. max, 1 .. max] of integer; tam:integer; end; procedure escrever(var matriz:tpmat); var i:integer; begin writeln(' '); for i:=1 to matriz.tam do write(matriz.mat[i,i],' '); writeln(' '); end; procedure ler(var matriz:tpmat); var i,j:in...
unit dImporta; interface uses SysUtils, Classes, ComCtrls, Forms; type TdmdImporta = class(TDataModule) private FProgressBar: TProgressBar; { Private declarations } public { Public declarations } function Importar: string; function ImportarOld: string; property Progres...
unit UnitMigration4D.Interfaces; interface uses System.Generics.Collections, UnitMigrations.Model; type TTypeDriver = (Firebird, Postgres); iTable = interface; iCollumn = interface ['{3D7932E5-9211-44AF-BCAB-D4799C76EE13}'] function AddCollumn(Name: string; atype: string): iCollumn; function &...
unit VestaFile; interface uses Description, VersionInfo, Plane, Angle, Speed; const VestaFileExt = '.obs'; VestaSignature = 'Vesta Observation'^Z; Vesta1Sig = 'Vesta Radar Observation v1.0'^Z; Vesta2Sig = 'Vesta Radar Observation v1.5'^Z; MonthIDs = 'efmayjlgsond'; ...
(* CD-ROM input component This file is a part of Audio Components Suite. All rights reserved. See the license file for more details. Copyright (c) 2002-2009, Andrei Borovsky, anb@symmetrica.net Copyright (c) 2005-2006 Christian Ulrich, mail@z0m3ie.de Copyright (c) 2014-2015 Sergey Bodrov, serbod@gmail.com ...
{******************************************************************************} { } { Icon Fonts ImageList: An extended ImageList for Delphi/FireMonkey } { to simplify use of Icons (resize, colors and more...) ...
program recursion4; const dimF = 15; {Dimensión física del vector} type vector = array [1..dimF] of integer; dim = 0..dimF; {----------------------------------------------------------------------------- CARGARVECTORORDENADO - Carga ordenadamente nros aleatorios entre 0 y 100 en el vector ...
unit RepositorioNFCe; interface uses DB, Auditoria, Repositorio, Classes; type TRepositorioNFCe = class(TRepositorio) protected function Get (Dataset :TDataSet) :TObject; overload; override; function GetNomeDaTabela :String; override; function GetIdentifica...
unit Kzacom; interface uses Classes; type TModes=(mRGS,mPSO,mPPSO,mNone); TKind=(kNames,kValues); Coord = (X,Y,Z); IntegralDegree = 0..3; ZType = -30..0; Range = set of IntegralDegree; TStek = class (TObject) public constructor Create; destructor Destroy; pr...
unit NotaService; interface uses XData.Server.Module, XData.Service.Common; type [ServiceContract] INotaService = interface(IInvokable) ['{0DAF857A-EB46-44EB-8EF2-1E444520B627}'] [HttpGet] procedure Registrar(Nota: Integer; out Media: double; out Total: Integer); end; [ServiceImpl...
unit DW.VirtualKeyboard.Helpers; {*******************************************************} { } { Kastri Free } { } { DelphiWorlds Cross-Platform Library ...
unit EDIFactClasses; interface uses SysUtils, Classes, Windows, Messages, Variants, DateUtils, Controls; type EOdetteException = Exception; TFieldType = (ftString, ftInteger, ftDate, ftDateTime, ftReal, ftBool); TOdetteCollectionClass = class; TOdetteClass = class(TObject) private FPropName: string; ...
unit View.TemplateEdit; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Model.ProSu.Interfaces, JvComponentBase, JvEmbeddedForms, Model.ProSu.Provider, Vcl.StdCtrls, JvFormPlacement, Data.DB, ...
// // ls.pas // // This application shows how ls is implemented in ToroOS. // // Copyright (c) 2003-2022 Matias Vara <matiasevara@gmail.com> // All Rights Reserved // // 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 F...
unit uKeyloggerManager; // Менеджер кейлоггеров interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Menus, Grids, RXGrids, Buttons, ExtCtrls, zProcess, SystemMonitor, zSharedFunctions, zHTMLTemplate, zKeyloggerHunter, zAVKernel; type TKeyloggerInfo = re...
unit Prototype.Classes.Person; interface uses Prototype.Classes.IdInfo, Rest.JSon; type TPerson = class private FBirthDate: TDateTime; FName: string; FIdInfo: TIdInfo; FAge: Integer; FDeep: Boolean; procedure SetAge(const Value: Integer); procedure SetBirthDate(const Value: TDateTim...
{==============================================================================* * Copyright © 2020, Pukhkiy Igor * * All rights reserved. * *============================================================================...
program LuoguP1478(input,output); var n,s,a,b:longint; xi,yi:array of longint; i,j:longint; procedure quicksort(var a:array of longint;l,r:longint); var i,j,x:longint; begin if l>=r then exit; i:=l; j:=r; x:=a[i]; while i<=j do begin while (i<j) and (a[j]>x) do dec(j); if i<j ...
unit CardFormViewModel; interface uses Disposable, ClonableUnit, CopyableUnit, SysUtils, Classes; type TOnCardFormViewModelPropertyChangedEventHandler = procedure ( Sender: TObject; const PropertyName: String; const PropertyValue: Variant ) of object; TCardFormViewModelProp...
unit Panzer; interface uses FMX.Layouts, FMX.Objects, System.Classes, MoveGameObject, Bullet, System.Threading; type TPanzer = class abstract(TMoveGameObject) public IsBulletFly: Boolean; procedure MoveTop; procedure MoveBot; procedure MoveLeft; procedure MoveRight; pr...
unit DAO.Produto; interface uses Model, DAO, FireDAC.Comp.Client, FireDAC.Stan.Param, SysUtils; type TProdutoDAO = class(TDAO) function StringInsert: string; override; procedure SetParameters(var AFDQuery: TFDQuery; const AModel: TModel); override; function CreateModel: TModel; override; function...
{$MODE OBJFPC}program Messy; uses SysUtils; Function ReadString(prompt : String):String; begin Write(prompt); ReadLn(result); end; function Options():String; begin WriteLn('Simple Calculator'); WriteLn('1: Addition'); WriteLn('2: Subtraction'); WriteLn('3: Multiplication'); WriteLn('4: Division'); Writ...
{*******************************************************} { } { TFacturaElectronica } { } { Copyright (C) 2017 Bambu Code SA de CV } { ...
unit FindResult_u; interface uses SysUtils, Windows, Messages, Variants, Classes, Graphics, Controls, Forms, Dialogs, ToolWin, ComCtrls, ImgList, CommCtrl, ToolBarIcons_u, ExtCtrls, Advanced, Viewer_u, RarView_u, LZMA_u, ArchView_u, SignatureDetect_u, Sh...
unit DatabaseConnectionFactory; interface uses DatabaseConnection, DatabaseConfig, DatabaseConnectionType, Exceptions; type IDatabaseConnectionFactory = interface ['{844D387C-FE80-41A0-85FA-477C189D69A2}'] function newConnection(const Config: IDatabaseConfig): IDatabaseConnection; end; function Connecti...
{En pos de recuperar dicha información, se deberá procesar 2 archivos por cada una de las 50 delegaciones distribuidas en la provincia, un archivo de nacimientos y otro de fallecimientos y crear el archivo maestro reuniendo dicha información. Los archivos detalles con nacimientos, contendrán la siguiente informac...
unit Alcinoe.AndroidApi.Google; interface uses Androidapi.JNI.Os, Androidapi.JNI.GraphicsContentViewText, Androidapi.JNIBridge, Androidapi.JNI.JavaTypes, Androidapi.JNI.Net, Androidapi.JNI.App, Androidapi.JNI.Location, Alcinoe.AndroidApi.Common; type {****************} JTask = i...
{ Mystix Copyright (C) 2005 Piotr Jura 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 2 of the License, or (at your option) any later version. This program is distributed i...
// ************************************************************************ // // The types declared in this file were generated from data read from the // WSDL File described below: // WSDL : http://10.0.0.7/WSRegistration/RegistrationService.asmx?wsdl // Encoding : utf-8 // Version : 1.0 // (4/18/2007 9:16:56 AM...
unit UCell; { ClickForms Application } { Bradford Technologies, Inc. } { All Rights Reserved } { Source Code Copyrighted © 1998-2011 by Bradford Technologies, Inc. } {$WARN SYMBOL_PLATFORM OFF} {$WARN UNIT_PLATFORM OFF} interface uses {$IFDEF LOG_CELL_MAPPING} XLSRea...
unit Contas_Receber_00; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, Mask, ExtCtrls; type TContasReceber00 = class(TForm) Panel1: TPanel; Label1: TLabel; Label4: TLabel; Data_Inicial: TMaskEdit; Data_Fina...
{ ******************************************************************************* Copyright 2015 Daniele Spinetti 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/lic...
{*******************************************************} { } { X-library v.03.00 } { } { 15.04.98 } { ...
{$MODESWITCH RESULT+} {$GOTO ON} (************************************************************************* Copyright (c) 1992-2007 The University of Tennessee. All rights reserved. Contributors: * Sergey Bochkanov (ALGLIB project). Translation from FORTRAN to pseudocode. See subroutines comments ...
unit SimThyrResources; { SimThyr Project } { A numerical simulator of thyrotropic feedback control } { Version 4.0.0 (Merlion) } { (c) J. W. Dietrich, 1994 - 2016 } { (c) Ludwig Maximilian University of Munich 1995 - 2002 } { (c) Ruhr University of Bochum 2005 - 2016 } { This unit provides URLs and global strings f...
unit uHTMLWriter; {$REGION 'License'} { ***** 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 ...
unit UMainForm; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, XPMan, ComCtrls, ExtCtrls; type TMainForm = class(TForm) Edit1: TEdit; XPManifest1: TXPManifest; ListView1: TListView; Timer1: TTimer; procedure Edit1Change(Sender: T...
{ *************************************************************************** Copyright (c) 2016-2019 Kike Pérez Unit : Quick.ORM.Security.GUI Description : Rest ORM Security GUI User/Services Author : Kike Pérez Version : 1.4 Created : 23/07/2017 Modified : 08/05/2019 This fil...
unit uDatchik; interface uses Classes, SysUtils, DateUtils, StdCtrls, Dialogs, ADODB, Vcl.Graphics; type TDatchik = class(TThread) private { Private declarations } fID_object :integer; fID_datchik :integer; fPokazanie:real; fStatus: integer; fMAX: real; fMIN: real; ...
unit BtnLookCfgDLG; // %BtnLookCfgDLG : 设置按键的外观的界面 (***** Code Written By Huang YanLai *****) interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, Spin, ExtCtrls, CompGroup, ImgList, CoolCtrls, ComWriUtils; type TdlgCfgBtnLook = class(TForm) Bev...
unit LocalEntregaNotaFiscal; interface uses Classes; type TLocalEntregaNotaFiscal = class private FAposAtualizarLocalEntrega :TNotifyEvent; FCodigoMunicipio :Integer; FNomeMunicipio :String; FBairro :String; FCnpjCpf :String; ...
unit PostgresDatabaseMessagingServiceTestFormUnit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ZConnection, QueryExecutor, QueryDataReader, MessagingServiceUnit, ZQueryExecutor, PostgresDatabaseMessagingService, AbstractDatabaseMessagingService, S...
(*----------------------------------------------------------*) (* Übung 3 ; Beispiel 3 Maximum *) (* Entwickler: Neuhold Michael *) (* Datum: 24.10.2018 *) (* Lösungsidee: Einlesen von 3 Zahlen; Menü zur auswahl *) (* ...
unit MainWindow; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, pngextra, StdCtrls, pngimage, ComCtrls, Grids, DBGrids, DB, ADODB; type TMain = class(TForm) MainPageControl: TPageControl; Account: TTabSheet; Panel1: TPanel...
unit uDataModule; interface uses SysUtils, Classes, DB, ADODB, Controls, PngImageList, Strutils, Forms, Windows, ImgList, Dialogs; type TBancoAttributes = class; TBanco_dm = class(TDataModule) img_List: TPngImageList; Conexao_banco_aco: TADOConnection; pro...
unit Expo; interface uses FrogObj, Vanilla, Strategy, Func1D, FrogTrace, NLO, SignalField; type TExpoStrategy = class(TVanillaBasedStrategy) private mExpo: double; protected procedure Replace(pEsig: TSignalField; pFrogI: TFrogTrace); override; public procedure Reset; override; procedur...
unit Redis.NetLib.INDY; interface uses Redis.Client, IdTCPClient, Redis.NetLib.Factory, Redis.Command, Redis.Commons; type TRedisTCPLibINDY = class(TRedisNetLibAdapter, IRedisNetLibAdapter) private FTCPClient: TIdTCPClient; public constructor Create; override; destructor Destroy; override; { ...
unit grbl_com; // Sende- und Empfangsroutinen for GRBLize und GRBL-Jogger interface //uses SysUtils, FTDIdll, FTDIchip, FTDItypes; uses SysUtils, StrUtils, Windows, Classes, Forms, Controls, Menus, Dialogs, StdCtrls, FTDIdll, FTDIchip, FTDItypes, import_files, Clipper; type TFileBuffer = Array of byte;...
unit ADOThread; interface uses Classes,StdCtrls,ADODB,uIRockPress; type TADOThread = class(TThread) private { Private declarations } FMemo:TMemo; FEdit:TEdit; ConnString:WideString; FSQLString:string; FObjusers: TIRockPress; elapsedtime:string; fcount:integer; proce...
{***************************************************************************} { } { DUnitX } { } { ...
unit UFormEditPressData; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.ComCtrls,Vcl.StdCtrls , UMainDataModule,uDrawGraphClass, Vcl.Buttons, Vcl.CheckLst ,System.TypInfo, VclTee.TeeGDIPlus...
unit Builder.Interfaces.IGPS; interface type IGPS = Interface ['{269FBA72-4060-4542-BBF8-5003A8C8A29F}'] function GetModel: string; End; implementation end.