text
stringlengths
14
6.51M
unit Lemonade.Helpers.VariantHelper; interface uses System.Variants, System.StrUtils, System.SysUtils, Lemonade.Funcoes.Globais; type TVariantHelper = record helper for Variant function ToInteger : Integer; function ToString : String; end; implementation { TIntegerHelper } function TVariantHelper.ToI...
unit FormProcSozd; interface uses Classes, SysUtils, IWAppForm, IWApplication, IWColor, IWTypes, IWCompMemo, IWCompListbox, IWDBStdCtrls, IWCompEdit, IWCompLabel, jpeg, Controls, IWVCLBaseControl, IWBaseControl, IWBaseHTMLControl, IWControl, IWExtCtrls, IWCompButton, IWCompRectangle; type TIWFor...
unit DW.Androidapi.JNI.Util; {*******************************************************} { } { Kastri } { } { Delphi Worlds Cross-Platform Library ...
unit WnfUtils; { Windows Notification Facility utils. See https://blog.quarkslab.com/playing-with-the-windows-notification-facility-wnf.html } interface uses SysUtils, Generics.Collections; type TWnfStateName = int64; PWnfStateName = ^TWnfStateName; const //WNF Scope markers WNF_SCOPE_MAP_CODE...
unit XSSIELogPhyPosition; {- ******************************************************************************** ******* XLSSpreadSheet V3.00 ******* ******* ******* ******* Copyright(C) 2006,2017 Lars Arvid...
unit BrainScanUltra; {$D-} interface {$IFDEF LINUX} type TChart = TObject; {$ELSE} uses VCLTee.Chart, graphics, sysutils; {$ENDIF} procedure MemChart(chart1: TChart); procedure MemBlockChart(chart1: TChart); implementation {$IFDEF DO_MEM_CHART} {$IFNDEF NOSUPERMEM} uses BigBrainUltra; {$ENDIF} {$ENDIF} {$IFNDEF...
unit TabbedFormwithNavigation; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.TabControl, FMX.StdCtrls, FMX.Controls.Presentation, FMX.Gestures, System.Actions, FMX.ActnList, FMX.ScrollBox, FMX.Mem...
unit Xmpp.Iq.Vcard.Address; interface uses Element,XmppUri; /// <remarks> /// ttttt /// </remarks> const AddressLocation:array[0..2] of string=('NONE', 'HOME', 'WORK'); type TAddress=class(TElement) const TagName='ADR'; private function FGetLocation():string; procedure FSetLocation(value:string...
unit MenuForm; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, DB, StdCtrls, POSMain, ExtCtrls; type TfmMenuForm = class(TForm) ListBox1: TListBox; label1: TPanel; procedure FormShow(Sender: TObject); private { Private declarations } public { Pub...
unit rfidlib_def; interface const RFID_APL_UNKNOWN_ID = 0; RFID_APL_ISO15693_ID = 1; // Tag type id RFID_UNKNOWN_PICC_ID =0 ; RFID_ISO15693_PICC_ICODE_SLI_ID = 1 ; RFID_ISO15693_PICC_TI_HFI_PLUS_ID=2; RFID_ISO15693_PICC_ST_M24LRXX_ID=3; RFID_ISO15693_PICC_FUJ_MB89R118C_ID=4; RFID_ISO15693_PICC_ST_M24LR64_...
{ Author: snake Date: 2014-09-30 site: snakelab.cc Changelog: v0.5 - first release 2014-10-01 v0.6 - use thread timer instead of TTimer 2014-10-03 v0.7 - fixed mem leaks, data is freed within thread 2014-10-06 v0.71 - fixed frozen thread issue 2014-10-07 v0.8 - got rid of timer in T...
unit xxmCommonUtils; interface function RFC822DateGMT(dd: TDateTime): string; function GetFileModifiedDateTime(const FilePath:AnsiString; var FileSize:Int64):TDateTime; function GetFileSignature(const Path:AnsiString):AnsiString; implementation uses Windows, SysUtils; function RFC822DateGMT(dd: TDat...
unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls; const NBMOTS=10; type TFGame = class(TForm) MListeMots: TMemo; //Memo contenant notre liste de mots LNbBonnePo...
unit DW.Androidapi.JNI.AndroidX.Activity; {*******************************************************} { } { Kastri } { } { Delphi Worlds Cross-Platform ...
unit SkyPacketCompatibility; interface uses SkyPacket, Classes; type TSkyPacketD7 = class(TObject) private FParent: TSkyPacket; FDictionary, FOriginalDictionary: ShortString; FEncodeDict, FDecodeDict: array[#0..#255] of AnsiChar; FUseHeaderEncription: Boolean; function ReadS...
unit uDados; interface uses Windows, Classes, SysUtils, Registry, DateUtils, Dialogs, ComObj, uNFeBanco; type IDados = interface ['{6A0C95F1-C7C6-423A-802F-C54A4BC0DA5A}'] function RegName: string; procedure CarregarDados; procedure SalvarDados; end; ICertificadoDigital = interface; IServ...
unit MFMOCObsWell; interface {MFMOCObsWell defines the "MOC3D Observation Wells" layer and associated parameter and Parameterlist.} uses ANE_LayerUnit, SysUtils; const MaxObsWellLayers = 5; type TMOCObsElev = class(T_ANE_LayerParam) class Function ANE_ParamName : string ; override; function Units : st...
unit MemoryDemoFormUnit; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, MyPointUnit; type TForm1 = class(TForm) MemoryIssuesButton: TButton; procedure MemoryIssuesButtonClick(...
// ========================================================================= // file Misc.Pas // by Cyril O' Floinn, 1998 // based on an example made by Marko alias lonewolf // http://homepages.tig.com.au/~lonewolf // language Delphi 3. // ===============================================...
PROGRAM lineq (input, output); {Solves a set of simultaneous linear equations Ax = b of rank 1..5. Sample input: rank: 3 row 1: 2 1 -3 5 row 2: 3 -2 2 5 row 3: 5 -3 -1 16 Represents the system: 2x + y - 3z = 5 3x - 2y + 2z = 5 5x - 3y - z = 16 With the solution (1, -3, -2).} ...
{***********UNITE************************************************* Auteur ...... : Créé le ...... : 13/06/2002 Modifié le ... : / / Description .. : Source TOM de la TABLE : TarifsFourchette (TarifsFourchette) Mots clefs ... : TOM;TarifsFourchette *****************************************************************} U...
namespace TodoMVP.iOS; interface uses UIKit, RemObjects.Elements.RTL, TodoMVP.Shared; type [IBObject] RootViewController = public class(UITableViewController, TaskContract.View) private var mPresenter: TaskContract.Presenter; var mTasks: List<TodoTask>; protected method numberO...
unit TourConsts; interface resourcestring SVDlgsMsgDlgOK = 'OK'; SVDlgsMsgDlgCancel = 'Відміна'; SVDlgsMsgDlgClose = 'Закрити'; SVDlgsAbout = 'Про програму'; SVDlgsVersion = 'Версія %s'; SVDlgsVersionUpdate = '"Виправлення і доповнення:" dddd, dd.mm.yyyy hh:nn'; SVDlgsPhoneUa = 'тел.'; SVDlgsPhone...
unit WarningsUnit; interface {WarningsUnit defines a form used to display a warning to the user when a layer or parameter name has been changed.} uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ExtCtrls, clipbrd, AnePIE; type TfrmWarnings = class(TForm) m...
unit DataObjectCacheManager; //[x]When cache is free... move from active to inactive list //[ ] When cache is allocated... search for dead cache matching key and move //from dead to active list //[ ] Add a thread to periodically scan the list of dead caches and officially //free ones that have been around for more than...
unit EditorMain; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, System.Generics.Collections, System.Actions, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ActnList, Vcl.ComCtrls, Vcl.ExtCtrls, Editor.Commands, Editor.Editor; type ...
unit DW.Proximity; {*******************************************************} { } { Kastri } { } { Delphi Worlds Cross-Platform Library } { ...
unit HashAlgSHA1Engine_U; // Description: SHA-1 Hashing Engine // By Sarah Dean // Email: sdean12@softhome.net // WWW: http://www.SDean12.org/ // // ----------------------------------------------------------------------------- // // Delphi translation of SHA-1, as defined in FIPS PUB 180-1 (17th April 1995) // For...
unit RWPFactory; interface uses RWPInterface, System.SysUtils, FMX.Forms; type TRadioWebPlayerFactory = class public class function GetInstance: IRadioWebPlayer; end; implementation uses RWPTypes, RWPRegistry, RWPUtils, UfrmRWPIE{, UfrmRWPChromium}; { TRadioWebPlayerFactory } class...
unit ToolKitUtilities; { Copyright (c) 2017+, Health Intersections Pty Ltd (http://www.healthintersections.com.au) 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...
unit baseInput; interface uses SwinGame, sgTypes, sgPhysics, sysUtils, baseTypes; procedure CheckCursorOnGrid(var grid: Grid; var base: BaseSet); procedure MoveBase(var campos: Position; direction: Char; game: GameData); procedure DevMode(var game: GameData); procedure UserInputs(var game: GameData); implementat...
unit StringPIEFunctions; interface uses AnePIE, ANECB, SysUtils; procedure GetSpreadSheetName (const refPtX : ANE_DOUBLE_PTR ; const refPtY : ANE_DOUBLE_PTR ; numParams : ANE_INT16 ; const parameters : ANE_PTR_PTR ; funHandle : ANE_PTR ; reply : ANE_PTR ); cd...
unit Utils; interface uses Vcl.Forms, Winapi.Windows, System.SysUtils, FireDAC.Comp.Client, System.Classes, Vcl.Imaging.jpeg, Vcl.Graphics; procedure mensagemAviso(const mensagem : String); function mensagemPergunta(const mensagem : String) : Boolean; function StrToSQL(texto : string) : Stri...
unit uHexEditor; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, grids; const WM_STATECHANGED = WM_USER + 2; ctMacToISO: array [128 .. 255] of AnsiChar = ( // #$C4, #$C5, #$C7, #$C9, #$D1, #$D6, #$DC, #$E1, #$E0, #$E2, #$E4...
unit MF_GWM_StreamFlow; interface uses SysUtils, ANE_LayerUnit, MF_GWM_HeadConstraint; type TStreamFlowName = class(THeadConstraintName) class Function ANE_ParamName : string ; override; end; TStreamflowValue = class(THeadConstraintBoundary) class Function ANE_ParamName : string ; override; end; ...
unit MFGrid; interface {MFGrid defines the "MODFLOW FD Grid" layer and associated parameters and Parameterlists.} uses ANE_LayerUnit; type TGridETSurf = class(T_ANE_GridParam) class Function ANE_ParamName : string ; override; function Value : string; override; function Units : string; override; end...
unit Util.Kkversion; // taken from http://stackoverflow.com/a/11115662 interface function FileDescription: String; function LegalCopyright: String; function DateOfRelease: String; // Proprietary function ProductVersion: String; function FileVersion: String; implementation uses Winapi.Windows, System.SysUtils, Sys...
{$I- $R- $G+} Program MiGTrackerPro; {v1.4} Uses DSP, Crt, U_txt, GMUnit, Dos, ExtDos, ModeX, UnitPcx, JerVGA, Boxes, Crt2; Type blockTp = Record sx, sy, sp : Byte; ex, ey, ep : Byte; inside : Boolean; End; ...
{*********************************************} { TeeBI Software Library } { Base TDashboard and TBITemplate classes } { Copyright (c) 2015-2016 by Steema Software } { All Rights Reserved } {*********************************************} unit BI.Dashboard; interface u...
{***********UNITE************************************************* Auteur ...... : Paie Pgi - MF Créé le ...... : 03/05/2006 Modifié le ... : / / Description .. : Liste des fins de période d'essai : Vignette : PG_VIG_FINESSAi : Tablette : PGPERIODEVIGNETTE : Table ...
unit DW.Androidapi.JNI.Content; {*******************************************************} { } { Kastri } { } { Delphi Worlds Cross-Platform Library ...
unit uController; interface uses Data.DB, uDAOPais, uDM, uPais; type Controller = class private umDM: TDM; umaDAOPais: DAOPais; public constructor crieObjeto; destructor destruaSe; function carregarPais(vPais: Pais): Boolean; function excluirPais(vPais: Pais): Boolean; ...
{$include opts.inc} unit RawTex; interface uses USystem, utils, Errors, UMath, Streams, UClasses, U_GL, GLBase; implementation const Signature = 'tex'; TargetPrefixCodes: array[GLTextureTarget] of string = ('I', '+', 'Y', 'T'); FMT_BITS = bitsizeof(uint8) - 1; FMT_MASK = 1 shl FMT_BITS - 1; MULT...
unit ToleranceObj; interface uses System.Classes, VdpDMAccess; type TToleranceItem = record Index : byte; dF25, dF, Iter_dF25, Iter_dF : double; Name : ShortString; end; pToleranceItem = ^TToleranceItem; TToleranceGroup = class(TList) private fID : Integer; fGroupName : Strin...
unit HeureUtil; // mcd 28/03/03 mise fct HeureBase100to60 dans CalcOleGenricAff pour @ ds les états interface Uses SysUtils, HMsgBox, HEnt1, Windows,DateUtils, {$IFDEF BTP} CalcOleGenericBTP; {$ENDIF} Function TimeToFloat ( THeure : TDateTime ; b100:Boolean =False): Double; Function FloatToTime ( Heure : ...
{=============================================================================== RzDBProg Unit Raize Components - Component Source Unit Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved. Components ------------------------------------------------------------------------------ TRzDBProgr...
unit UnitThreadSniffer; interface uses Classes,Windows,SysUtils, UWinsockErreurs, UnitGlobal, UnitPileTrame; type TThreadSniffer = class(TThread) private FIp : string; FStartPort : word; FEndPort : word; FDrapeaux : set of TDrapeaux; FPileTrameTcp : TPileTrameTcp...
(* this file is a part of audio components suite v 2.3. copyright (c) 2002-2005 andrei borovsky. all rights reserved. see the license file for more details. you can contact me at mail@z0m3ie.de *) {$Log: acs_aolive.pas,v $ {Revision 1.2 2006/01/01 18:46:40 z0m3ie {*** empty log message *** { {Revision 1.1 2...
{ This file is part of Dev-C++ Copyright (c) 2004 Bloodshed Software Dev-C++ 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 ...
unit UFrmPrincipal; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, PwCtrls , Generics.Collections , UPessoa, Vcl.ComCtrls, Vcl.Menus ; type TFrmPrincipal = class(TForm) sbProgramacaoFu...
unit MemoryRecordDatabase; {$mode objfpc}{$H+} interface uses Classes, SysUtils, MemoryRecordUnit, math, CEFuncProc, Dialogs; type TMemoryRecordTable = class private records : TFPList; FName:string; function GetMemRecItemByIndex(i: integer): TMemoryRecord; public procedure SelectAll; procedure clear; ...
unit ChipAbstractInterface; interface type TChipBytes = array of Byte; IChipAbstract = interface(IInterface) ['{DC7FB1F6-88C1-459A-BC6F-ECCDF28F3165}'] function GetInstance : TObject; stdcall; function GetBitValue(AIndex : byte):smallint; stdcall; procedure SetBitValue(AIndex : byte; AValue: smal...
{----------------------------------------------------------------------------- Unit Name: CloseDay Author: Gary Whetton Date: 9/11/2003 2:53:50 PM Revisions: Build Number Date Author -----------------------------------------------------------------------------} unit CloseDay; interface uses Wind...
unit CompositeSafety; interface uses System.Generics.Collections; type TComponentS = class strict private FName: string; FPrice: real; public constructor Create(const AName: string; const APrice: real); function Components: TArray<TComponentS>; virtual; function TotalPrice: real; virtual;...
unit uWKObject; interface uses Sysutils, Classes, Generics.Collections, FireDAC.Comp.Client, uWKConnection; type TWKObject = class(TComponent) private FDB: TWKConnection; FQuery: TFDQuery; protected property DB: TWKConnection read FDB; property Query: TFDQuery read FQuery; public ...
unit Posix.ffmpeg.libavutil.sha512; (* * Copyright (C) 2007 Michael Niedermayer <michaelni@gmx.at> * Copyright (C) 2013 James Almer <jamrial@gmail.com> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * Lic...
unit Xmpp.extensions.Compress; interface uses Element,XmppUri; type TCompress=class(TElement) const TagName='compress'; private function FGetMethod:string; procedure FSetMethod(value:string); public constructor Create;override; constructor Create(md:string);overload; property Method:str...
unit uwebaboutstatus; {$mode delphi} interface uses Classes, SysUtils, Ultibo, Platform, HTTP, webstatus; type TWebAboutStatus = class (TWebStatusCustom) private FEffectiveIpAddress : String; FQemuHostIpPortDigit : String; FBranch : String; FBuildNumber:Cardinal; public function ...
unit guihelpers_chart; interface uses stringx, typex, classes, sysutils, debug, jsonhelpers, VclTee.TeeGDIPlus, VCLTee.TeEngine, VCLTee.Series, VCLTee.TeeProcs, VCLTee.Chart; procedure ExportChart(c: TChart; sFile: string); function FindSeriesYValueByX(c: TChart; xvalue: double; iSeries: ni): double;overload; ...
(****************************************************************************** * Copyright (C) 2023 Tomáš Horák * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includi...
unit MVars; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Bass, ShellAPI, IniFiles; type TimeTypes = (TPPlayed, TPAll, TPElse); TFFTData = array [0 .. 512] of Single; ArFileTypes = array [0 .. 16] of string; const WM_MYMESSAGE = WM_USER; ...
unit FormFactory.VCL; interface uses System.SysUtils, System.Classes, Vcl.StdCtrls, Vcl.Controls, Vcl.Forms, FormFactory.Intf; type IVCLForm = interface ['{8EC67205-31FD-4A40-B076-F572EF76CF0A}'] function AsForm: TForm; end; TVCLForm = class(TInterfacedObject, IForm, IVCLForm) strict private F...
unit DW.UIHelper.Android; {*******************************************************} { } { Kastri } { } { Delphi Worlds Cross-Platform Library ...
unit DAsmUtil; (* The main disassembler module of the DCU32INT utility by Alexei Hmelnov. ---------------------------------------------------------------------------- E-Mail: alex@monster.icc.ru http://monster.icc.ru/~alex/DCU/ ---------------------------------------------------------------------------- See th...
object StyleEditForm: TStyleEditForm Left = 0 Top = 0 BorderStyle = bsDialog Caption = 'Style editor' ClientHeight = 199 ClientWidth = 290 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'Tahoma' Font.Style = [] OldCreateOrd...
unit fftw_interface; {$Message '********************************Compiling fftw_interface'} { -------------------------------------------------------------- } { Delphi interface to the fftw library -- fftw Version 3.0.1. } { Note that this interface is incomplete. Additional function } { interface entries may be added i...
unit RSSParser; interface uses System.Generics.Collections, Xml.OmniXmlDom, Xml.XmlDom, Xml.XmlDoc, Xml.XmlIntf, Xml.XmlUtil; type TRSSItem = record Title: string; Link: string; Description: string; constructor Create(const ATitle, ALink, ADescription: string); end; TRSSParser = cl...
unit RDTPLightShowServerImplib; {GEN} {TYPE IMPLIB} {RQFILE RDTPLightShowRQs.txt} {END} interface uses RDTPLightShowServer, betterobject, classes, systemx, sharedobject, windows, messages, packethelpers, sysutils, stringx; type TLightshowServerSharedData = class(TSharedObject) public FileSync: TStringlist; ...
unit XLSAXWEditor; {- ******************************************************************************** ******* XLSReadWriteII V6.00 ******* ******* ******* ******* Copyright(C) 1999,2017 Lars Arvidsson, A...
unit unRegDenunciasSini; {------------------------------------------------------------------------------- Registro de Denuncias de Siniestro. Parámetros: Período Nro. de Libro = 6 -------------------------------------------------------------------------------} interface uses Windows, Messages, SysUtils, C...
{ this header file can be used to implement your own external devices for emu8086 - 8086 microprocessor emulator. supported input / output addresses: 0 to 65535 (0x0 - 0xFFFF) most recent version of emu8086 is required, check this url for the latest version: http://www.emu8086.com ...
unit MFMOCLinExch; interface {MFMOCLinExch defines the "Lin Exch Coef Unit[i]" layer and associated parameter and Parameterlist.} uses ANE_LayerUnit, SysUtils; type TMOCLinExchCoefParam = class(T_ANE_LayerParam) class Function ANE_ParamName : string ; override; function Units : string; override; end; ...
unit RunUnit; interface {RunUnit defines the form displayed when a user wishes to run a model. It also defines the PIE functions used to display the form.} uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ArgusFormUnit, Buttons, StdCtrls, ArgusDataEntry, AnePIE, ComCtrls, Program...
unit FloatBar; (* TFloatBar control by Jerry Dodge The Float Bar is a container which "floats" within a form, typically at the top, which can be collapsed and shown by a small arrow icon. The design is inspired by that of the TeamViewer remote software. NOTE: THIS PROJECT IS IN NO WAY FUNCTIONAL YET!!! *...
{$I-,N+} unit XLFile; interface uses SysUtils, Graphics; Const {LenData} LEN_BOF_BIFF5 = 6; LEN_EOF_BIFF5 = 0; LEN_DIM_BIFF5 = 10; LEN_RECORDHEADER = 4; {Tipos de Records para el BIFFn} RT5_CELL_EMPTY = 1; RT5_CELL_INT = 2; // Celdas con valores Enteros RT5_CELL_...
unit EditAgeRanges_Form; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ComCtrls, StdCtrls, DBCtrls, Buttons, Grids, DBGrids, CommCtrl, Math, ActnList, Mask, ImgList, ExtCtrls, Spin; type TAgeRange = record From : integer; Till : integer; TillRestricted :...
unit Posix.ffmpeg.libavutil.twofish; (* * An implementation of the TwoFish algorithm * Copyright (c) 2015 Supraja Meedinti * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free...
unit DW.Biometric.Android; {*******************************************************} { } { Kastri } { } { Delphi Worlds Cross-Platform Library ...
unit UnitGTranslate; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, cefvcl, ceflib, Clipbrd, cefgui, StdCtrls, ExtCtrls,UnitGoogleMaps,UnitProc, Buttons, ComCtrls; type TOptTranslateText = (optTranslateText, optTranslateHTML); TOptTranslateBrowser = (optT...
unit uClienteControl; interface uses uClienteModel, System.SysUtils, FireDAC.Comp.Client, uClienteDao, uEnumerado; type TClienteControl = class private FClienteModel: TClienteModel; public constructor Create; destructor Destroy; override; function Salvar: Boolean; function Obter: TFDQue...
unit DefaultToUtf8ProcessorUnit; interface uses DefaultToDefaultProcessorUnit, SysUtils; type TDefaultToUtf8Processor = class(TDefaultToDefaultProcessor) public function GetOutputEncoding: TEncoding; override; end; implementation { TDefaultToUtf8Processor } function TDefaultToUtf8Proc...
unit uCommon; interface uses System.SysUtils, System.Classes; type TCommon = class(TDataModule) private { Private declarations } public { Public declarations } class function GetDoubleFromIntAndFrac(aInt, aFrac: integer): double; class function GetLastInsertID(): integer; class function G...
unit uResource; interface uses windows, Classes, ComCtrls, SysUtils, Forms, Dialogs; function LoadPEResource(const PEFileName: string; TreeNode: TTreeNode; DispLevel: Boolean; DispAddress: Boolean): Boolean; implementation const IMAGE_RESOURCE_NAME_IS_STRING = $80000000; IMAGE_OFFSET_STRIP_HIGH = $...
unit RangeItemManager; // 各ドキュメントが作成した期間予定の管理クラス interface uses Classes, DateUtils, SysUtils, Constants, RangeItemReferenceList, RangeItem; type TRangeItemMonth = class private FItems: array [1..31] of TRangeItemReferenceList; function getRanges(index: integer): TRangeItemReferenceList;...
unit BrowserImpl; //////////////////////////////////////////////////////////////////////////////// // // Description£º Browser Implementation // Author£º lksoulman // Date£º 2017-12-26 // Comments£º // //////////////////////////////////////////////////////////////////////////////// interface uses Windo...
{***********UNITE************************************************* Auteur ...... : Tynévez Bernadette Créé le ...... : 17/07/2007 Modifié le ... : 07/08/2007 Description .. : Source TOF de la FICHE : AMARDDOTGLOBALE () Suite ........ : Mots clefs ... : TOF;AMARDDOTGLOBALE *********************************************...
unit MsgDlgEx; interface uses Dialogs, Forms; { TMsgDlgType mtWarning A message box containing a yellow exclamation point symbol. mtError A message box containing a red stop sign. mtInformation A message box containing a blue "i". mtConfirmation A message box containing a green question mark...
unit ACMWaveIn; interface uses msacm,Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, mmsystem; type TOnData = procedure(data:pointer;size:longint) of object; TACMWaveIn = class(TWinControl) private FOnData:TOnData; procedure WaveInCallback (var msg:TMessage);mes...
unit VersionableEntity; interface uses EntityWithId, TypesConsts; type TVersionableEntity = class(TEntityWithId) private FVersion: Integer; public class var EntityToken_Version: TEntityFieldNamesToken; constructor Create(AnId: TId; AVersion: Integer); overload; published ...
PROGRAM QueryStringParameter(INPUT, OUTPUT); USES DOS; VAR Value, SearchKey: STRING; Flag, StartPosition, EndPosition, LineLength: INTEGER; FUNCTION GetQueryStringParameter(Key: STRING): STRING; BEGIN {GetQueryStringParameter} Value := GetEnv('QUERY_STRING'); SearchKey := Key + '='; Flag :...
unit frmLoginU; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ExtCtrls; type TfrmLogin = class(TForm) Panel1: TPanel; Label3: TLabel; Label4: TLabel; edtUserID: TEdit; edtPasswd: TEdit; bbnConfirm: TBitBtn; bbnC...
unit MsgDemoMainForm; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, VSoft.Messaging, Vcl.StdCtrls, MsgFrame; type TForm2 = class(TForm) rx1: TMsgRecieverFrame; rx2: TMsgRecieverFrame; helloButt...
{***************************************************************************} { } { VSoft.Messaging } { } { ...
unit Vodopad.GuidFunctions; interface uses Data.DB, FIBQuery, System.SysUtils; function IsEqualGuidAsField(AField : TField; AGuid : TGUID):boolean; function FieldToGUID(AField : TField):TGUID; overload; function FieldToGUID(AField : TFIBXSQLVAR):TGUID;overload; function GuidIsNull(AGUID : TGUID) : boolean; impleme...
unit ColorSetting; interface uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, Buttons, ExtCtrls,IniFiles; type TColorProperty = class(TForm) OKBtn: TButton; CancelBtn: TButton; GroupBox1: TGroupBox; ScrollBarBright: TScrollBar; ScrollBarContrast: TScrollBar; ScrollBar...
{=============================================================================== RzStatus Unit Raize Components - Component Source Unit Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved. Components ------------------------------------------------------------------------------ TRzStatusP...
{*********************************************************} {* VPCONTACTBUTTONS.PAS 1.03 *} {*********************************************************} {* ***** BEGIN LICENSE BLOCK ***** *} {* Version: MPL 1.1 ...
unit RepositoriocaixaPedido; interface uses DB, Auditoria, Repositorio; type TRepositoriocaixaPedido = class(TRepositorio) protected function Get (Dataset :TDataSet) :TObject; overload; override; function GetNomeDaTabela :String; override; function GetIdent...
unit DW.Androidapi.JNI.DataCollection; {*******************************************************} { } { Kastri } { } { Delphi Worlds Cross-Platform Lib...
unit mbxlsform; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Excel2000, communit, Dialogs, DB, ADODB; type Txlsform = class(TForm) CON1: TADOConnection; procedure FormCreate(Sender: TObject); private function getEXCELAPP: EXCEL2000._APPLICATION; ...