text
stringlengths
14
6.51M
unit rwtxd; interface uses sysutils, dialogs, classes, opengl12, u_txdrecords; const GL_RGBA4 = $8056; GL_RGB4 = $804F; // savage S3 texture compression GL_COMPRESSED_RGB_S3TC_DXT1_EXT = $83F0; GL_COMPRESSED_RGBA_S3TC_DXT1_EXT = $83F1; // this one is rare, AVOID IT! GL_COMPRESSED_RGBA_S3T...
{*******************************************************} { } { NTS Aero UI Library } { Created by GooD-NTS ( good.nts@gmail.com ) } { http://ntscorp.ru/ Copyright(c) 2011 } { License: Mozilla Pu...
{******************************************************************************* Title: T2Ti ERP Fenix Description: Model relacionado à tabela [COLABORADOR] The MIT License Copyright: Copyright (C) 2020 T2Ti.COM Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associ...
unit ToolEditor; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ComCtrls, RegIntf; type PNodeData = ^TNodeData; TNodeData = record Key: String; Caption: String; Hint: string; end; Tfrm_ToolEditor = class(TForm) tv_Too...
unit drvedit; interface procedure Register; implementation uses classes,DesignEditors,DesignIntf,sysutils,vfw,videocap; // Property Editor for driver selection in Video-Cap type TDrivereditor= class (TPropertyEditor) function GetAttributes:TPropertyAttributes;override; procedure GetValues(Proc: TGetStrPro...
// ---------------------------------------------------------------------------- // Unit : PxCSVTest.pas - a part of PxLib test suite // Author : Matthias Hryniszak // Date : 2006-02-13 // Version : 1.0 // Description : // Changes log : 2006-02-13 - initial version // --------------------...
(* Math Version 0.1 -- Access and Use of VBE 2.0 graphics modes Copyright 1995-1997 by Fernando J.A. Silva ( aka ^Magico^ ) ...,ooooooooo...... .o88888888888888888...
{******************************************************************************* Title: T2Ti ERP Description: VO relacionado à tabela [CONTABIL_PARAMETRO] The MIT License ...
{$include kode.inc} unit kode_widget_fft; //---------------------------------------------------------------------- interface //---------------------------------------------------------------------- uses kode_canvas, kode_color, kode_flags, kode_rect, kode_widget; type KWaveformMarker = record pos ...
unit iPub.Rtl.Refit; interface {$SCOPEDENUMS ON} uses { Delphi } System.SysUtils, System.Rtti, System.TypInfo, System.JSON.Serializers, System.Generics.Collections, System.NetEncoding, System.Net.HttpClientComponent; type // Exceptions EipRestService = class(Exception); EipRestServiceStatusCod...
unit Data.Entities.OrderDetails; interface uses Data.Entities.Item, Data.Entities.Order, Aurelius.Mapping.Attributes; type [Entity] [Automapping] [Table('OrderDetails')] TOrderDetails = class private FId: Integer; FOrderId: Integer; [Assotiation] FOrder: TOrder; ...
{******************************************************************************* Title: T2Ti ERP Description: VO relacionado à tabela [PESSOA_FISICA] The MIT License ...
unit aCustomOPCTCPSource; interface uses SysUtils, Classes, {$IFDEF MSWINDOWS} //Messages, Windows, {$ENDIF} DateUtils, //aCustomOPCSource, aOPCSource, IdTCPClient, IdGlobal, IdException, SyncObjs , IdStackConsts , IdIOHandler, IdIOHandlerSocket, IdSSLOpenSSL , IdCompressionIntercept , aDCI...
{ 绘制方式: dsPaste: 直接粘贴,图像不拉伸 dsStretchByVertical:当图像宽度 > 目标宽度时,以图片中间一列像素宽度作为拉伸目标,左右不拉伸,图像上下不拉伸 dsStretchByHorizontal: 当图像高度 > 目标高度时,以图片中间一行像素宽度作为拉伸目标,上下不拉伸 dsStretchByVH:当图像宽度 > 目标宽度时 或 图像高度 > 目标高度 时,取一行或一列来位伸直译目标对应位置 dsStretchAll: 图像随机目标大小变动而整体变动 dsDrawByInfo: 根据 TDrawInfo 的信息来绘制相应的外观 } unit uJxdGpStyle; interface us...
(****************************************************************************** Version 0.3, 2008-04-22 Copyright (C) 2002-2007, Marco Ferrante. 2002-2006, CSITA - UniversitÓ di Genova (IT). 2007-2008, DISI - UniversitÓ di Genova (IT). http://www.disi.unige.it/person/FerranteM/delphiopenssl/ Require libea...
program Exercicio_6; { Informações: veículo: 12 km/l distancia: tempo * velocidade } const km_l = 12; var c_gasto : real; tempo, velocidade, distancia : integer; { prefixos: F : função/procedure } procedure Fdistancia(); begin ...
// // // Author: David Verespey // Date: 10/06/97 // // Simple registry component // Adds an entry into the HKEY_CURRENT_USER tree // under the heading software/NUMMI. It then uses the Application and // section properties to set the next two levels. // // All data is entered in string format and conv...
unit UMyCloudDataInfo; interface uses Generics.Collections, UDataSetInfo, UMyUtil; type {$Region ' 数据结构 ' } // 数据结构 TCloudPcBackupInfo = class public BackupPath : string; IsFile : boolean; public FileCount : integer; ItemSize : int64; public LastBackupTime : TDateTime; public ...
unit gameobjectwithhealth; {$mode objfpc}{$H+} interface uses Classes, SysUtils, renderobject, math, gameobject, healthbar, gl, GLext; type TGameObjectWithHealth=class(TGameObject) private fHealth: integer; fmaxhealth: integer; healthbar: THealthbar; fShowHealthbar: boolean; ...
unit UConfigGeral; interface uses UAttributes; const IDConfig_Transferir = $00001; IDConfig_Importar = $00002; type [TDisplayLabelAttribute('>>> TConfigGeral <<<')] TConfigGeral = class protected function GetValor(Index: Integer): Variant; procedure SetValor(Index: Integer; Value: Variant); p...
unit dglshader; {$mode delphi} { code re-formatting by tor.helge.skei } //---------------------------------------------------------------------- interface //---------------------------------------------------------------------- uses DGLOpenGl, Classes; // TStringList type TMatrix = array [0..3,0..3] of glFl...
unit IDObjectBaseActions; interface uses BaseActions, BaseObjects, Classes, Controls, SysUtils, CommonIDObjectEditForm, Windows; type TIDObjectBaseLoadAction = class(TBaseAction) end; TIDObjectEditAction = class(TBaseAction) private FfrmIDObjectEditClass: TfrmIDObjectEditClass; protected Ffr...
unit uAbastecimento; interface uses System.SysUtils, uAtributos; type [TTabela('ABASTECIMENTO')] TAbastecimento = class private FID: Integer; FBomba: Integer; FQuantidade: double; FData: String; FHora: String; FTotal: double; FValorImposto: double; public [TCampo('ID', 0, t...
unit Grijjy.MongoDB; {< Main interface to MongoDB } {$INCLUDE 'Grijjy.inc'} interface uses System.SysUtils, System.Generics.Collections, Grijjy.Bson, Grijjy.Bson.IO, Grijjy.MongoDB.Protocol, Grijjy.MongoDB.Queries; type { MongoDB validation types https://docs.mongodb.com/manual/reference/command/...
{Ä Fido Pascal Conference ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ PASCAL Ä Msg : 115 of 150 From : Sean Palmer 1:104/123.0 08 Apr 93 15:35 To : All Subj : G:Rodent unit ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ} { Rodent unit v1.1...
unit frmD3DHookSnapshotConfigUnit; {$mode delphi} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, EditBtn, StdCtrls, ExtCtrls, CEFuncProc, registry, commonTypeDefs, betterControls; type { TfrmD3DHookSnapshotConfig } TfrmD3DHookSnapshotConfig = class(TForm) ...
unit TextEditor.CodeFolding.Colors; interface uses System.Classes, Vcl.Graphics, TextEditor.Consts, TextEditor.Types; type TTextEditorCodeFoldingColors = class(TPersistent) strict private FActiveLineBackground: TColor; FActiveLineBackgroundUnfocused: TColor; FBackground: TColor; FCollapsedLine...
{****************************************************************************} { @@Copyright:SUNTOGETHER } { @@Summary:数据访问接口定义. } { @@Description: } { @@Auth...
unit uClasses; interface type TIdadeMinima = class(TCustomAttribute) private FIdadeMinima: Byte; public constructor Create(AIdadeMinima: Byte); function IsIdadeMaior(AIdade: Byte): Boolean; property IdadeMinima: Byte read FIdadeMinima; end; TPesoMaximo = class(TCustomAttribute) private FPesoMaxim...
unit BaseController; interface uses IIConsts, System.SysUtils, System.Classes, Generics.Collections, gmClientDataset, Data.DB, EventBus, EventBus.Attributes, EventBus.Commons; type TocTask = (ocTask,ocNoTask); TdmBaseController = class(TDataModule) private { Private declarations } FOwnerControlle...
unit BaseContainedFrame; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls; type TfrmContained = class(TFrame) pnlMain: TPanel; procedure pnlMainMouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); private...
unit Model.BancaVA; interface type TBancaVA = class private var FId: Integer; FCodigo: Integer; FDistribuidor: Integer; FNome: String; FCEP: String; FEndereco: String; FComplemento: String; FBairro: String; FCidade: String; FEstado: String; ...
unit TrustedRoots; interface type HCkTrustedRoots = Pointer; HCkCert = Pointer; HCkTask = Pointer; HCkJavaKeyStore = Pointer; HCkString = Pointer; function CkTrustedRoots_Create: HCkTrustedRoots; stdcall; procedure CkTrustedRoots_Dispose(handle: HCkTrustedRoots); stdcall; procedure CkTrustedRoots_getDebugLogFilePa...
unit FMain; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Memo.Types, FMX.ScrollBox, FMX.Memo, FMX.Controls.Presentation, FMX.StdCtrls, FMX.Layouts; type TFormMain = class(TForm) LayoutTop:...
{********************************************************} { } { Zeos Database Objects } { Delphi interface to gds32.dll } { } { Copyright (c...
unit uInquLeave; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Menus, ActnList, DB, ADODB, ComCtrls, ExtCtrls, GridsEh, DBGrids, DBGridEh, StdCtrls, RzPanel, RzButton, uInquBase; type TfrmInquLeave = class(TfrmInquBase) btnUnLeave: TRzToolBu...
unit LuaGraphic; {$mode delphi} interface uses Classes, SysUtils, Graphics,lua, lualib, lauxlib,LuaHandler; procedure initializeLuaGraphic; procedure graphic_addMetaData(L: PLua_state; metatable: integer; userdata: integer ); implementation uses luaclass, LuaObject; function graphic_getWidth(L:...
{ Generate report of conflicts between selected plugins } unit UserScript; var CurrentPlugin: string; slWin, slLose, slWarn: TStringList; procedure ReportPlugin; var i: integer; begin if CurrentPlugin = '' then Exit; AddMessage(StringOfChar('-', 16) + ' ' + CurrentPlugin + ' ' + StringOfChar('-', 16)); ...
unit MVCBr.Observable; { *************************************************************************** } { } { MVCBr é o resultado de esforços de um grupo } { } { Copyright (C) 2017 MVCBr } { } { amarildo lacerda } { http://www.tireideletra.com.br } { } { } { *************************************************************...
Program game_of_life; {$mode objfpc} Uses Math, sysutils, Crt, Classes; (* * Code disponble … l'adresse : https://github.com/LavigneTheo/tp_algo/tree/master/game_of_life *) const width = 80; height = 15; (* * Noms des fichiers texte contenant la sauvegarde et le canon *) SAVE_FILE =...
unit WFileIcon; interface uses SysUtils, Classes, Controls, ExtCtrls, Windows, PNGImage, Graphics, StdCtrls, Types, WComponent, FileSystemUtils, Messages, Dialogs; type TWFileIcon = class(TWComponent) private { Private declarations } pFilePath: String; pFileIcon: TIcon; pOverl...
unit Comparers; interface function WellNumAndAreaCompare(Item1, Item2: Pointer): Integer; function CompareSlottings(Item1, Item2: Pointer): integer; function CoreTransferTaskCompare(Item1, Item2: Pointer): integer; implementation uses Well, SysUtils, ClientCommon, Math, Slotting, CoreTransfer, Types; function...
//******************************************************* // // NLDDataListEditor // Versie 0.5 // // Copyright (c) 2002 Aikema.nl // // NLDDataListEditor is een DB-aware variant van // TValueListEditor. // // Installatie // ----------- // Installeer component via Delphi IDE, Menu Component -> //...
unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls, Data.DB, Data.Win.ADODB, System.Hash, Vcl.Buttons; type TForm1 = class(TForm) ADOConnection1: TADOConnection; A...
unit untDeviceListenThread; {$mode objfpc}{$H+} interface uses Classes, SysUtils, sqldb, untParmakIzi, untGingyApiDefine, Windows, untStruct, untOnMatchedEventArgs, untOnNotMatchedEventArgs, Dialogs, untProgram, untUtils, untAdminTools; type TEventHandler = procedure of object; type { TD...
(*!------------------------------------------------------------ * [[APP_NAME]] ([[APP_URL]]) * * @link [[APP_REPOSITORY_URL]] * @copyright Copyright (c) [[COPYRIGHT_YEAR]] [[COPYRIGHT_HOLDER]] * @license [[LICENSE_URL]] ([[LICENSE]]) *------------------------------------------------------------- *) unit Su...
{#Author fmarakasov@ugtu.net} unit TreeNodeFramePool; interface uses Forms, Classes, TreeNodeFrame, Contnrs, DBTV; type /// Класс, поддерживающий создание фреймов на основе их типа. /// TFramesPool гарантирует, что будет создан только один экземпляр фрейма каждого из типов /// Доступ к объектам осущест...
unit LogEntityFace; {$mode objfpc}{$H+} {$INTERFACES CORBA} interface type TStandardLogTag = ( logTagStartup, logTagDebug, logTagWarning, logTagError, logTagEnd ); { ILog } ILog = interface procedure Write(const aText: string); procedure Write(const aTag: string; const aText:...
unit DTT_Rocket; // Gestion des missiles // -------------------- interface uses OpenGL12, TNT_Object, TNT_Vector, TNT_ParticleSystem, DTT_RocketTrail, DTT_Truck, DTT_Sound; type TRocket = class(TObj) private Owner: TTruck; Trail: TParticleSystem; public constructor New(Truck: ...
unit UCliente; interface uses Sysutils, strutils,DB, DBClient, UDAOParametro; type TCliente = class private FRutaScanner : string; {RUTA LOCAL DONDE SE DEJAN LOS ARCHIVOS DIGITALIZADOS} FRutaNovedad : string; {RUTA LOCAL DONDE EL PUBLICADOR DEJA LAS IMAGENES QUE NO SE PROCESARON...
unit FDishSelling; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Storage, MDIChildForm, DBCtrls, ExtCtrls, DB, ADODB, Grids, DBGrids, DBNavigatorEx, DBGridEx, StdCtrls, DBFilter, GuiUtils; const WM_UPDATE_SOLD_COMPS = WM_USER + 1; // set to T...
(* * Copyright (c) 2008-2009, Ciobanu Alexandru * 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 l...
unit uClasseMovimentacao; interface uses uConn, Data.SqlExpr, Data.DB,System.classes,StrUtils; Type TMovimento = class private // A varialve Conex�o receber a class da Unit uConn Conexao: TConn; // propriendades do usuario FId : String; FDescri : string; FIdCon : String; FValor...
{#Author fmarakasov@ugtu.net} unit TreeNodeFrame; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, DBTV, CoreInterfaces, ActnList, ExtCtrls, StdCtrls, ImgList; type TTreeNodeBaseFrameClass = class of TTreeNodeBaseFrame; TTreeNodeBaseFrame = class(TFrame, IA...
{ Un centro de deportes quiere procesar la información de sus clientes y de los 4 tipos de actividades que ofrece: 1 (Musculación), 2 (Spinning), 3 (Cross Fit) y 4 (Libre). Para ello, se debe leer y guardar el precio mensual de cada actividad. Además, se debe leer para cada cliente el apellido y nombre, DNI, edad ...
{ Created by BGRA Controls Team Dibo, Circular, lainz (007) and contributors. For detailed information see readme.txt Site: https://sourceforge.net/p/bgra-controls/ Wiki: http://wiki.lazarus.freepascal.org/BGRAControls Forum: http://forum.lazarus.freepascal.org/index.php/board,46.0.html This li...
unit DGeral; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, DFarmaceuticos, DPacientes, DMedicamentos, DServicos; type TDmGeral = class(TDataModule) procedure DmGeralDestroy(Sender: TObject); private FDmlFarmaceuticos: TDmFarmaceuticos; FDmlP...
unit RecordsTestForm; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls, FMX.Layouts, FMX.Memo, FMX.Controls.Presentation, FMX.ScrollBox, FMX.Memo.Types; type TForm1 = class(T...
unit HTTPAppRequestHandler; interface uses HTTPApp, AbstractHTTPRequestHandler, Classes; type THTTPRequestInfo = class(TRequestInfo) private Request : TWebRequest; Response : TWebResponse; protected function GetQueryFields: TStrings; override; procedure SetContent(v : string); override; functio...
unit LoggerFile; {$mode objfpc}{$H+} interface uses Classes, SysUtils, syncobjs, LoggerItf, LogConst; type TMessageQueue = class; { TLoggerFileThread } TLoggerFileThread = class(TThread) private FLogFile : TFileStream; FLogQueue : TMessageQueue; FFilePath : St...
unit Visao.ConfigBanco; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Controle.FormConfigBanco, Bd.DmConfig; type TFrmConfigBanco = class(TForm) GroupBox1: TGroupBox; edtServidor: TEd...
{ ################################################################### } { ## ## } { ## ## ##### ##### ## ## ## ## ## ## ## ## ## } { ## ## ### ## ## ## # ## ### ## ## ## ## ## ## } { ...
unit vkcmobserver; {$mode objfpc}{$H+} interface uses Classes, SysUtils, fgl; type TVKCMObserver = class; TVKCMObserversList = specialize TFPGList<TVKCMObserver>; { TVKCMObservable } TVKCMObservable = class private FObservers: TVKCMObserversList; procedure SetObservers(AValue: TVKCMObservers...
{*****************************************************************************************************************************************************} { } { ...
unit Main; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, uEEPROM, Vcl.ComCtrls, Vcl.ToolWin, Vcl.StdCtrls, System.ImageList, Vcl.ImgList, Vcl.Samples.Spin, System.Actions, Vcl.ActnList, Vcl.ExtCtrls; typ...
unit oca.space; interface uses sysutils; const NULLIDX = -1; type idxRange = NULLIDX..MAXINT; tOcaSpace = record cell : integer; next : idxRange; end; tControlRecord = record first : idxRange; ...
{@unit RLRichFilter - Implementação do filtro para geração de arquivos no formato RichText. } unit RLRichFilter; interface uses SysUtils, Classes, Windows, Types, Graphics, RLMetaVCL, RLMetaFile, RLFilters, RLTypes, RLConsts, RLUtils; type TRLRichFilterImageFormat = (ifBitmap, ifJPeg, ifOrigi...
unit KiEdit; {$mode objfpc}{$H+} interface uses Classes, Controls, SysUtils, Graphics, KiBorder, KiFill, BGRABitmap, BGRABitmapTypes, BCTools, LMessages, LResources; type TEditType = (etText, etNumber, etDateTime); { TKiEdit } TKiEdit = class(TCustomControl) private FEditType: TEditType; ...
unit uGnGeneral; interface uses SysUtils, DB, Windows, Forms, Types, Classes, Menus, DateUtils, ShellAPI; type TGnDataSetHelper = class helper for TDataSet strict private function GetFieldAsString(const FieldName: string): string; procedure SetFieldAsString(const FieldName, FieldValue: string); fun...
PROGRAM Cheat_File; TYPE lore = record name : string[17]; sex : (male,female); class : byte; strength : byte; mental : byte; concentration : byte; endurance : byte; resistance : byte; agility : byte; ...
unit UCertificadoPFX; interface uses Winapi.Windows, System.SysUtils, System.Classes, synautil, synacode, ACBrDFeSSL, ACBrBase, ACBrDFe, ACBrNFe; type TCertificadoPFX = class(TObject) private FACBrNFe: TACBrNFe; FCNPJ: String; FDataVencimento: TDateTime; FArquivo: String; FNumeroSerie...
unit f10; // menu pengembalian buku, load file peminjaman interface uses typelist; procedure penambahan_buku(penambahanbuku: List_Buku); implementation var i, count, i_id_buku, i_jumlah_tambah : integer; convert : string; procedure penambahan_buku(penambahanbuku: List_Buku); begin...
{***************************************************************************} { } { DMemCached - Copyright (C) 2014 - Víctor de Souza Faria } { } { victo...
unit MonthYearComboBox; interface uses Windows, Messages, SysUtils, Classes, Controls, StdCtrls; type TDateCollection = class (TCollection); TDateCollectionItem = class (TCollectionItem) public FDate: TDate; end; TMonthYearComboBox = class(TComboBox) private FDates: TDateCollect...
{==============================================================================| | MicroCoin | | Copyright (c) 2018 MicroCoin Developers | |=========================================================================...
unit uSimpleAttributes; interface type // Defines a simple attribute TSimpleAttribute = class(TCustomAttribute) private FNumber: integer; public constructor Create(aNumber: integer); property Number: integer read FNumber; end; [TSimpleAttribute(42)] //Attribute on a class TSimpleClass = class end; TAttribu...
unit TextEditor.MatchingPairs; interface uses System.Classes, TextEditor.MatchingPair.Colors, TextEditor.Types; type TTextEditorMatchingPairs = class(TPersistent) strict private FActive: Boolean; FAutoComplete: Boolean; FColors: TTextEditorMatchingPairColors; FOptions: TTextEditorMatchingPairO...
unit rcObject; {$mode objfpc}{$H+} interface uses Classes, SysUtils; type { TRCObject } TRCObject = class(TObject) private ID1: Integer; Name1: string; public property ID: Integer read ID1; property Name: string read Name1; constructor Create(AName: string; AID: Integer); virtual; ...
{ Move selected temporary references into another worldspace with provided offset values Optionally copy and move persistent references that belong to the selected cells by coordinates "only this plugin" option controls which persistent references to move - unchecked: refs in master file will be processed, co...
unit unMain; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Memo.Types, FMX.Controls.Presentation, FMX.ScrollBox, FMX.Memo, FMX.Platform, {$IFDEF ANDROID} FMX.PushNotification.Android, {$END...
{ ORM Brasil é um ORM simples e descomplicado para quem utiliza Delphi Copyright (c) 2016, Isaque Pinheiro All rights reserved. GNU Lesser General Public License Versão 3, 29 de junho de 2007 Copyright (C) 2007 Free S...
{Implementación de Listas con Arreglos (Implementación en Memoria Continua).} {Maximiliano Sosa; Ricardo Quesada; Gonzalo J. García} unit Ulistas1; interface uses Upilas; const MaxLista = 20; type TipoLista = record tope: 0..MaxLista; actual: 0..MaxLista + 1; elementos: array[1..MaxLista] of ...
 // https://wiki.freepascal.org/ // https://www.tutorialspoint.com/pascal/ // --- // Syntax // https://stackoverflow.com/questions/28221394/proper-structure-syntax-for-delphi-pascal-if-then-begin-end-and // Migrate files from old directory // https://stackoverflow.com/questions/2000296/inno-setup-how-to-aut...
unit NewUser_u; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, datModule_u; type TNewUser = class(TForm) Label1: TLabel; edtUsername: TEdit; edtPassword: TEdit; edtCPassword: TEdit; Label2: TLabel; Label3: TLabel; ...
unit httpstream; interface uses SysUtils, Classes, Windows, synautil, blcksock, main; const // CONFIGURATION BUFFPACKET = 1024 * 1; BUFFPACKETCOUNT = 150; // 50 extra buffers xD BUFFSIZETOTAL = 1024 * BUFFPACKETCOUNT; BUFFRESTORE = 50; BUFFPRE = 60; type THTTPSTREAM = ...
PROGRAM Jeu_oie; USES crt; //ALGO: JeuDeOIe //BUT : Créer un jeu de l'oie dans lequel le joueur entre les résultats de son dé, le joueur gagne lorsqu'il atteint la case 66, // à l'exception de la case 63 qaund le joueur tombe dur une case multiple de 9, le joueur avance à nouveau de même nomb res de cases, // enfin...
unit Datamodule; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, Db, DBTables, Menus; type TdataMain = class(TDataModule) tablAuthor: TTable; tablAuthorAuthor_ID: TAutoIncField; tablAuthorAuthor_Name: TStringField; tablArticle: TTable; ...
unit AbraWebAPI_demo; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdSMTP, IdMessage, IdMessageParts, IdAttachment, IdEMailAddress,...
unit UFastKeysSS; interface uses Windows, Classes, SysUtils, UFastkeys, Data.DBXJSON, System.JSON; type TFastKeyPairSS = record Key: string; Value: string; end; TFastKeyPairsSS = array of TFastKeyPairSS; TFastKeyValuesSS = class(TFastKeyValuesBase) private FFastKeyPairs: TFastKeyPairsSS; ...
unit AutoUpdate; interface uses FMX.Controls; type TAutoUpdate = record private FControl: TControl; // Reference public constructor Create(const AControl: TControl); public class operator Initialize(out ADest: TAutoUpdate); class operator Finalize(var ADest: TAutoUpdate); class operator...
Unit Dictnary; Interface Uses Declare; FUNCTION ctr( pntr: TypePointer): CharType; FUNCTION parent( pntr: TypePointer): TypePointer; FUNCTION count( pntr: TypePointer): ChildrenRange; FUNCTION child( pntr: TypePointer; c : CharType): TypePointer; PROCEDURE addleaf( parpntr,pntr : TypePointer; c : CharType) ; PROCE...
unit PLAT_R9SystemFactory; interface uses Classes,PLAT_R9SubSystemIntf; type TR9SystemFactory=class private FItems:TStringList; constructor Create; Destructor Destory; public class Function GetInstance:TR9SystemFactory; function GetSubSysByName(Name:String;FileName:String):IR9SubSyste...
unit ProcessList; {$mode delphi} interface uses {$ifdef windows}jwawindows, windows, {$endif} {$ifdef darwin}macport,{$endif} cefuncproc, LazUTF8, Classes, SysUtils{$ifndef JNI}, StdCtrls{$endif}, ProcessHandlerUnit {$ifdef JNI},unixporthelper{$endif},newkernelhandler; {$ifndef jni} procedure G...
unit uPrincipal; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, jpeg, ExtCtrls, StdCtrls, Menus, XPMan, ComCtrls; type TformPrincipal = class(TForm) MainMenu1: TMainMenu; Arquivo1: TMenuItem; Encerrar1: TMenuItem; Salvarnovasconfiguraes1: TMen...
{ This software is Copyright (c) 2015 by Doddy Hackman. This is free software, licensed under: The Artistic License 2.0 The Artistic License Preamble This license establishes the terms under which a given free software Package may be copied, modified, distributed, and/or redistributed. The intent is th...
{ Copyright (C) <2005> <Andrew Haines> chmcmd.pas This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. Thi...
{******************************************************************************* 作者: dmzn@163.com 2011-6-7 描述: 物品管理 *******************************************************************************} unit UFormGoods; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,...
{ ******************************************************************************* Title: T2Ti ERP Description: Janela Cadastro de Escalas para o Ponto Eletrônico The MIT License Copyright: Copyright (C) 2016 T2Ti.COM Permission is hereby granted, free of charge, to any person obtaining a copy of this software and as...
unit iaRTL.Cloud.AmazonRegions; interface type TAmazonRegion = record Code:string; DisplayName:string; end; const AMAZON_REGION_US_EAST1 = 'us-east-1'; AMAZON_REGION_US_EAST2 = 'us-east-2'; AMAZON_REGION_US_WEST1 = 'us-west-1'; AMAZON_REGION_US_WEST2 = 'us-west-2'; AMAZON_R...
unit DelphiAST.Classes; {$IFDEF FPC}{$MODE DELPHI}{$ENDIF} interface uses SysUtils, Generics.Collections, SimpleParser.Lexer.Types, DelphiAST.Consts; type EParserException = class(Exception) strict private FFileName: string; FLine, FCol: Integer; public constructor Create(Line, Col: Integer; con...