text
stringlengths
14
6.51M
unit ModflowHFB_WriterUnit; interface uses SysUtils, Classes, Contnrs, PhastModelUnit, CustomModflowWriterUnit, ScreenObjectUnit, ModflowPackageSelectionUnit, ModflowParameterUnit, EdgeDisplayUnit, GoPhastTypes; type TModflowHfb_Writer = class; TBarrier = class(TCustomModflowGridEdgeFeature) protected ...
//--------------------------------------------------------------------------- // 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 uServerPOS; interface uses System.Classes, uModApp, uDBUtils, Rtti, Data.DB, SysUtils, StrUtils, uModSO, uModSuplier, Datasnap.DBClient, System.Generics.Collections, System.DateUtils, System.JSON, System.JSON.Types, uServerClasses, uModBeginningBalance, uModSetupPOS, uModTransaksi; type TPOS = class(T...
unit NtGraphic; interface uses Graphics; type TNtGraphicResoure = class helper for TGraphic procedure LoadResource( resType, resName: PChar; instance: THandle = 0); overload; procedure LoadResource( const resType, resName: String; instance: THandle = 0); overload; end; impleme...
unit ResultsUnit; interface uses Classes; type resultContainerClass = class(TObject) private protected public sinZ: Double; //Стержень shankTopX: Double; shankTopY: Double; shankBottomX: Double; shankBottomY: Double; //Каретка carriageX: Double; //Груз cargoX:...
unit uFrmStart; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, uParentWizard, ImgList, StdCtrls, ExtCtrls, ComCtrls, uSQLFileReader, IniFiles, jpeg, Buttons, ADODB, DB; Const SQL_REP_SERVER = '#SERVER#'; SQL_REP_DIR = '#REP_DIR#'; SQL_REP_DB =...
unit mainUn; {Here are some more tips: - If you want a smoother transition between 2 frames, you could use blur. There are blur components but you could also make a somewhat simpler blur, render the previous frame as well but then almost transparent. - When using linear or mipmap filters for mi...
unit sheet; {******************************************************************************* Program Modifications: ------------------------------------------------------------------------------- Date ID Description ------------------------------------------------------------------------------- 08-10-2006 ...
unit EditArtist; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.Layouts, FMX.Objects, FMX.Edit, Artist, EditArtistController; type TfrmEditArtist = class(TForm) TopLabel: TLabel; ButtonLayout: TLayo...
unit Class_MembMenu; //YXC_2010_05_08_22_53_35 //TBL_MEMB_MENU //会员套餐 interface uses Classes,SysUtils,ADODB,Class_DBPool; type TMembMenu=class(TObject) public UnitLink:string; //单位编码 MembIdex:Integer; //会员序列 MenuIdex:Integer; //套餐序列 MembMenu:Integer; //会员套餐 ThisDate:TD...
{******************************************************************************* Title: T2Ti ERP Description: Controller do lado Cliente relacionado à tabela [FIN_LANCAMENTO_PAGAR] ...
{ Laz-Model Copyright (C) 2017 Peter Dyson. Initial Lazarus port Portions (C) 2002 Eldean AB, Peter Söderman, Ville Krumlinde 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 versi...
unit KpSmall; interface function DirExists(Dir: String): Boolean; procedure ForceCreateDirectories(Dir: string); function PMsgDlg(Msg, Caption: String; TextType: Word): Integer; function StripBackSlash(const S: String): String; function YieldProcess: Boolean; implementation uses SysUtils, WinTypes, WinProcs, Me...
unit Objekt.DHLShipmentNotification; interface uses SysUtils, Classes, geschaeftskundenversand_api_2; type TDHLShipmentNotification = class private fShipmentNotificationTypeAPI: ShipmentNotificationType; frecipientEmailAddress: string; procedure setrecipientEmailAddress(const Value: string); publ...
unit NewsStoryDBU; interface uses Classes,sysutils,QuickRTTI,QRemote,IBDatabase,IBSQL,guids; type TDBNewsStory =class(TQRemoteObject) private fdb:TIBDatabase; ftran:TIBTransaction; fstory_id,ftitle,fbyline,fstory:STring; fcreated:Tdatetime; public function ProcessCall (Command:String;Parameters:TStri...
unit RegisterHelper; interface function IsVCRTL140Installed:LongBool; implementation uses Registry,Windows,SysUtils; type TIsWow64Process = function(hProcess:THandle;var Wow64Process:LongBool):LongBool;stdcall; function Is32BitProcessUnderWOW64:LongBool; var IsWow64Process:TIsWow64Process; hmod:THandle; begin Re...
unit DataSnapServerConnectionObj; interface uses System.Classes; type TDataSnapConnectionDetails = class strict private FPort: Integer; FServer: string; FURLPath: string; FPassword: string; FUserName: string; procedure SetPort(const Value: Integer); procedure SetServer(...
unit ZcxLocateBar; interface uses SysUtils, Classes, Forms, dxBar, pFIBDataSet,DB, Unit_ZGlobal_Consts, ZProc, Menus, Z_Images_DM, dxBarExtItems, Dates, ZMessages, Dialogs; type EzcxBarLocate = class(Exception); type TZItemLocate = record NameField:string; Caption:string; LocateOptions:TLocateOptions; end; ...
// // Generated by JavaToPas v1.5 20180804 - 083124 //////////////////////////////////////////////////////////////////////////////// unit android.view.textclassifier.TextLinks; interface uses AndroidAPI.JNIBridge, Androidapi.JNI.JavaTypes, Androidapi.JNI.os, android.text.Spannable, java.util.function.Functi...
unit pkcs11_session; interface uses pkcs11t, pkcs11_api, pkcs11_object, pkcs11_attribute, pkcs11_mechanism, //sdu sdugeneral; type TPKCS11UserType = (utUser, utSecurityOfficer, utContextSpecific); const PKCS11_USER_TYPE: array [TPKCS11UserType] of CK_USER_TYPE = ( CKU_USER, ...
unit Actions; {$mode objfpc}{$H+} interface uses Graphics,Coach,Param,Math,DecConsts,ObsAvoid,SysUtils; const IDCTRL_OMNI_FORWARD=1; IDCTRL_OMNI_POSITION=2; IDCTRL_OMNI_XYTETA=3; type TAction=(acStop, acGoToXYTeta,acAdvisedSpeed); const CActionString: array[low(TAction)..High(TAction)] of string = ...
// файл colorUnit.pas unit colorUnit; interface uses math; //---------------------------------- type Tcvet = record // цвет как тройка R, G, B : integer; // чисел Red, Green, end; // Blue; //== смешивание и «умножение цветов»: ============ fun...
program HelloWorld(output); begin Write('Hello, world!') end.
unit JMC_FileUtils; interface uses Classes, ShellAPI, SysUtils, Windows, FileCtrl; function ExpandPath(const MasterFileName, SlaveFileName: string): string; function ExpandPathFromExe(const SlaveFileName: string): string; function RelatePathFromExe(const SlaveFileName: string): string; functi...
// // VXScene Component Library, based on GLScene http://glscene.sourceforge.net // { Implements a HDS, which automatically maps textures onto a parent HDS . This HDS links to and extracts its height data from a parent HDS. (like TVXHeightTileFile) The HDS also links to a TVXMaterial Library, and maps ...
unit VXS.OpenGLFMX; { OpenGL for FMX Adapted from https://github.com/LUXOPHIA } interface uses Winapi.Windows, FMX.Forms, VXS.OpenGL; type TVXOpenGL = class private _Form: TCommonCustomForm; _WND: HWND; _DC: HDC; protected _PFD: TPixelFormatDescriptor; _PFI: Inte...
unit Ils.Json.Utils; interface uses SysUtils, JsonDataObjects, Ils.Json.Names, StrUtils; function GetJsonVersion(AJson: TJsonObject): Integer; function IsCameraMessage(AJson: TJsonObject): Boolean; function IntToBin(Value: integer; Digits: integer): string; function GetAdditionalStat(const AJSONO: TJsonObject; co...
unit uWorker; interface uses Winapi.Windows, Winapi.Messages, System.Classes, System.SysUtils, System.Generics.Defaults, System.Generics.Collections, VCL.Controls, VCL.Forms; const WM_WORKER_STATE_CHANGED = WM_USER + 100; WM_WORKER_FEEDBACK_PROGRESS = WM_USER + 101; WM_WORKER_FEEDBACK_DATA = WM_USER + ...
unit FJX; interface //######################################################################################## ■ uses System.Types, System.Math.Vectors, System.UITypes, FMX.Controls3D, FMX.Graphics; type //$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$【型】 TA...
(* Category: SWAG Title: INPUT AND FIELD ENTRY ROUTINES Original name: 0008.PAS Description: Masked Input Author: BERNIE PALLEK Date: 01-27-94 12:13 *) { > The text on the screen would be something like: > What is your phone number? ( ) - > ^^^ ^^^ ^^^^ > But text could o...
unit ThCanvasController; interface uses ThTypes, ThClasses, ThItem, ThCanvas, ThCanvasEditor, System.Types; type TThCanvasController = class(TThInterfacedObject, IThObserver, IThCanvasController) private procedure CanvasZoom(Sender: TObject); protected FCanvas: TThCanvasEditor; FSubject: IThSubje...
(** This module contains a form class to displays a GIT error message and ask the user what to do. @Author David Hoyle @Version 1.0 @Date 22 Feb 2018 **) Unit JVTGGitErrorForm; Interface Uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics...
function DetectaDrv(const drive : char): boolean; {Detecta quantas unidade possui no computador} var Letra: string; begin Letra := drive + ':\'; if GetDriveType(PChar(Letra)) < 2 then begin result := False; end else begin result := True; end; end;
{***************************************************************************} { } { Delphi Package Manager - DPM } { } { ...
unit CoreX; {====================================================================} { "CoreX" crossplatform game library } { Version : 0.01 } { Mail : xproger@list.ru } { Site : http:/...
object MMExportForm: TMMExportForm Left = 43 Top = 13 Caption = 'Export to Milling Machine' ClientHeight = 220 ClientWidth = 456 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'Tahoma' Font.Style = [] OldCreateOrder = False OnCreate = U...
unit FSelectFolder; (*==================================================================== Dialog box for selecting the folder to be scanned. ======================================================================*) interface uses SysUtils, {$ifdef mswindows} WinTypes,WinProcs, {$ELSE} LCLIntf,...
unit U_CustomFilter; //////////////////////////////////////////////////////////////////////////////////////////////////// interface uses Classes, Windows, SysUtils; type {--- 2013-01-26 Martijn: TFilterData contains all the information needed for the filter to do its job (in a...
unit UnitOpenGLBRDFLUTShader; {$ifdef fpc} {$mode delphi} {$ifdef cpui386} {$define cpu386} {$endif} {$ifdef cpuamd64} {$define cpux86_64} {$endif} {$ifdef cpu386} {$define cpux86} {$define cpu32} {$asmmode intel} {$endif} {$ifdef cpux86_64} {$define cpux64} {$define cpu64} {$as...
// VXScene Component Library, based on GLScene http://glscene.sourceforge.net // { Glass shader : Environment mapping with an equirectangular 2D texture and refraction mapping with a background texture blended together using the fresnel terms } unit VXS.GLSLGlassShader; interface ...
{ Laz-Model Copyright (C) 2002 Eldean AB, Peter Söderman, Ville Krumlinde Portions (C) 2016 Peter Dyson. Initial Lazarus port 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 versi...
unit InflatablesList_Master; {$INCLUDE '.\InflatablesList_defs.inc'} interface uses WinSyncObjs, InflatablesList_Types, InflatablesList_Manager; const IL_APPLICATION_NAME = 'Inflatables List'; IL_APPLICATION_MUTEX = 'il_application_start_mutex_%s'; IL_APPLICATION_TIMEOUT = 10000; // 10s type TILMas...
(* Category: SWAG Title: TEXT FILE MANAGEMENT ROUTINES Original name: 0026.PAS Description: Reading File Backwards Author: LARS FOSDAL Date: 11-26-93 17:46 *) { Fast driver for backwards reading... Aha! This is the way to do it. Below you will find the source of a "tail" program. I wrote it be...
{ ********************************************************************** } { } { Delphi Open-Tools API } { } { Copyright (C) 2000...
unit M_extern; interface uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons, StdCtrls, SysUtils, M_Global; type TExtToolsWindow = class(TForm) OKBtn: TBitBtn; CancelBtn: TBitBtn; HelpBtn: TBitBtn; EDParameters: TEdit; LBExtTools: TListBox; Label1: TLabel; LBHidden: T...
unit WebClientForm; interface uses // Standard Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, StrUtils, StdCtrls, Menus, // Forms GoToForm, UserMsgForm, // ActiveX/Ole ActiveX, OleCtrls, // LL Utils LL_StringUtils, LL_SysUtils, // Embedd...
unit SpPrivilegesZarplataControl; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, cxLookAndFeelPainters, StdCtrls, cxButtons, cxMaskEdit, cxDropDownEdit, cxCalendar, cxContainer, cxEdit, cxTextEdit, cxControls, cxGroupBox, zProc, Unit_ZGlobal_Consts, cxLabe...
unit SendSMS; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, uniGUITypes, uniGUIAbstractClasses, uniGUIClasses, uniGUIForm, BaseForm, siComp, uniGUIBaseClasses, uniPanel, IdHTTP, uniButton, uniLabel, uniEdit, uniURLFrame, Data.DB, MemDS, DBAccess, Uni, uniBasicGrid...
unit PanelRights; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, StdCtrls, Buttons, uSystemTypes; type TPanelRights = class(TPanel) private { Private declarations } FCommands : TSetCommandType; protected { Protected declarations } public ...
//Contains all script commands used by the lua system //Note the command lual_argcheck will cause the procedure it is in to call exit; //So be aware of your code! unit LuaItemCommands; {$IFDEF FPC} {$MODE Delphi} {$ENDIF} interface uses // LuaCoreRoutines, LuaTypes; function LoadItemCommands(var A...
{*******************************************************} { } { FormMain.pas { Copyright @2014/5/20 16:01:35 by 姜梁 { } { 功能描述: { 函数说明: {*******************************************************} ...
unit Dfm2Text.Form.Main; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, System.IOUtils, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls; type TFormMain = class(TForm) GrpDFMBin: TGroupBox; GpDFMBin: TG...
program Space; uses GraphABC; const MaxDepth = 100; MaxWidth = WindowWidth div 2; MaxHeight = WindowHeight div 2; MaxSpeed = 0; MaxWeight = 100; Density = 1; dt = 0.01; N = 20; G = 3; px = WindowWidth div 2; py = WindowHeight div 2; n_ = 5; ...
unit ItmUnit; interface uses Windows, Classes, SysUtils, SDK, Grobal2; type TItemUnit = class private function GetRandomRange(nCount, nRate: Integer): Integer; public m_ItemNameList: TGList; constructor Create(); destructor Destroy; override; procedure GetItemAddValue(UserItem: pTUserItem; ...
unit GADataTypes; interface type TBaseElement = record Coeficient: single; Bitmap: cardinal; end; implementation end.
unit UTemplateFcxVO; interface uses Atributos, Classes, Constantes, Generics.Collections, SysUtils, UGenericVO, UCondominioVO; type [TEntity] [TTable('TemplateFcx')] TTemplateFcxVO = class(TGenericVO) private FidFcx : Integer; FidTemplate : Integer; Fclassificacao : String; FclassificacaoCont...
unit Circle; interface uses System.SysUtils, Winapi.Windows, Vcl.Graphics, System.Generics.Collections, System.SyncObjs, JsonDataObjects; type TCircle = class private class var FCircles: TDictionary<string, TCircle>; FCirclesMutex: TMutex; private FPosition: array [0..1] of si...
unit UDExportRecords; interface uses SysUtils, Classes, Graphics, Controls, Forms, StdCtrls, ExtCtrls, UCrpe32; type TCrpeExportRecordsDlg = class(TForm) btnOk: TButton; btnCancel: TButton; pnlRecords: TPanel; cbUseRptNumberFmt: TCheckBox; cbUseRptDateFmt: TCheckBox; rgRecordsType: TRad...
unit PricesInterface; interface uses Ibase, PricesMain, Forms, Windows, Classes, UParamsReestr, Controls, cn_Common_Types, Dialogs; procedure GetPrices (AOwner:TComponent; DbHandle:TISC_DB_HANDLE; Id_user:Int64);stdcall; procedure ShowPrices (AParameter:TcnSimpleParams);stdcall; procedure GetPrice...
// // Created by the DataSnap proxy generator. // 19/05/2018 14:36:56 // unit uCC; interface uses System.JSON, Data.DBXCommon, Data.DBXClient, Data.DBXDataSnap, Data.DBXJSON, Datasnap.DSProxy, System.Classes, System.SysUtils, Data.DB, Data.SqlExpr, Data.DBXDBReaders, Data.DBXCDSReaders, Data.DBXJSONRefle...
unit Ils.Kafka; interface uses ULibKafka, Classes, Windows, SysUtils, DateUtils, StrUtils, System.Generics.Collections, SyncObjs, IniFiles, Ils.Kafka.Conf; const KC_ERROR_KAFKA = -100; KC_ERROR_BROKER = -101; KC_ERROR_PARTITION = -102; KC_ERROR_BOOTSTRAP_SERVERS = -103...
{ Clever Internet Suite Version 6.2 Copyright (C) 1999 - 2006 Clever Components www.CleverComponents.com } unit clEncoder; interface {$I clVer.inc} {$IFDEF DELPHI7} {$WARN UNSAFE_CODE OFF} {$WARN UNSAFE_TYPE OFF} {$ENDIF} uses SysUtils, Classes; const DefaultCharsPerLine = 76; type EclEncoderErr...
unit DzPngCollection; { Jacek Pazera http://www.pazera-software.com https://github.com/jackdp Last mod: 2019.05.22 } {$I dz2.inc} {$IFDEF FPC}{$mode objfpc}{$H+}{$ENDIF} interface uses SysUtils, Classes, Types, {$IFDEF HAS_SYSTEM_UITYPES}System.UITypes,{$ENDIF} Graphics {$IFDEF DCC}{$IFDEF HAS_UNIT_SCOP...
unit UDrives; (*==================================================================== Functions to get the list of available drives ======================================================================*) interface uses Classes, UStringList, UTypes, UApiTypes; type TDriveType = (dtUnknown, dtNoDrive...
{================================================================================ Copyright (C) 1997-2002 Mills Enterprise Unit : rmPanel Purpose : This is a regular panel that has a splitter bar on the oppositly aligned side Date : 07-10-1999 Author : Ryan J. Mills Version : 1.92 =====...
unit Exercicio1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls, Vcl.ComCtrls, Vcl.CheckLst; type TForm1 = class(TForm) Panel1: TPanel; GroupBox1: TGroupBox; Label2: T...
unit DataSet.Model; interface uses System.SysUtils, System.Classes, FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS, FireDAC.Phys.Intf, FireDAC.DApt.Intf, FireDAC.Stan.Async, FireDAC.DApt, Data.DB, FireDAC.Comp.DataSet, FireDAC.Comp.Client, DataSet.Types; type ...
unit uSprJoin; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, DB, ADODB, StdCtrls, Grids, DBGrids, StrUtils, ImgList; type TsprJoin = class(TObject) private FTable: string; FKind: string; FFieldLeft: string; FFieldRight: string; FOptions...
unit u_Main; interface uses System.SysUtils, System.Classes, System.Math, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.StdCtrls, Vcl.ExtCtrls, Vcl.Buttons, GLWin32Viewer, GLCrossPlatform, GLBaseClasses, GLScene, GLVectorFileObjects, GLCadencer, GLObjects, GLCoord...
// Информация о версии (Version Info) // Автор Rick Peterson // //////////////////////////////////////////////////// unit sysSHVersionInfo; interface uses Windows,TypInfo; type {$M+} TVersionType=(vtCompanyName, vtFileDescription, vtFileVersion, vtInternalName, vtLegalCopyright,vtLegalTradeMar...
unit frmModifyCarNoAndLocationNo; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons; type TModifyCarNoAndLocationNoForm = class(TForm) lbl1: TLabel; edt1: TEdit; lbl2: TLabel; edt2: TEdit; btn1: TBitBtn; btn2: TBitBtn; ...
unit Horse.Compression; interface uses Horse, System.Classes, System.ZLib, Horse.Compression.Types, System.SysUtils, Web.HTTPApp, System.JSON; const COMPRESSION_THRESHOLD = 1024; procedure Middleware(Req: THorseRequest; Res: THorseResponse; Next: TProc); function Compression(const ACompressionThreshold: Integer =...
unit Serialialize.JSON.Interfaces; interface uses System.Generics.Collections; type ISerialize<T: Class> = interface ['{E688C149-C82E-4E21-8FB3-110E41248E47}'] function ObjectToJsonArray(AObject: TObjectList<T>): String; end; IJSON<T: Class> = interface ['{888E35D0-04B9-42BE-B953-987E98A3A6BB}']...
(* Category: SWAG Title: ANYTHING NOT OTHERWISE CLASSIFIED Original name: 0079.PAS Description: Loan Amortization Tables Author: GAYLE DAVIS Date: 01-27-94 17:29 *) program Amortization_Table; Uses Crt; var Month : 1..12; Starting_Month : 1..12; Balance : real;...
unit ThSelect; interface uses SysUtils, Windows, Types, Classes, Controls, Graphics, StdCtrls, ThInterfaces, ThTag, ThHeaderComponent, ThWebControl, ThTextPaint, ThListSource; type TThCustomSelect = class(TThWebControl, IThFormInput) private FListBox: TListBox; FComboBox: TComboBox; FRows: I...
(* WC_ADS 23.04.2017 *) (* Container for strings *) UNIT WC_ADS; INTERFACE FUNCTION IsEmpty: BOOLEAN; FUNCTION Contains(s: STRING): BOOLEAN; PROCEDURE Insert(s: STRING); PROCEDURE Remove(s: STRING); PROCEDURE DisposeTree(); IMPLEMENTATION TYPE Node = ^NodeRec; Nod...
unit Demo.DiffChart.Pie; interface uses System.Classes, Demo.BaseFrame, cfs.GCharts; type TDemo_DiffChart_Pie = class(TDemoBaseFrame) public procedure GenerateChart; override; end; implementation procedure TDemo_DiffChart_Pie.GenerateChart; var OldData: IcfsGChartData; NewData: IcfsGChartData; Ch...
unit UDWindowButtonBar; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, StdCtrls, UCrpe32; type TCrpeWindowButtonBarDlg = class(TForm) pnlWindowButtonBar: TPanel; cbVisible: TCheckBox; cbCancelBtn: TCheckBox; cbCloseBtn: TCheckBox; cbRefres...
unit ibSHDDLExtractorFrm; interface uses SHDesignIntf, SHEvents, ibSHDesignIntf, ibSHComponentFrm, Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ImgList, ComCtrls, ExtCtrls, SynEdit, pSHSynEdit, VirtualTrees, StdCtrls, ActnList, AppEvnts,ibSHDriverIntf,ibSHSQLs; ...
unit Demo.PrimeCheck; { PrimeCheck example from the the Duktape guide (http://duktape.org/guide.html) } interface uses Duktape, Demo; type TDemoPrimeCheck = class(TDemo) private class function NativePrimeCheck(const ADuktape: TDuktape): TdtResult; cdecl; static; public procedure Run; override; en...
unit Wwdbdlg; { // // Components : TwwDBLookupDlg // // Copyright (c) 1995 by Woll2Woll Software // } interface uses SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls, Buttons, Forms, Dialogs, StdCtrls, wwdblook, dbTables, wwiDlg, DsgnIntf, db, Wwdbgrid, wwTable, menus, wwdbigrd, wwstr, wwcomm...
(* Define an object with the following fields and methods. Write a program that creates the object and tests the methods. The object is a table, its parameteres are two numbers: its length and width. Its methods are the initialization procedure, a procedure for computing its area, and a pretty-printing method. *) t...
unit ThCheckBox; interface uses Windows, Classes, Controls, StdCtrls, ExtCtrls, Graphics, Messages, SysUtils, Types, ThInterfaces, ThTextPaint, ThWebControl, ThTag; type TThCustomStateBox = class(TThWebGraphicControl, IThFormInput) private FChecked: Boolean; protected function GetHtmlAsString...
unit Unit1_7; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Unit64; type TChildForm1_7 = class(TFatherForm) Edit1: TEdit; Label1: TLabel; Button1: TButton; Label2: TLabel; L...
{***************************************************************************} { } { Delphi Package Manager - DPM } { } { ...
unit uDMGlobal; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, siComp, ImgList, siLangRT, uSQLObj; const LANG_ENGLISH = 1; LANG_PORTUGUESE = 2; LANG_SPANISH = 3; LANG_DIRECTORY = 'Translation\'; type TDMGlobal = class(TDataModule) LanguageDispatche...
{ *********************************************************************** } { } { GUI Hangman } { Version 1.0 - First release of program } { Last Revi...
{----------------------------------------------------------------------------- Unit Name: cPyRemoteDebugger Author: Kiriakos Vlahos Date: 23-April-2006 Purpose: History: Remote debugger based on rppdb2 -----------------------------------------------------------------------------} unit cPyRemoteDebugger;...
unit USnakeList; interface uses UTypes; type TSnakeList = ^TSnakeItem; TSnakeItem = record data: TSnakeData; next: TSnakeList; end; procedure addHeadItem(snake: TSnakeList; data: TSnakeData); function deleteTailItem(snake: TSnakeList):TSnakeData; function returnHead(snake: TSnakeList):TSnakeData; ...
unit main; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, ActnList; type TF_Main = class(TForm) AL_Main: TActionList; A_Seconds: TAction; A_Help: TAction; A_Maximize: TAction; L_Time: TLabel; procedure P_TimeResize...
unit XLSUtils2; {- ******************************************************************************** ******* XLSReadWriteII V3.00 ******* ******* ******* ******* Copyright(C) 1999,2006 Lars Arvidsson, Axolot Dat...
unit SysAdmin; interface uses Windows, Classes, Forms, FIBQuery, pFIBQuery, pFIBStoredProc, ExtCtrls, DB, FIBDataSet, pFIBDataSet, pFibDatabase, SIBFIBEA, IB_EXTERNALS, Graphics, Jpeg, SysUtils; type TSendMode = (smAllSystems, smSystem, smUser); TAdminObject = class DataBase : TpfibDataBase; ...
{: This is a basic use for TGLBInertia behaviour.<p> There are three objects, which we assign three different dampings, and we apply a torque to the object under the mouse pointer, other are left along with their inertia (and damping makes them progressively reduce their speed).<br> There is also a checkbox t...
unit YarxiCore; interface uses YarxiStrings, KanaConv; { Данные хранятся в базе Яркси в разновидности кодировки Хэпбёрна. Отделение n стандартное: "sen'i". Долгота ou передаётся двоеточием: "so:zo:". Удвоенная гласная так и записывается: "tooi", "saabisu". В словах, помеченных как катакана, Яркси в этом...
unit uFormBusyApplications; interface uses Winapi.Windows, Winapi.Messages, Winapi.CommCtrl, System.SysUtils, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ImgList, Dmitry.Utils.System, uIconUtils, uDBForm; type TFormBusyA...
// ------------------------------------------------------------- // Programa com a fórmula matemática para se calcular Pi. Quanto // maior o número n, mais próximo será o resultado entre o valor // calculado pelo programa e o número Pi. Como o programa é // bastante limitado, esse resultado não se aproxima tanto...
unit LoadingUnit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, jpeg, ExtCtrls, StdCtrls, cxControls, cxContainer, cxEdit, cxTextEdit, Buttons, LoadDogManedger, DogLoaderUnit; type TLoadingForm = class(TForm) Image1: TImage; UserLabel: TLabel; ...
// ************************************************************************ // ***************************** CEF4Delphi ******************************* // ************************************************************************ // // CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based // browser in D...
unit uFrmTelemarketingFilter; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, PaideTodosGeral, siComp, siLangRT, StdCtrls, Buttons, ExtCtrls, SuperComboADO, Mask, DateBox, ComCtrls, DB, ADODB, cxControls, cxContainer, cxEdit, cxTextEdit, cxMaskEdit, cxDropDow...
unit UDCrossTabSummaries; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, UCrpe32; type TCrpeCrossTabSummariesDlg = class(TForm) pnlCrossTabs: TPanel; lblNumber: TLabel; lblCount: TLabel; lbNumbers: TListBox; editCount: TEdit; ...