text
stringlengths
14
6.51M
program binarytree; TYPE TreeNodePtr = ^TreeNode; VisitProcPtr = Procedure(node: TreeNodePtr); TreeNode = RECORD parent : TreeNodePtr; left: TreeNodePtr; right: TreeNodePtr; ID: integer; visit: VisitProcPtr; END; PROCEDURE Visit(node: TreeNodePtr); BEGIN writeln(node^.ID); END; (* Add Element to th...
unit stretchf; interface uses Windows, SysUtils, Vcl.Graphics; type TRGBColor = record B: Byte; G: Byte; R: Byte; end; TRGBColorArray = array[0..400000] of TRGBColor; PRGBColorArray = ^TRGBColorArray; TIntArray = array[0..400000] of Integer; PIntArray = ^TIntArray; TInt4Ar...
unit FAskForLabel; (*==================================================================== Dialog for disk name, under which the disk will be put into the database. ======================================================================*) interface uses SysUtils, {$ifdef mswindows} Windows, {$ELSE} ...
//--------------------------------------------------------------------------- // This software is Copyright (c) 2011 Embarcadero Technologies, Inc. // You may only use this software if you are an authorized licensee // of Delphi, C++Builder or RAD Studio (Embarcadero Products). // This software is considered a Redis...
{ * * Copyright (C) 2014-2015 ozok <ozok26@gmail.com> * * This file is part of InstagramSaver. * * InstagramSaver 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, ...
unit dt_address_FORM_ADD; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Mask, Variants, cxControls, cxContainer, cxEdit, cxTextEdit, cxMaskEdit, cxButtonEdit, cxLookAndFeelPainters, cxButtons, GlobalSPR, ExtCtrls; type TFdt_address_form_add = class(TForm...
unit uNewBeginningBalance; interface uses SysUtils, Windows, Messages, Classes, Graphics, Controls, Forms, Dialogs, StrUtils, uNewUnit, uTSBaseClass, uConstanta, uNewPOS, uNewShift; type TBeginningBalance = class(TSBaseClass) private FDATE_CREATE: TDateTime; FDATE_MODIFY: TDateTime; FDescription:...
unit gr_AcctCard_MainForm; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, cxLookAndFeelPainters, ExtCtrls, cxMaskEdit, cxDropDownEdit, cxCalendar, cxTextEdit, cxButtonEdit, cxContainer, cxEdit, cxLabel, cxControls, cxGroupBox, StdCtrls, cxButtons, PackageL...
{==============================================================================| | Project : Ararat Synapse | 007.006.001 | |==============================================================================| | Content: Serial port support ...
PROGRAM READER (INPUT, OUTPUT); VAR SYMBOL:CHAR; BEGIN WRITE('"'); REPEAT READ(SYMBOL); WRITE(SYMBOL) UNTIL (SYMBOL='.') OR (SYMBOL='?') OR (SYMBOL='!'); WRITE('"'); END.
unit MetNum; interface uses Math,readf0nd; const {Скорость вращения Земли (рад/с)} EARTH_ROT_SPEED = 2*PI/86400; {Радиус земли в км} EARTH_RAD = 6371; {Стандартная эпоха (юлианские дни)} STANDRD_ERA = 2451545.0; {Маленькое число, для точности численных методов} EPS = 10E-12; ...
unit Form.SendMail; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Objekt.SendMail; type Tfrm_Sendmail = class(TForm) GroupBox1: TGroupBox; Label1: TLabel; Label2: TLabel; edt_Me...
unit SampleAdapter1; interface uses Data.Bind.ObjectScope, System.Classes, Generics.Collections, System.SysUtils; type TContact = class private FFirstName: string; FLastName: string; FAddress1: string; FAddress2: string; FState: string; FZip: string; FID: uint32; p...
//*******************************************************// // // // DelphiFlash.com // // Copyright (c) 2004-2007 FeatherySoft, Inc. // // info@delphiflash.com // // ...
unit uDBThread; interface uses Winapi.Windows, System.Classes, System.SysUtils, System.SyncObjs, Vcl.Forms, Dmitry.Utils.System, {$IFNDEF EXTERNAL} uTranslate, uAssociations, uPortableDeviceManager, {$ENDIF} uGOM, uDBForm, uIME, uTime, uDBCustomThread; type ...
unit fi_common; interface type TFontInfo = record family, style, fullName, psName, version, copyright, uniqueId, trademark, manufacturer, designer, description, vendorUrl, designerUrl, license, licenseUrl, format: String; variationAxisTags: array o...
//--------------------------------------------------------------------------- // Copyright 2014 The Open Source Electronic Health Record Alliance // // 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 Lice...
unit uSign; interface uses JsonDataObjects, Ils.Json.Names, Ils.Json.Utils, Geo.Hash.Search, System.SysUtils, System.Generics.Collections, System.Classes, Ils.Logger, UFiles, System.IniFiles, uZC, AStar64.Files, AStar64.Areas, AStar64.Extra, Geo.Hash, AStar64.FileStructs, System.Types, uGeneral; const CSi...
unit uPlot_ResultWriter; { ***************************************************************************** * This file is part of Multiple Acronym Math and Audio Plot - MAAPlot * * * * See the file COPYING. ...
unit pBTGridToExcel; interface uses Windows, SysUtils, Variants, Classes, ComObj,Graphics,DB,Dialogs,DBGridEh; type TCallBackGridToExcelProc= procedure (Row:integer; var Stop:boolean) of object; function GridToExcel(Grid:TDBGridEh;MsExcel,Sheet:Variant; const BegRow,BegCol:integer;CreateTitle:...
unit UnitEditor; // ------------------------------------------------------------------------------ // // SVG Control Package 2.0 // Copyright (c) 2015 Bruno Verhue // // ------------------------------------------------------------------------------ // This editor is not ...
library ganesaIPEx; {$mode objfpc}{$H+} uses Classes, SysUtils, fphttpclient, RegexPr; function GetExternalIPAddress: string; var HTTPClient: TFPHTTPClient; IPRegex: TRegExpr; RawData: string; begin try HTTPClient := TFPHTTPClient.Create(nil); IPRegex := TRegExpr.Create; try //returns som...
// // Generated by JavaToPas v1.5 20150830 - 104045 //////////////////////////////////////////////////////////////////////////////// unit android.test.MoreAsserts; interface uses AndroidAPI.JNIBridge, Androidapi.JNI.JavaTypes, java.util.regex.MatchResult; type JMoreAsserts = interface; JMoreAssertsClass =...
unit IntegerSquareRootTest; interface uses DUnitX.TestFramework, uIntXLibTypes, uIntX; type [TestFixture] TIntegerSquareRootTest = class(TObject) public [Test] procedure SquareRootOfZero(); [Test] procedure SquareRootOfOne(); [Test] procedure SquareRootof4(); ...
unit E_FileVersionUtils; interface uses Windows, System.SysUtils; type TVersionInfo = record Major, Minor, Release, Build: Integer; FileVersion, ProductVersion: string; ProductName: string; end; function GetApplicationVersion: string; function GetFileTextVersion(const aExeFileName: TFileName):...
unit uModContrabonSales; interface uses SysUtils, Windows, Messages, Classes, Graphics, Controls, Forms, Dialogs, uModApp, uModRekening, uModOrganization, uModUnit; type TModContrabonSales = class(TModApp) private FCONT_IS_CONTRABON: Integer; FCONT_NET_SALES: Double; FCONT_DATE_SALES: TDatetime; ...
unit cmdcvrt; (*##*) (*************************************************************************** * * * c m d c v r t * * ...
unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls; const ENGLISH_ALPHABET_SHIFT = 65; RUSSIAN_ALPHABET_SHIFT = 128; type TLanguageForm = class(TForm) EnglishBtn: TRadioButton;...
unit frmOTDReason; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ComCtrls, Buttons, ExtCtrls, StdCtrls; type TOTDReasonForm = class(TForm) Panel1: TPanel; Panel2: TPanel; sbAdd: TSpeedButton; sbEdit: TSpeedButton; sbDelete: TSpeedButton; ...
unit abBackupWizard; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, abWizardTemplate, ComCtrls, StdCtrls, ExtCtrls, CommCtrl, ImgList, nsGlobals, nsTypes, ShellAPI, ActnList, Menus, nsProcessFrm, Vcl.PlatformDefaultStyleActnCtrls, Vcl.ActnPopup; t...
(*----------------------------------------------------------------------------* * Direct3D sample from DirectX 9.0 SDK December 2006 * * Delphi adaptation by Alexey Barkovoy (e-mail: directx@clootie.ru) * * * ...
unit RobotUnit; // verzia 030910 {$mode objfpc}{$H+} interface uses Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls; type TRobot = class private FX, FY, FH: Real; FDown: Boolean; FPC: TColor; FPW: Integer; public Value: Integer; constructor Create; constructor Cr...
unit URecalThread; interface uses Classes, ReCountListUnit, cxContainer, cxProgressBar, ZProc,pFibDataSet, dxStatusBar, Variants, zMessages, Dialogs, cxmemo ; type TRecalcThread = class(TThread) private { Private declarations } FForm:TReCountListForm; FProgressBar:TcxProgressBar; FProgres...
{ Библиотека дополнительных компонентов Регистрация компонента TGridView в Delphi IDE © Роман М. Мочалов, 1997-2001 E-mail: roman@sar.nnov.ru } unit Ex_RegGrid; {$I EX.INC} interface uses Windows, SysUtils, Classes, Forms, Dialogs, TypInfo, {$IFDEF EX_D6_UP} DesignIntf, DesignEditors ...
// Copyright 2014 Asbjørn Heid // // 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 law or ...
{$I CetusOptions.inc} unit ctsBaseClasses; interface uses ctsTypesDef, ctsBaseInterfaces; type TctsBaseClass = TInterfacedObject; TctsNamedClass = class(TctsBaseClass) private FName: TctsNameString; protected function GetName: TctsNameString; procedure SetName(const AValue: TctsNameString);...
/// <summary> 使用Prim算法求图的最小生成树 </summary> unit DSA.Graph.LazyPrimMST; interface uses System.SysUtils, System.Rtti, DSA.Tree.Heap, DSA.Interfaces.DataStructure, DSA.Interfaces.Comparer, DSA.List_Stack_Queue.ArrayList, DSA.Graph.Edge; type TLazyPrimMST<T> = class private type TArr_bool = TArray<...
// ************************************************************************ // ***************************** CEF4Delphi ******************************* // ************************************************************************ // // CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based // browser in D...
{ publish with BSD Licence. Copyright (c) Terry Lao } unit createCB; {$MODE Delphi} interface uses iLBC_define,constants,C2Delphi_header; procedure filteredCBvecs( cbvectors:pareal; { (o) Codebook vectors for the higher section } mem:pareal; { (i) Buffer...
unit ufrmDialogActionList; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ufrmMasterDialog, ufraFooterDialog2Button, ExtCtrls, SUIForm, uActionListCust, StdCtrls, System.Actions, Vcl.ActnList, ufraFooterDialog3Button; type TfrmDialogActionList = class(Tfr...
//****************************************************************************** // Проект "Контракты" // Справочник групп пользователей // Чернявский А.Э. 2005г. // последние изменения Перчак А.Л. 29/10/2008 //****************************************************************************** unit cn_Roles_Unit; interfac...
{ * * Copyright (C) 2014-2015 ozok <ozok26@gmail.com> * * This file is part of InstagramSaver. * * InstagramSaver 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, ...
//This unit is a information class. This class shouldn't be used by itself, //but rather by descending classes such as TZoneServerInfo. This is designed //to store a connected server's information, such as WAN AND LAN IPs and their //cardinal forms, which are used by the client unit ServerInfo; {$IFDEF FPC} {...
{----------------------------------------------------------------------------- Least-Resistance Designer Library The Initial Developer of the Original Code is Scott J. Miles <sjmiles (at) turbophp (dot) com>. Portions created by Scott J. Miles are Copyright (C) 2005 Least-Resistance Software. All Rights...
unit uFrmMemoriaFiscal; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, uPai, siComp, siLangRT, StdCtrls, Buttons, ExtCtrls, Mask, DateBox; type TFrmMemoriaFiscal = class(TFrmPai) GroupNumber: TGroupBox; Label1: TLabel; Label2: TLabel; Edit1:...
unit uSprFilter; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, DB, ADODB, StdCtrls, Grids, DBGrids, StrUtils, ImgList, uSprJoin; type TsprFilterComparisonOperator = type string; TsprFilter = class(TCollectionItem) private FName: string; FGroupNa...
//////////////////////////////////////////////////////////////////////////// // PaxCompiler // Site: http://www.paxcompiler.com // Author: Alexander Baranovsky (paxscript@gmail.com) // ======================================================================== // Copyright (c) Alexander Baranovsky, 2006-2014. All rig...
unit GLD3dsAtmosphere; interface uses Classes, GL, GLDTypes, GLDClasses, GLD3dsTypes, GLD3dsChunk; const GLD3DS_BOTTOM_FALL_OFF = $00000001; GLD3DS_TOP_FALL_OFF = $00000002; GLD3DS_FOG_BACKGROUND = $00100000; type TGLD3dsFog = class; TGLD3dsLayerFog = class; TGLD3dsDistanceCue = cla...
(* NO ERRORS, SHOULD PARSE CORRECTLY *) program p1; VAR I, J : INTEGER; var P,Q : real; var s : string; begin I := 6 * 2 + 4; J := I / 3 - 1; P := 3.5 * 2.0 + 4.0; Q := P / 3.0 - 1.0; S := 'Hello world' end.
unit tesseractocr.leptonica; { The MIT License (MIT) TTesseractOCR4 Copyright (c) 2018 Damian Woroch, http://rime.ddns.net/ 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 restricti...
{ //aangepast door Henkie (BEGIN) dit betekend dat ik een deel van de code aangepast heb tot aan de regel: //aangepast door Henkie (END) //toegevoegd door Henkie (BEGIN) dit betekend dat ik een procedure ofzo bijgevoegd heb tot aan de regel: //toegevoegd door Henkie (END) } unit NLDCalendar; in...
unit UFlow; interface uses UConst, URegularFunctions; type Flow = class mass_fractions: array of real; volume_fractions: array of real; mole_fractions: array of real; mass_flow_rate: real; volume_flow_rate: real; mole_flow_rate: real; temperature: real; cp: real; ...
{ @abstract Implements class that formats filter string for TOpenDialog and TSaveDialog. If you set the whole filter string into one single resource string the format of string is quite complicated. For example. @longCode(# All supported files (*.xml;*.ini)|*.xml;*.ini|XML files (*.xml)|*.xml|Ini files (*.i...
{------------------------------------------------------------------------------- Copyright 2012 Ethea S.r.l. 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.apa...
unit GameObject; {$IFDEF FPC} {$MODE Delphi} {$ENDIF} interface uses Types, ParameterList, Map; type TGameObject = class; TBeingZoneStatus = ( isOffline, isOnline ); {[2007/03/28] CR - No X,Y parameters needed -- reduced and eliminated. } TLoopCall = procedure( const ACurrentObject : TG...
unit uFreeImageImage; interface uses Windows, SysUtils, Graphics, Classes, uMemory, Dmitry.Graphics.Types, uTime, FreeBitmap, FreeImage, uFreeImageIO, CCR.Exif, uBitmapUtils; type TFreeImageImage = class(TBitmap) private procedure LoadFromFreeImage(Image: TFreeBit...
{---------------------------------------------------------------- Nome: UntCanal Descrição: Unit do Form do tipo TFrmCanal. Este form contém várias procedures para manipulação de todos as Janelas-Canais. Métodos: -procedure AdNick(Nick: string); -procedure RmNick(Nick: string); -procedure AdLinha(Texto: strin...
unit uDM; interface uses SysUtils, Classes, DB, ADODB, Registry, Windows, IniFiles, Forms, ufrmServerInfo, Dialogs; const KEY_CUSTOMER_COLUMN = 'ImportCustomerColumn'; MR_INI_FILE = 'MRIntegrator.ini'; ACC_SOFTWARE_MAS90 = 'Mas90_'; ORIGINAL_CUSTOMER_WHERE = 'Path LIKE ''.001%'' AND P.Desativado...
(* Category: SWAG Title: ANYTHING NOT OTHERWISE CLASSIFIED Original name: 0080.PAS Description: English Number Strings Author: GAYLE DAVIS Date: 01-27-94 17:33 *) { Converts REAL number to ENGLISH strings GAYLE DAVIS 1/21/94 Amounts up to and including $19,999,999.99 are supported. If you write ...
{ *********************************************************************** } { } { The Bantung Software Runtime Library } { Bantung - Common Library } { ...
unit Resources; //////////////////////////////////////////////////////////////////////////////// // // Unit : Resources // Author : rllibby // Date : 02.07.2008 // Description : Source code for PE resource enumeration and misc handling // //////////////////////////////////////////////////...
unit utils; {$mode objfpc}{$H+} interface uses windows, SysUtils; type // This type will be used for containing every array of disk hex data TDynamicCharArray = array of Char; type TBOOT_SEQUENCE = packed record _jmpcode : array[1..3] of Byte; cOEMID: array[1..8] of Char; wBytesPerSector: Word; ...
unit frmPKCS11NewSecretKey; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, pkcs11_session, PKCS11Lib, SDUForms; type TfrmPKCS11NewSecretKey = class(TSDUForm) pbCancel: TButton; pbOK: TButton; cbKeyType: TComboBox; ...
unit Unit1; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Label1: TLabel; edSerialNumber: TMemo; edInfo: TMemo; btTry: TButton; btClose: TButton; edHWID: TEdit; Label2: TLabel; procedure btCloseClick...
unit LangString; interface uses SysUtils, INIFiles; { var _FILELANGUAGE_: String = 'English'; (* DIALOG *) _OK_: String = 'Ok'; _YES_: String = 'Yes'; _NO_: String = 'No'; _APPLY_: String = 'Apply'; _CANCEL_: String = 'Cancel'; _ALL_: String = 'All'; _EXIT_: String = 'Exit'; _...
unit uActivation; interface uses System.SysUtils, System.Classes, Winapi.Windows, Winapi.Messages, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls, Vcl.Imaging.jpeg, Vcl.Imaging.pngimage, Dmitry.Controls.Base, Dmitry.Controls.LoadingSign, ...
unit frmSelectVolumeAndOffset; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, Spin64, OTFEFreeOTFE_U, OTFEFreeOTFEBase_U, SDUForms, SDUFrames, SDUSpin64Units, SDUDialogs, fmeVolumeSelect; type TfrmSelectVolumeFileAndOff...
unit UDExportSepVal; interface uses Windows, Forms, StdCtrls, Buttons, Controls, Classes, ExtCtrls, UCrpe32; type TCrpeSepValDlg = class(TForm) pnlSepVal: TPanel; editStringDelimiter: TEdit; editFieldSeparator: TEdit; lblStringDelimiter: TLabel; lblFieldSeparator: TLabel; sb1: TSpeedBut...
{ used code from Bauglir Internet Library as framework to easily upgrade any TCP Socket class to a WebSocket implementation including streaming deflate that can maintain current zlib context and state v0.14, 2021-03-28, set aFinal to false if insufficient data for complete packet v0.13, 2019-06-06, added aFina...
unit RGBAByteDataSet; interface uses ByteDataSet; type TRGBAByteDataSet = class (TByteDataSet) private FLength : integer; // Gets function GetData(_pos: integer): byte; reintroduce; overload; function GetRed(_pos: integer): byte; function GetGreen(_p...
unit CCJSO_SessionUsers; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Grids, DBGrids, ComCtrls, ToolWin, StdCtrls, ExtCtrls, ActnList, DB, ADODB; type TfrmCCJSO_SessionUser = class(TForm) pnlCondition: TPanel; lblCndDatePeriod_with: TLabel; lb...
unit uFrmListPayments; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ComCtrls, ExtCtrls, siComp, uFormasPagamento, StdCtrls, DB, ADODB, PaiDeForms, siLangRT, PaideTodosGeral, Buttons, cxStyles, cxCustomData, cxGraphics, cxFilter, cxData, cxEdit, cxDBData, ...
unit Form.CopyFile; 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.ComCtrls, Objekt.Dateikopieren; type Tfrm_CopyFile = class(TForm) Bevel1: TBevel; lbl_Von: TLabel; ...
unit uEarlyConfig; {$mode objfpc}{$H+} interface uses Classes, SysUtils; var {$IFDEF DARKWIN} gAppMode: Integer = 1; {$ENDIF} gSplashForm: Boolean = True; procedure SaveEarlyConfig; implementation uses DCOSUtils, DCStrUtils, DCClassesUtf8, uSysFolders; var AConfig: String; fu...
{$A+,B-,D+,E+,F-,G-,I-,L+,N+,O-,P-,Q-,R-,S-,T-,V-,X+,Y+} {$M 65384,0,655360} {29þ Compre barato y Compre m s barato Turqu¡a 1999 ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ El anuncio de " compre barato" es la f¢rmula del ‚xito en los supermercados. Pero para se...
unit ufraSellingPrice; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, Math, uRetnoUnit, ActnList, uFormProperty, System.Actions, cxGridCustomTableView, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, cxStyles, cxCustomData, cxFilte...
{******************************************************************************} { } { Delphi OPENSSL Library } { Copyright (c) 2016 Luca Minuti ...
unit uRepMonthFilter; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, uRepParentFilter, cxControls, cxContainer, cxEdit, cxTextEdit, cxMaskEdit, cxDropDownEdit, StdCtrls, siComp; type TRepMonthFilter = class(TRepParentFilter) cbxMonth: TcxComboBox; p...
unit UTanggal; interface uses UUI,UTipe; function getTanggal(Input:string):Tanggal; {Menerima Input string tanggal dalam format dd/mm/yy lalu isi ke bentuk variabel Tanggal} function nextTanggal(Input:Tanggal):Tanggal; {Mengembalikan tipe data Tanggal dari Input yang telah dimajukan 1 hari} function ...
(*----------------------------------------------------------------------------* * Direct3D sample from DirectX 9.0 SDK December 2006 * * Delphi adaptation by Alexey Barkovoy (e-mail: clootie@ixbt.com) * * * ...
// // Generated by JavaToPas v1.5 20160510 - 150202 //////////////////////////////////////////////////////////////////////////////// unit android.view.WindowId; interface uses AndroidAPI.JNIBridge, Androidapi.JNI.JavaTypes, Androidapi.JNI.os; type JWindowId_FocusObserver = interface; // merged JWindowId = ...
unit AST.Classes; interface uses AST.Lexer, AST.Intf, AST.Parser.Utils, AST.Parser.ProcessStatuses, System.SysUtils; type TASTItemTypeID = Integer; TASTTokenId = Integer; TASTItem = class; TASTProject = class; TASTModule = class; TASTDeclaration = class; TASTExpression = class; TA...
unit uNewPosTransaction; interface uses SysUtils, Windows, Messages, Classes, Graphics, Controls, Forms, Dialogs, StrUtils, uNewUnit, uTSBaseClass, uNewBarangHargaJual, uNewBeginningBalance, uNewVoucherLain, uNewPOSTransactionCard, uNewBarangStockSirkulasi, FireDAC.Comp.Client; type TPOSTransactionItem = c...
unit U_ClassConfig; interface Type TConfig = Class Strict Private // Class Var FInstance : TConfig; private FConfirmaGravacao: Boolean; FConfirmaCancelamento: Boolean; procedure SetConfirmaCancelamento(const Value: Boolean); procedure SetConfirmaGravacao(const Value: Boolean); Public CLa...
unit uFaceRecornizerTrainer; interface uses Winapi.Windows, System.Types, System.SysUtils, System.Classes, System.Math, Vcl.Graphics, Dmitry.Utils.System, Dmitry.Utils.Files, Dmitry.Graphics.Types, OpenCV.Utils, GraphicCrypt, uLogger, uMemory, uDBClasses, uDB...
unit uCommonDevice; interface uses SysUtils, uModbus; type TCommonModbusDevice = class protected FModbus: TModBus; FIdent: TModbusIdentification; public constructor Create; destructor Destroy; override; function Open(Port, Speed, Adr: integer): TModbusError; overload; function Open(P...
{================================================================================ Copyright (C) 1997-2002 Mills Enterprise Unit : rmTabs3x Purpose : Rewrite of the original Delphi Win3x tab with future enhancements (Win2k) Date : 05-15-1999 Author : Ryan J. Mills Version : 1.92 ========...
unit ufrmDialogCustomerVoucher; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ufrmMasterDialog, ufraFooterDialog2Button, ExtCtrls, StdCtrls, System.Actions, Vcl.ActnList, ufraFooterDialog3Button; type TFormMode = (fmAdd, fmEdit); TfrmDialogCostumerVouche...
{***************************************************************************} { } { Delphi Package Manager - DPM } { } { ...
{***************************************************************************} { } { Delphi Package Manager - DPM } { } { ...
program questao11; { Autor: Hugo Deiró Data: 03/06/2012 - Este programa calcula o aumento de um salário baseado em quanto ele era anteriormente. } var salario : real; begin write('Insira o salário: '); readln(salario); writeln; if(salario > 0)then begin if(salario <= 280)then begin write...
program feldsortS125 (input, output); {sortiert einzulesendes Feld von integer-Zahlen} const FELDGROESSE = 5; type tIndex = 1..FELDGROESSE; tFeld = array [tIndex] of integer; var Eingabefeld : tFeld; MinPos, i : tIndex; Tausch: integer; function FeldMinimumPos (Feld: tFeld; ...
program HowToCreateHost; uses SwinGame, sgTypes, sgNetworking, SysUtils; //---------------------------------------------------------------------------- // Init //---------------------------------------------------------------------------- procedure InitPanel(var aMenuPanel : Panel); begin GUISetForegroundColor(Co...
unit UtilLib; interface uses Classes,SysUtils; type TUtilLib=class(TObject) public class function SmallToBig(Small:Real):string; end; implementation { TUtilLib } class function TUtilLib.SmallToBig(Small: Real): string; var j: Integer; SmallMonth,BigMonth:string; wei1,qianwei1...
unit ThConnectionStringEdit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, dcedit, DB, ADODB; type TThConnectionStringEditForm = class(TForm) Label1: TLabel; ConnectionStringEdit: TDCEdit; OkButton: TButton; ADOConnection: TADOCon...
unit Main_U; // Description: SDUPrettyPrint Test Application // By Sarah Dean // Email: sdean12@sdean12.org // WWW: http://www.SDean12.org/ // // ----------------------------------------------------------------------------- // interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls,...
unit Search_Unit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, cxLookAndFeelPainters, StdCtrls, cxButtons, cxControls, cxContainer, cxEdit, cxTextEdit, st_ConstUnit; type TSearch_Form = class(TForm) T_Label: TLabel; Naim_Edit: TcxTextEdit; Fin...
unit AppRegistry; interface uses Classes, Registry, ResStr, cxGridDBTableView,cxGridCustomView; type TAppRegistry = class(TRegistry) private fRootKeyName: string; public constructor Create (aRootKeyName: string); function DeleteSubKey(aSubKey: string): boolean; ...
unit uDM; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, uParentDM, Db, DBTables, uSystemTypes, uHandleError, uSystemConst, IniFiles, ADODB, RCADOQuery, PowerADOQuery, LookUpADOQuery; Const TRIAL_LIMIT = 6000; type TOMSystem = Class private fStartMode ...
program MyChat; uses SwinGame, sgTypes, SysUtils; procedure LoadResources(); begin LoadFontNamed('InputFont', 'arial.ttf', 14); LoadFontNamed('DialogFont', 'arial.ttf', 14); end; procedure DisplayDialog(const msg: String; x,y: Integer); var msgWidth, promptWidth, msgHeight: Integer; width, height: Integer; outp...