text
stringlengths
14
6.51M
unit uRDMCatalog; {$WARN SYMBOL_PLATFORM OFF} interface uses Windows, Messages, SysUtils, Classes, ComServ, ComObj, VCLCom, DataBkr, DBClient, MRAppServer_TLB, StdVcl, ADODB, DB, Provider, uDMCalcPrice; type TRDMCatalog = class(TRemoteDataModule, IRDMCatalog) dspSearchProduct: TDataSetProvider; qrySea...
namespace SnapTileSample; interface uses System, System.Collections.Generic, System.Linq, System.Text, Windows.UI.Xaml.Media, System, Windows.UI.Xaml.Data, Windows.UI.Xaml.Media, Windows.UI.Xaml.Media.Imaging; type Item = public class(System.ComponentModel.INotifyPropertyChanged) ...
program HowToCreateProgressBar; uses SwinGame, sgTypes; procedure Main(); var partRect: Rectangle; fullBar: Bitmap; width: LongInt; size: rectangle; begin OpenGraphicsWindow('Progress Bar', 400, 400); LoadBitmapNamed('empty', 'progress_empty.png'); fullBar := LoadBitmapNamed('full...
unit DSA.Hash.HashTable; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Generics.Collections, Rtti, DSA.Interfaces.DataStructure, DSA.Tree.AVLTreeMap, DSA.Tree.BSTMap, DSA.Tree.RBTree, DSA.Utils; type { THashTable } generic THashTable<K, V, TKeyCmp> = class private type TTr...
unit IdResourceStringsOpenSSL; interface resourcestring {IdOpenSSL} RSOSSFailedToLoad = 'Fehler beim Laden von %s.'; RSOSSLModeNotSet = 'Der Modus wurde nicht gesetzt.'; RSOSSLCouldNotLoadSSLLibrary = 'SSL.-Bibliothek konnte nicht geladen werden.'; RSOSSLStatusString = 'SSL-Status: "%s"'; RSOSSLConnectio...
unit UserScript; // globally scoped variables var formlistCount: Integer; kFormlist: IInterface; lsForms, lsItems: TStringList; function Initialize: Integer; begin // create string lists lsForms := TStringList.Create; lsItems := TStringList.Create; // initialize selected FLST record count form...
unit HS4D.Send; interface uses RESTRequest4D, HS4D.Interfaces, System.Classes, Vcl.ExtCtrls; type THS4DSend = class(TInterfacedObject, iHS4DSend) private FParent : iHS4D; FFileName : String; FContentType : String; FFileStream : TBytesStream; FEndPoint : string; FCont...
unit uMain; interface uses System.JSON,System.Generics.Collections, FMX.Ani, System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Controls.Presentation, FMX.ScrollBox, FMX.Memo, FMX.StdCtrls, FMX.Objects, FMX.TabCo...
unit InstituitionsModel; interface uses connection, Ragna, System.JSON, FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Error, FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def, FireDAC.Stan.Pool, FireDAC.Stan.Async, FireDAC.Phys, FireDAC.ConsoleUI.Wait, Data.DB, FireDAC.Comp.Client, FireDAC.Phys.PG, FireD...
program DXVA_VideoProc; // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. // Copyright (c) Microsoft Corporation. All rights reserved. (*+...
{Необходимо записать данные обо всех подписчиках некоторого почтового отделения в файл. Формат сведений: индекс издания, газета(журнал), фамилия, адрес подписчика, количество экземпляровкаждого из изданий. Все сведения заносятся в список. Разработать хеш-таблицу для обработки сведений о подписчиках, ключом для формиров...
unit Demo.PieChart_3D; interface uses System.Classes, Demo.BaseFrame, cfs.GCharts; type TDemo_PieChart_3D = class(TDemoBaseFrame) public procedure GenerateChart; override; end; implementation procedure TDemo_PieChart_3D.GenerateChart; var Chart: IcfsGChartProducer; //Defined as TInterfacedObject. No ...
unit OrcamentoItens.Model; interface uses OrcamentoItens.Model.Interf, TESTORCAMENTOITENS.Entidade.Model, ormbr.container.objectset.interfaces, ormbr.Factory.interfaces; type TOrcamentoItensModel = class(TInterfacedObject, IOrcamentoItensModel) private FConexao: IDBConnection; FEntidade: TTESTORCAMENTO...
//--------------------------------------------------------------------------- // This software is Copyright (c) 2015 Embarcadero Technologies, Inc. // You may only use this software if you are an authorized licensee // of an Embarcadero developer tools product. // This software is considered a Redistributable as ...
unit uRabbitVCS; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Menus, Graphics, uPixMapManager; const RabbitVCSAddress = 'org.google.code.rabbitvcs.RabbitVCS.Checker'; RabbitVCSObject = '/org/google/code/rabbitvcs/StatusChecker'; RabbitVCSInterface = 'org.google.code.rabbitvcs.StatusChecker'; ...
unit Pdma160; interface uses winTypes,winProcs, Messages, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, util1,dtf0,Dgraphic,stmDef, DirectD0,PDMA1632, debug0; { La carte PDMA16 permet l'acquisition de 16 entrées logiques en mode DMA. Le buffer DMA est alloué par le programme PDMA-w...
{ *************************************************************************** Copyright (c) 2016-2020 Kike Pérez Unit : Quick.Logger.Provider.Files Description : Log Console Provider Author : Kike Pérez Version : 1.30 Created : 12/10/2017 Modified : 24/04/2020 This file is par...
unit DModDanceAnimMain; interface uses System.SysUtils, System.Classes, System.ImageList, FMX.ImgList, FMX.Types, FMX.Dialogs, System.IniFiles, XSIDTypes, XSIDFiles; type TDanceAnimConfig = class(TObject) private FSonglenFile: string; FDefaultLen: TTime; procedure SetDefaultLen(const AValue: TTime); pub...
// // Generated by JavaToPas v1.5 20140918 - 132127 //////////////////////////////////////////////////////////////////////////////// unit java.util.concurrent.RejectedExecutionHandler; interface uses AndroidAPI.JNIBridge, Androidapi.JNI.JavaTypes, java.util.concurrent.TimeUnit, java.util.concurrent.BlockingQu...
Function IsWhitespace(chr : Char) : Boolean; Begin // #9 = \t (tab) // #13 = \r (carriage return) IsWhitespace := (chr = ' ') Or (chr = sLineBreak) Or (chr = ''#9'') Or (chr = ''#13''); End; Function IsNumberLike(chr : Char) : Boolean; Begin IsNumberLike := (chr = '0') Or (chr = '1') Or (ch...
unit Objekt.DHLUpdateShipmentorderResponse; interface uses System.SysUtils, System.Classes, Objekt.DHLVersionResponse, Objekt.DHLStatusinformation, Objekt.DHLLabelData; type TDHLUpdateShipmentorderResponse = class private fVersion: TDHLVersionResponse; fStatus: TDHLStatusinformation; fLabelData: ...
{ Ingresar en un arreglo N números enteros, generar dos arreglos VPos y VNeg que contendrán los números positivos y negativos respectivamente. Mostrar el más numeroso, ambos si la cantidad de elementos coinciden} Program eje3; Type TV = array[1..100] of integer; Procedure LeeVector(Var Vec:TV; Var N:byte); Var Num:...
unit MyJSONObjectHelper; interface uses System.JSON; type TMyJSONObjectFunctions = class public class function AsLowerCasePath( const aJSONObject: TJSONObject ): TJSONObject; overload; class function AsLowerCasePath( const aJSONArray: TJSONArray ): TJSONArray; overload; class function AsUpperCasePath(...
unit UntMain; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.ListView.Types, FMX.ListView.Appearances, FMX.ListView.Adapters.Base, FMX.Ani, FMX.ListView, FMX.Objects, FMX.Controls.Presentation,...
unit LazyShakerForm; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, System.Sensors, {$IFDEF VER270} System.Sensors.Components, {$ELSE} FMX.Sensors, {$ENDIF} FMX.Layouts, FMX.Memo, FMX.Media...
unit uWMISUserRight; {$WARN SYMBOL_PLATFORM OFF} interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ComServ, ComObj, VCLCom, StdVcl, bdemts, DataBkr, DBClient, MtsRdm, Mtx, WMISUserRightPJT_TLB, DB, ADODB,Provider,XMLIntf, XMLDoc,StrUtils; type TWMISUserRight = class(TM...
{******************************************************************************* * uActionControl * * * * Библиотека компонентов для работы с формой редактирования (qFControls) ...
unit TextToolUnit; interface uses System.SysUtils, System.UITypes, System.Classes, System.Math, Winapi.Windows, Vcl.Graphics, Vcl.StdCtrls, Vcl.Controls, Vcl.Forms, Vcl.ExtCtrls, Vcl.Buttons, Vcl.Dialogs, Vcl.Samples.Spin, Effects, CustomSelectTool, Dmitry.Graphic...
unit CFSafeEdit; interface uses Windows, Classes, Controls, CFControl, Graphics, Messages; type TScrollAlign = (csaLeft, csaRight); TCFSafeEdit = class(TCFCustomControl) private FTopPadding, // 上偏移多少开始显示文本 FLeftPadding, // 左偏移多少开始显示文本 FRightPadding, // 右偏移多少停止显示文本 FMax...
PROGRAM Kleines; USES OWindows,OTypes,ODialogs; {$I KLEINES.I} TYPE TMyApplication = OBJECT(TApplication) PROCEDURE InitInstance; VIRTUAL; PROCEDURE InitMainWindow; VIRTUAL; END; PMyDialog = ^TMyDialog; TMyDialog = OBJECT(TDialog) FUNCTION Ok : BOOLEAN; VIRTUAL; ...
unit euroconv; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls; type { TFConv } TFConv = class(TForm) BtnConv: TButton; BtnRAZ: TButton; BtnQuit: TButton; EdEuro: TEdit; EdDollar: TEdit; LbEuro: TLabel; LbDo...
// MMArchPath unit and MMArchSimple class // Part of mmarch // Command line tool to handle Heroes 3 and Might and Magic 6, 7, 8 // resource archive files (e.g. lod files). Based on GrayFace's MMArchive. // By Tom CHEN <tomchen.org@gmail.com> (tomchen.org) // MIT License // https://github.com/might-and-magic/mmarch u...
unit UDTables; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, UCrpe32; type TCrpeTablesDlg = class(TForm) btnOk: TButton; btnClear: TButton; pnlTables: TPanel; lblNumber: TLabel; lblName: TLabel; lblPath: TLabel; lblPassw...
unit MetaF1; {$mode objfpc}{$H+} interface uses Windows, Classes, SysUtils, Graphics; type TmetaFile = class; TMetafileCanvas = class(TCanvas) private FMetafile: TMetafile; public constructor Create(AMetafile: TMetafile; ReferenceDevice: HDC); constructor CreateWithComment(AMetafile: TMetafil...
unit UTreeNode; interface uses ComCtrls; Type TIndex = 'a'..'z'; PtrTrieTree = ^TNode; TNode = class private Ptrs: array [TIndex] of TNode; eow: boolean; public Constructor Create; procedure PushString (s: string; i:byte); procedure PrintString (s:string); procedure resStr...
unit uSteps; interface uses Classes, uMemory, Controls, uInstallFrame; type TInstallStep = class(TObject) end; TInstallSteps = class(TObject) private FStepTypes: TList; FX, FY: Integer; FOwner: TWinControl; FSteps: TList; FOnChange: TNotifyEvent; FCur...
unit URepositorioPais; interface uses UPais , UEntidade , URepositorioDB , SqlExpr ; type TRepositorioPais = class (TRepositorioDB<TPAIS>) public constructor Create; procedure AtribuiDBParaEntidade(const coPais: TPAIS); override; procedure AtribuiEntidadeParaDB(const coPais: TPAIS; ...
(* 2019-2020 "Tsusai": Printer Installer: Uses windows scripts to deploy multiple printers. *) unit Main; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.CheckLst, Vcl.ComCtrls, Vcl.Ex...
(* CodeInt: HDO, 2004-02-06 ------- Interpreter for MiniPascal byte code. ===================================================================*) UNIT CodeInt; (*$I Chooser.inc*) INTERFACE USES CodeDef; PROCEDURE InterpretCode(ca: CodeArray); IMPLEMENTATION C...
unit uFrmBaseKtypeInput; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, uFrmBaseInput, Menus, cxLookAndFeelPainters, ActnList, cxLabel, cxControls, cxContainer, cxEdit, cxCheckBox, StdCtrls, cxButtons, ExtCtrls, Mask, cxTextEdit, cxMaskEdit, cxButtonEdit, cx...
unit ibSHIndex; interface uses SysUtils, Classes, Controls, Forms, Dialogs, SHDesignIntf, ibSHDesignIntf, ibSHDBObject; type TibBTIndex = class(TibBTDBObject, IibSHIndex) private FIndexTypeID: Integer; FSortingID: Integer; FStatusID: Integer; FIndexType: string; FSorting...
unit UDRunningTotals; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, Buttons, UCrpe32; type TCrpeRunningTotalsDlg = class(TForm) pnlRunningTotals: TPanel; lblNumber: TLabel; lbNumbers: TListBox; editCount: TEdit; lblCount: TLabel...
uses Crt; const N = 4; // количество проектов M = 5; // бюджет (в млн.) type Table = record // Таблица:{ сумма, план:[] } Sum: real; Plan: array[1..N] of real; end; //доходность const Profitability: array[0..M, 1..N] of real = ( (0.00, 0.00, 0.00, 0.00), (0.28, 0.25, 0.15, ...
unit gsf_Date; {----------------------------------------------------------------------------- Date Processor gsf_Date Copyright (c) 1996 Griffin Solutions, Inc. Date 4 Apr 1996 Programmer: Richard F. Griffin tel: (912) ...
unit CFColorCombobox; interface uses Windows, Classes, Graphics, Controls, Messages, CFControl, CFPopupForm, CFPopupFormBase, CFColorPad; type TPadForm = class(TfrmPopupFormBase) private FColorPad: TCFRichColorPad; public constructor Create(AOwner: TComponent); override; destructo...
// ************************************************************************ // ***************************** CEF4Delphi ******************************* // ************************************************************************ // // CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based // browser in D...
//****************************************************************************** // Проект "" // Справочник типов документов // // последние изменения //****************************************************************************** unit uDocumentType_main; interface uses Windows, Messages, SysUtils, Variants, Clas...
unit uDaoMatricula; interface uses uClassMatricula, ADODB,uClassConexao,Classes, DBClient,SysUtils; type TDaoMatricula = class private FQuery : TadoQuery; FConexao : TConexao; public constructor Create(Conexao : TConexao); procedure Incluir( Matricula : TMatricula ); procedure Excluir( M...
uses UConst, UGeneticAlgorithm; function read_txt(filename: string): array of array of real; begin foreach var (i, line) in ReadLines(filename).Numerate(0) do begin SetLength(result, i + 1); result[i] := line.ToReals end; end; function mix_flows(ratio: array of real; fractions: array of array of ...
unit ConverterClassDataClass; interface uses Classes; type TTemperatureFormula = record Name : String; A : Extended; B : Extended; C : Extended; end; TTemperature = class private FValue : Extended; FScale : TTemperatureFormula; protected procedure Assign(const ATemperature: T...
unit uModUnit; interface uses uModApp, uModCompany, System.SysUtils, uModAuthApp, uModTipePerusahaan, uModPropinsi; type TModUnitType = class; TModUnit = class(TModApp) private FAUTAPP: TModAutApp; FCOMPANY: TModCompany; FUNT_NPWP: string; FUNT_NPWP_ADR: string; FUNT_NPWP_NAME: string;...
PROGRAM RLE; USES (* sysutils for StrToInt, IntToStr and FileExists *) Crt, sysutils; (* check if char is a number returns true if number *) FUNCTION IsNumber(c: CHAR): BOOLEAN; BEGIN IF ((Ord(c) >= 48) AND (Ord(c) <= 57)) THEN IsNumber := TRUE ELSE IsNumber := FALSE; END...
unit frmJournalOpening; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls, Vcl.Mask, Vcl.ComCtrls, dbfunc, uKernel; type TfJournalOpening = class(TForm) lvLGNameLastLesson: TList...
unit GLDRepository; interface uses Classes, GL, GLDTypes, GLDConst, GLDClasses, GLDObjects, GLDCamera, GLDMaterial; type TGLDRepository = class(TGLDSysComponent) private FCameras: TGLDUserCameraList; FMaterials: TGLDMaterialList; FObjects: TGLDObjectList; procedure SetCameras(Va...
unit uTestClass; interface type TOnLogEvent = procedure(Sender: TObject; AText: string) of object; type TTestClass = class(TObject) private FOnLog: TOnLogEvent; public Caption: string; constructor Create; destructor Destroy; override; procedure Start; virtual; procedure Log(AText: string)...
unit Call_Frm; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons, Vcl.ExtCtrls, Vcl.ComCtrls, SIPVoipSDK_TLB, Vcl.ImgList; type TFrameCall = class(TFrame) pnlMenu: TPanel; M...
//------------------------------------------------------------------------------ //AddFriendEvent UNIT //------------------------------------------------------------------------------ // What it does- // An event used when add friend. // // Changes ...
unit MeshSmoothMasters; // This is the third type of mesh smooth made for this program made for my Master // Dissertation. It works with manifold meshes where all vertexes must be real // vertexes (and not part of edges or faces). If these conditions are met, the // results are interesting using a single interact...
{* FtermSSH : An SSH implementation in Delphi for FTerm2 by kxn@cic.tsinghua.edu.cn Cryptograpical code from OpenSSL Project *} unit sshsession; interface uses sshkex, sshmac, sshcipher, sshutil, wsocket, sshauth, sshchannel; type TSSHSession = class; TAuthUserPrompt = procedure(Sender: T...
unit MouseRNGDialog_U; // Description: MouseRNG Dialog // By Sarah Dean // Email: sdean12@sdean12.org // WWW: http://www.SDean12.org/ // // ----------------------------------------------------------------------------- // interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,...
unit StaticConfig; interface const INITIAL_HP: array[0..9] of integer = (0, 10, 20, 30, 40, 50, 60, 70, 80, 100); INITIAL_HP_SPEED = 100; MIN_HP_SPEED = 5.0; CH: array [0..10] of char = (' ','.',',',':','&','%','#','$','@','O','G'); FIELD_WIDTH = 0.2; FIELD_HEIGHT = 0.39; { How much should the wind acceleratio...
unit uPerson; interface type { TPerson } TPerson = class private fFirstName: string; fSurname: string; published property FirstName: string read fFirstName write fFirstName; property Surname: string read fSurname write fSurname; end; implementation { TPerson } end...
unit fGrid; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls, StdCtrls, Grids, iStart, rtti_broker_iBroker, rtti_idebinder_Lib, rtti_idebinder_iBindings; type { TGridForm } TGridForm = class(TForm{, IStartContextConnectable}) btnAdd: TButto...
unit MO14MainForm; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Ibase, FIBDatabase, pFIBDatabase, cxStyles, cxCustomData, cxGraphics, cxFilter, cxData, cxDataStorage, cxEdit, DB, cxDBData, cxTextEdit, ComCtrls, ToolWin, ImgList, cxGridLevel, cxGridCustom...
{***************************************************************************** The DEC team (see file NOTICE.txt) licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. A copy of this licence is found in the root director...
unit C64Thread; {$IFDEF FPC} {$MODE DELPHI} {$ENDIF} {$H+} interface uses Classes, SyncObjs, C64Types; type { TC64SystemThread } TC64SystemThread = class(TThread) protected // FLock: TCriticalSection; FRunSignal: TSimpleEvent; FPausedSignal: TSimpleEvent; FWasPaused: Boolean; FCycPSec: Cardinal; F...
////////////////////////////////////////////////////////////////////////// // This file is a part of NotLimited.Framework.Wpf NuGet package. // You are strongly discouraged from fiddling with it. // If you do, all hell will break loose and living will envy the dead. /////////////////////////////////////////////////////...
// Copyright (c) 2009, ConTEXT Project Ltd // 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 condition...
unit UDMapCondField; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, UCrpe32; type TCrpeMapConditionFieldsDlg = class(TForm) pnlMapConditionFields: TPanel; lblNumber: TLabel; lblCount: TLabel; lbNumbers: TListBox; editCount: TEdit...
unit messagesWindow; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls; type { TmsgForm } TmsgForm = class(TForm) msgMemo: TMemo; procedure FormCreate(Sender: TObject); private { private declarations } public { public declaration...
unit Objekt.SepaBSHeaderList; interface uses SysUtils, Classes, Objekt.SepaBSHeader, contnrs; type TSepaBSHeaderList = class private fList: TObjectList; fMsgId: string; fNm: string; fCreDtTM: string; fCtrlSum: real; fNbOfTxs: Integer; function GetCount: Integer; function getSepa...
{ Memory Stream based on already mapped PE image in current process. Basically it's TMemoryStream with Memory pointing to ImageBase and Size equal to SizeOfImage. } unit PE.MemoryStream; interface uses Classes, SysUtils; type TPECustomMemoryStream = class(TStream) protected FMemory:...
{----------------------------------------------------------------------------- Unit Name: cRefactoring Author: Kiriakos Vlahos Date: 03-Jul-2005 Purpose: Refactoring support History: -----------------------------------------------------------------------------} unit cRefactoring; interface uses SysU...
unit uSQLObj; interface type TSQL = Class private public end; TSQLConnection = Class(TSQL) private fPW : String; fUserName : String; fDBAlias : String; fServer : String; fWinLogin : Boolean; fStatus : String; fTime : String; ...
unit uNewBarangHargaJual; interface uses SysUtils, Classes, uTSBaseClass, uNewUnit, uNewBarang, uNewUOM; type TBarangHargaJual = class(TSBaseClass) private FAlokasiDanaSupplierID: Integer; FDATE_CREATE: TDateTime; FDATE_MODIFY: TDateTime; FDiscNominal: Double; FDiscPersen: Double; FID: ...
{------------------------------------------------------------------------------- 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/. --------------------------------------...
unit NormalizeTest; interface uses DUnitX.TestFramework, uIntX; type [TestFixture] TNormalizeTest = class(TObject) public [Test] procedure Zero(); [Test] procedure Simple(); end; implementation [Test] procedure TNormalizeTest.Zero(); var int1: TIntX; begin ...
unit fre_base_client; { (§LIC) (c) Autor,Copyright Dipl.Ing.- Helmut Hartl, Dipl.Ing.- Franz Schober, Dipl.Ing.- Christian Koch FirmOS Business Solutions GmbH www.openfirmos.org New Style BSD Licence (OSI) Copyright (c) 2001-2013, FirmOS Business Solutions GmbH All rights reserved. Re...
{ Purpose: To generate "loose mods" for object modification records Games: Fallout 4 Author: fireundubh <fireundubh@gmail.com> INSTRUCTIONS: 1. Ensure that sEditorPrefix is desired. 2. Select one or many OMOD records, and apply the script. 3. Select the file where the new MISC records should be saved....
unit ErrorConstants; interface const //---------------------------------------------------------------------- // For add items //---------------------------------------------------------------------- ADDITEM_FAIL = 1; ADDITEM_OVERWEIGHT = 2; ADDITEM_TOOMUCH = 4; ADDITEM_TOOMUCHSTACKING = 5; i...
unit GuiaAlvo.Model.Contrato; interface uses GuiaAlvo.Model.Comercio; type // TTipoContrato = (tcBasico, tcPlus, tcFotosI, tcFotosII, tcAnuncioI, tcAnuncioII, tcFull); TContrato = class private FFVISIVELPESQUISAS: BOOLEAN; FFANUNCIOSECAO: BOOLEAN; FFQTDEFOTOS: INTEGER; F...
unit MovimentoService; interface uses BasicService, Datasnap.DBClient, System.Generics.Collections, TurnoVO, System.SysUtils, OperadorVO, MovimentoVO, SuprimentoVO, SangriaVO, MovimentoFechamentoVO, TipoImpressaoVO, ImprimirVO, ViewImprimirVO, ViewVendaVO, System.Math, Nfc01VO, Nfc02VO, TerminalVO, PessoaVO, ...
unit CDAPrincipal; interface uses SysUtils, Classes, DB, DBTables; type TDAPrincipal = class(TDataModule) DBPrincipal: TDatabase; QKilosAprovechados: TQuery; QKilosSalida: TQuery; QKilosTerceros: TQuery; procedure DataModuleCreate(Sender: TObject); procedure DataModuleDestroy(Sender: TObj...
unit uFormPrincipal; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, jpeg, uLogin, uMenu, uManutencao, DB, DBClient, uSaque, uRelatorioSaque; type TFrmPrincipal = class(TForm) ImgLogo: TImage; PnlCentro: TPanel; CdsAgencias: T...
{******************************************************************************} {* fs_imvxrtti.pas *} {* This module is part of Internal Project but is released under *} {* the MIT License: http://www.opensource.org/licenses/mit-license.php ...
// ################################## // ###### IT PAT 2018 ####### // ###### GrowCery ####### // ###### Tiaan van der Riel ####### // ################################## unit frmPointOfSale_u; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, ...
unit Demo.AnnotationChart.Sample; interface uses System.Classes, System.SysUtils, System.Variants, Demo.BaseFrame, cfs.GCharts; type TDemo_AnnotationChart_Sample = class(TDemoBaseFrame) public procedure GenerateChart; override; end; implementation procedure TDemo_AnnotationChart_Sample.GenerateChart; v...
unit QuestionsInterview; interface uses System.SysUtils; type TSampleInterview = class public class function IsOdd( const ANumber: Integer ): Boolean; class function IsPowerTwo(const ANumber: Integer): Boolean; static; end; implementation { TSampleInterview } class function TSampleInterview.IsOdd(...
//*******************************************************// // // // DelphiFlash.com // // Copyright (c) 2004-2007 FeatherySoft, Inc. // // info@delphiflash.com // // ...
unit UDSectionFormat; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ExtCtrls, UCrpe32; type TCrpeSectionFormatDlg = class(TForm) pnlSectionFormat: TPanel; lblSection: TLabel; cbPrintAtBottomOfPage: TCheckBox; cbNewPageBefore: TCheckB...
unit fruFilter; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, cxContainer, cxEdit, dxSkinsCore, dxSkinOffice2013White, cxLabel, Vcl.ExtCtrls, V...
unit PropertyBar; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, LMDCustomComboBox, LMDFontComboBox; type TPropertyBarForm = class(TForm) LMDFontComboBox1: TLMDFontComboBox; procedure FormCreate(Sender: TObject); procedure LMDFont...
unit GLDConst; interface uses GL, GLDTypes; const GLD_KEY_DELETE = $2E; GLD_CHAR_MINUS = '-'; GLD_NUM_CHARSET: set of Char = ['0'..'9']; GLD_INT_CHARSET: set of Char = ['0'..'9', '-']; GLD_FLOAT_CHARSET: set of Char = ['0'..'9', '-', ',']; GLD_CLOSEMODE_OK = 0; GLD_C...
unit Unit2; interface type TPessoa = class(TObject) private FCodigo: integer; FNome: String; procedure SetCodigo(const Value: integer); procedure SetNome(const Value: String); public published /// <summary> /// <example>Exemplo de atribuição de valor a propriedade Código /// ...
unit uAddManExitDekret; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, uFControl, uLabeledFControl, uSpravControl, uInvisControl, uLogicCheck, uSimpleCheck, uFormControl, uEnumControl, uCharControl, uFloatControl, uDateControl, StdCtrls, Buttons, pFI...
{* FtermSSH : An SSH implementation in Delphi for FTerm2 by kxn@cic.tsinghua.edu.cn Cryptograpical code from OpenSSL Project *} unit sshdes; interface uses sshcipher; type DES_KEY = record cblock: array[0..191] of char; end; TSSHDES = class(TSSHCipher) protected function G...
namespace proholz.xsdparser; interface type AttributesVisitor = public abstract class(XsdAnnotatedElementsVisitor) private // * // * The list of {@link XsdAttributeGroup} instances received by this visitor, wrapped in a {@link ReferenceBase} object. // // var attributeGroups: List<ReferenceBase> := new...
{ NAME: Jordan Millett CLASS: Comp Sci 1 DATE: 11/4/2016 PURPOSE: An try at making a rpg. } Program rpg; uses crt; Procedure getInt(var ask:string; num : integer); var numStr : string; code : integer; begin repeat write(ask); readln(numstr); val(numStr, num, code); if code <>...
{***************************************************************************} { } { Delphi Package Manager - DPM } { } { ...
unit Auxo.Storage.Core; interface uses Auxo.Storage.Interfaces, System.Generics.Collections, System.Rtti, System.SysUtils; type TStorage = class; Prop<T> = record private FValue: T; MemberName: string; Storage: TStorage; function GetValue: T; procedure SetValue(const AValue: T); public...