text stringlengths 14 6.51M |
|---|
unit PixelShader;
interface
uses
typex, stringx, fastbitmap, geometry, colorblending, betterobject, pxl.canvas, pxl.types, system.uitypes, numbers;
type
TPS_IN = record
InCol: TVector4;
InTex: TPOint2;
InPos: TVector4;
InRef: TPOint2;
end;
TPixelShader = class(TBetterObject)
strict private... |
unit SQLEditorFM;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, SynHighlighterSQL,
SynEdit, sqldb, SQLEditor;
type
{ TSQLEditorForm }
TSQLEditorForm = class(TForm, ISQLEditor)
SynEdit1: TSynEdit;
SynSQLSyn1: TSynSQLSyn;
procedure FormCreate(Sender: T... |
unit Trig_Fns;
{supplements built in Sin, Cos, and Arctan. All trig. functions operate
on arguments in type "Radians" -- use conversion routines to covert from
or to type "Degrees"}
interface
uses Win_Ops;
type
Radians = extended;
Degrees = extended;
function DtoR(const Angle: degrees): radians... |
{===============================================================================
RzLine Unit
Raize Components - Component Source Unit
Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved.
Components
------------------------------------------------------------------------------
TRzLine
... |
unit FreeType;
{$include opts.inc}
{$ifdef Debug}
{-$define DebugPerformance}
{$endif}
interface
uses
ctypes, USystem, UClasses, UMath, Utils, Streams, DynamicLoader, U_GL, GLBase
{$ifdef Debug}, ULog {$endif};
type
RasterizationOptions = object
baseColor, outlineColor: Vec4;
outlineSize: flo... |
unit uModerators;
interface
uses classes, usocialclasses, generics.Collections, usocketcommands, uModerator, uHTTPRequest;
procedure moderators_initialization;
// procedure init;
function BoolToStr(const value: boolean): string;
var
socVK: tsocialapp;
tx: integer;
strings: tstrings;
type
tmoderators = clas... |
{===============================================================================
RzCaptionEditor Unit
Raize Components - Design Editor Source Unit
Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved.
Design Editors
----------------------------------------------------------------------------... |
(**
This module contains a class to monitor profiling information in a tree of
profiles.
@Version 1.0
@Date 29 Apr 2018
@Author David Hoyle
**)
Unit Profiler;
Interface
Uses
{$IFNDEF CONSOLE}
Forms,
StdCtrls,
{$ENDIF}
Classes,
Contnrs;
{$IFDEF PROFILECODE}
Type
(** This class represent... |
{*******************************************************}
{ }
{ Vladimir Gaitanoff Delphi VCL Library }
{ Explorer library: explorer navigator }
{ }
{ Copyright (c) 1... |
unit UNota;
interface
type
TNotas = class
private
FNota1: Integer;
FNota2: Integer;
FNota3: Integer;
FNota4: Integer;
procedure SetNota1(const Value: Integer);
procedure SetNota2(const Value: Integer);
procedure SetNota3(const Value: Integer);
procedure SetNota4(const Value: Integ... |
unit ImportUnit;
// Save TD32 information and used Turbo debugger to debug.
// Click F3 and enter the name of your dll.
// After Argus ONE has started attach to ArgusONE.dll.
// From the File menu change to the directory with the source code of the PIE.
// Click F3 and double click on your dll
// Click F3 again and lo... |
unit DW.OSDevice.Android;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
{
* PROGRAM: UDR samples.
* MODULE: PlanFunc.pas
* DESCRIPTION: A sample work with blob in extenal function.
*
* The contents of this file are subject to the Initial
* Developer's Public License Version 1.0 (the "License");
* you may not use this file except in compliance with the
* License. You may obtain... |
unit Posix.ffmpeg.libavutil.md5;
(*
* copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
*
* 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 Software Foundation; either... |
////////////////////////////////////////////////////////////////////////////
// PaxCompiler
// Site: http://www.paxcompiler.com
// Author: Alexander Baranovsky (paxscript@gmail.com)
// ========================================================================
// Copyright (c) Alexander Baranovsky, 2006-2014. All rig... |
unit FmxUtils;
interface
uses SysUtils, Windows, Classes, Consts;
type
EInvalidDest = class(EStreamError);
EFCantMove = class(EStreamError);
function MyCopyFile(const FileName, DestName: string):boolean;
function MoveFile(const FileName, DestName: string):boolean;
function GetFileSize... |
unit frameBuscaOS;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons,
Vcl.Mask, RxToolEdit, RxCurrEdit, OrdemServico;
type
TBuscaOS = class(TFrame)
StaticText1: TStaticText;
e... |
unit fast_xml_writer;
interface
uses
SysUtils, XMLDoc, XMLIntf;
type
TFastXmlWriter = class
private
tag_stack: array of string; // aktueller tag-stack
has_childs: boolean; // hat der tag kind-tags?
can_attr: boolean; // können noch attribute gesetzt werden?
xml: string;
proc... |
unit DW.Androidapi.JNI.DWNetworkCallback;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform ... |
unit ioLog;
(**********************************************************************
File name: iolog.pas
This file is part of: tt3d
LICENSE
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a... |
//////////////////////////////////////////////////////////////////////////////
//
// Unit: zlib_gzipstream
//
// Description: gzip stream
// This file is a part of the zlib data
// compression library for delphi
// (re-implementation of zlib... |
unit Xmpp.Iq.DiscoItem;
interface
uses
XmppUri,Element,Jid;
type
TDiscoItem=class(TElement)
const
TagName='item';
private
function FGetJid:TJID;
procedure FSetJid(value:TJID);
function FGetDiscoName:string;
procedure FSetDiscoName(value:string);
function FGetNode:string;
procedure F... |
unit Level1ParseComments;
interface
uses
BaseParser;
type
TLevel1ParseComments = class(TBaseParser)
private
procedure FindCommentStart;
function ReadComment: AnsiString;
protected
function DoExecute: AnsiString; override;
end;
implementation
uses
ElementParseComment;
{... |
program prog01;
{ Déclarations }
const
PI = 3.14159265;
QPM2 = 6; { 6 m²/Kg }
var
n : integer;
l, h : real;
sp, qp : real;
begin
{ Entrée des données }
Write('Largeur de la porte : ');
Readln(l);
Write('Hauteur de la porte : ');
Readln(h);
Write('Donner le nbre de portes : ');
Readln(n);
{ ... |
unit FMX.jsAuthForm;
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.Objects, FMX.Controls.Presentation, FMX.Layouts, FMX.WebBrowser,
FMX.Effects;
type
TFrmJsAuth = class(TForm)
... |
unit Xmpp.Iq.AgentIq;
interface
uses
Element,XmppUri,Jid,Classes,xmpp.client.iq;
type
TAgent=class(TElement)
const
TagName='agent';
private
function FGetJid:TJID;
procedure FSetJid(value:TJID);
function FGetAgentName:string;
procedure FSetAgentName(value:string);
function FGetService:stri... |
// Project: FTEditor (Fielded Text Editor)
// Licence: Public Domain
// Web Home Page: http://www.xilytix.com/FieldedTextEditor.html
// Initial Developer: Paul Klink (http://paul.klink.id.au)
unit Xilytix.FTEditor.LayoutableFrame;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, C... |
unit DataSetInformationUnit;
interface
uses
Data.DB;
function DataSetInfo(const DataSet: TDataSet): string;
function FieldDefsInfo(const DataSet: TDataSet): string;
function FieldsInfo(const DataSet: TDataSet): string;
implementation
uses
System.SysUtils,
Xml.XMLConst;
type
TStringBuilde... |
unit DataSource.TextFile;
interface
uses
System.Classes,
DataSource.Intf;
type
TFileDataSource = class(TInterfacedObject, IDataSource)
strict private
FFileName: string;
FReader: TStreamReader;
public
constructor Create(const fileName: string);
destructor Destroy; override;
procedure Clo... |
unit Urastreador;
{ / )| |( \
/ / | Charles Silva | \ \
_( (_ | _ [www.charlessilva.com.br] _ | _) )_
(((\ \)|_/ )___________________________( \_|(/ /)))
(\\\\ \_/ / \ \_/ ////)
\ / \ ... |
program project1;
{$mode objfpc}{$H+}
uses {$IFDEF UNIX} {$IFDEF UseCThreads}
cthreads, {$ENDIF} {$ENDIF}
Classes,
SysUtils,
CustApp { you can add units after this };
type
{ TMyApplication }
TMyApplication = class(TCustomApplication)
protected
procedure DoRun; override;
public
... |
unit DW.JSON;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library }
{ ... |
{*******************************************************************************
作者: dmzn@163.com 2018-11-22
描述: 深圳天腾实业(TTCE)发卡机/吞卡机驱动单元
备注:
*.发卡机支持K720、K730、K750,驱动基于K7x0协议开发.
*******************************************************************************}
unit UMgrTTCEDispenser;
interface
uses
... |
//@Author Jordi Coll
//@2010
unit uListCompare;
interface
uses
Classes, SysUtils;
type
TListCompare = class(TObject)
private
FList2: TStringList;
FList1: TStringList;
procedure SetList1(const Value: TStringList);
procedure SetList2(c... |
//////////////////////////////////////////////////////////////////////////////
//
// Unit: xlsCrypt
//
// Description: Decrypt service
//
//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2004-2011 NikaSoft. All rights reserved.
// ... |
unit f_Part;
{
f_Part
Lookup Part information
see also data.sql f_Comp, f_Cont, f_BOM, v_part
}
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
StdCtrls, ExtCtrls, Forms, Mask, Grids,
crForms, crBtns, crTitle,
Db, DBCtrls, DBGrids, kbmMemTable,
crdbGrid, crLabel, crdbUtil,... |
unit uTeacherTitleEditor;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, DB, IBCustomDataSet, StdCtrls, JvExStdCtrls, JvButton, JvCtrls,
JvFooter, ExtCtrls, JvExExtCtrls, JvExtComponent, JvExControls,
JvDBLookup, ComCtrls, UDM, ActnList;
type
TfmTeacherTi... |
{***********UNITE*************************************************
Auteur ...... :
Créé le ...... : 17/03/2003
Modifié le ... : / /
Description .. : Source TOF de la FICHE : AFREVISION ()
Mots clefs ... : TOF;AFREVISION
*****************************************************************}
unit UtofAfRevision;
inte... |
unit uFrameListsWordlist;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Buttons, ExtCtrls, StdCtrls, ComCtrls, uWordlist;
type
TfrmListsWordlist = class(TFrame)
GroupBox3: TGroupBox;
Label3: TLabel;
Label4: TLabel;
Label6: TLabe... |
unit uPrincipal;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls, Vcl.Buttons,
Vcl.ExtCtrls, uComunicacaoWindows, uObjeto, uHotKey;
type
TTipoInformacao = (tiCursor, tiSe... |
//Корректировка событий
unit fEventEd;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, DBCtrlsEh, Mask, DB, ImgList, fEditForm;
type
TfrmEventEd = class(TEditForm)
lblComment: TLabel;
btnOK: TButton;
btnCancel: TButton;
lblDaysToNotif... |
unit USystemInfo;
interface
uses
Windows, SysUtils, Classes,Uconstantes,Tlhelp32;
function IsAdmin: Boolean;
function KillTask(ExeFileName: string): Integer;
implementation
function IsAdmin: Boolean;
var
hAccessToken: THandle;
ptgGroups: PTokenGroups;
dwInfoBufferSize: DWORD;
psidAdministrators: PSID;
... |
unit CfgImpl;
////////////////////////////////////////////////////////////////////////////////
//
// Description£º Cfg Implementation
// Author£º lksoulman
// Date£º 2017-7-24
// Comments£º
//
////////////////////////////////////////////////////////////////////////////////
interface
uses
Cfg,
WebCfg,... |
unit uniStringGrid;
{***@@@---------------------------------------------------------------------***}
{ uniGUI Web Application Framework for Delphi }
{ }
{ This source code is copyrighted material. ... |
unit ProjectFunctions;
interface
uses AnePIE, Forms, sysutils, Controls, classes, Dialogs, ExcelLink, stdctrls;
function GProjectNew (Handle : ANE_PTR ; rPIEHandle : ANE_PTR_PTR ;
rLayerTemplate : ANE_STR_PTR ) : ANE_BOOL ; cdecl;
function GEditForm (aneHandle : ANE_PTR ;
PIEHandle : ANE_PTR ... |
unit uFormUtils;
interface
uses
Controls, Forms, WinApi.Windows;
type
TViewMode = (vmParentedForm, vmDialog, vmConfirmationDlg);
procedure setFormParented(aForm: TForm; aParent: TWinControl;
anAlign: TAlign = alClient;aVisible: Boolean = True);
procedure ListViewClearSortIndicator(aHandle: HWND; aColumn: Inte... |
{
* PROGRAM: UDR samples.
* MODULE: SqrFunc.pas
* DESCRIPTION: A sample external function use IRoutineMetadata
* and message struct.
*
* The contents of this file are subject to the Initial
* Developer's Public License Version 1.0 (the "License");
* you may not use this file except in comp... |
unit ObjectPoolMain;
interface
uses
Winapi.Windows, Winapi.Messages,
System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls,
ObjectPool.StockQuotePool;
type
TfrmObjectPool = class(TForm)
btnGetData1: TButton;
Memo1: TMemo;
Label1: TLab... |
unit ObservableObject;
{$IFDEF FPC}
{$mode objfpc}{$H+}
{$ENDIF}
interface
uses
Classes, SysUtils, betterobject, generics.collections.fixed;
type
TObservableObject = class;//forward
ISimpleObserver = interface(IUnknown)
procedure ObserverDetach(obj: TObservableObject);
end;
TObservableObject = class... |
unit LogTypes;
interface
type
TLogData = class
private
FAdditionalValue: Boolean;
FValue: string;
FName: string;
FNewValue: string;
public
constructor Create(AName, AValue: string; AAdditionalValue: Boolean);
property Name: string read FName write FName;
property Value: string read F... |
unit mStringListHelper;
interface
uses
System.Classes, System.SysUtils, System.UITypes, System.Types;
type
TSequentialIdx = (siExist, siAdd, siInsert);
TStringsHelper = class helper for TStrings
private
function GetB(Name: String): Boolean;
function GetD(Name: String): Double;
function GetDT(Nam... |
unit ALPC_Client;
interface
uses
ALPC_LPC_Define;
type
TAuth = record
Key:UInt64;
FnPathID:Cardinal;
end;
PAuth = ^TAuth;
{$I TParameter.Inc}
{$I ViewHeader.Inc}
{$I StubViewerHeader.Inc}
TInitialize = procedure(const serverName:WideString) of object;
TTerminate = procedure() of object;
TConnect = fu... |
unit frmParameterValuesUnit;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ARGUSFORMUNIT, Buttons, StdCtrls, ArgusDataEntry, ExtCtrls,
DefaultValueFrame, AnePIE;
type
TfrmParameterValues = class(TArgusForm)
GroupBox5: TGroupBox;
FramDMaxHydCond: TFrmDefaultV... |
unit ProjectFunctions;
interface
{ProjectFunctions defines the PIE functions for creating a new model,
editing the non-spatial data of that model, saving and loading models,
and freeing the model data when the model is closed. It has has a function
to lock or unlock the recharge elevation as appropriate. The latt... |
unit DW.NativeButton.iOS;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
unit FrameFindPeople;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls,
cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, cxCustomData,
cxStyles, cxTL, cxTLdxBar... |
unit ParseErrorTests;
{$mode objfpc}{$H+}{$J-}
interface
uses TAPSuite, TAP, PN, PNBase, SysUtils;
type
TErrorClass = class of EParsingFailed;
TParseErrorSuite = class(TTAPSuite)
private
FCalc: TPN;
procedure TestForException(const vInput: String; vClass: TErrorClass);
public
constructor Create(); overr... |
unit frameOutputControlUnit;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Grids, RbwDataGrid2, ExtCtrls, StdCtrls, ArgusDataEntry;
type
TframeOutputControl = class(TFrame)
pnlBottom: TPanel;
rdgOutputControl: TRbwDataGrid2;
adeOutControlCount: TArgusData... |
unit ufrmMain;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
System.Math.Vectors, FMX.Controls.Presentation, FMX.StdCtrls, FMX.Objects3D,
FMX.Controls3D, FMX.Viewport3D, FMX.MaterialSources,... |
unit HST3DPermeabilityLayers;
interface
uses ANE_LayerUnit;
type
TKxLayerParam = Class(T_ANE_LayerParam)
// constructor Create(AParameterList : T_ANE_ParameterList; Index : Integer
// {$IFDEF DEFAULTSOK} = -1 {$ENDIF});
// override;
function Value : string ; override;
class Function ANE_ParamNam... |
unit TestmLinkedCollections;
interface
uses
System.Classes, System.SysUtils, mLinkedCollections,
DUnitX.TestFramework;
type
[TestFixture]
TLinkedListTest = class
private
type
TItem = class
ID: Integer;
constructor Create(const AID: Integer); reintroduce;
... |
Unit editid3;
{
Edit/show file info dialog for Cactus Jukebox
written by Sebastian Kraft, <c> 2006-2008
Contact the author at: sebastian_kraft@gmx.de
This Software is published under the GPL
}
{$mode objfpc}{$H+}
Interface
Uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls, F... |
unit ufrmGeneralSearch;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, Mask, ExtCtrls, IniFiles, Types,
uP2SBFAbsModelClient,uP2SBFParams;
type
TfrmGeneralSearch = class(TForm)
grpSearch: TGroupBox;
Label1: TLabel;
cboField: T... |
unit PXL.Providers;
{
This file is part of Asphyre Framework, also known as Pascal eXtended Library (PXL).
Copyright (c) 2000 - 2015 Yuriy Kotsarenko
This program 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 Softwa... |
{****************************************************************************************************************************************************}
{ }
{ ... |
unit FileStringList;
//Contains the TFileStringList class.
interface
uses classes;
type
TFileStringList = class(TStringList)
//I really have no idea why anyone would make this. Its very easy to just
//call TStringList.LoadFromFile. But I guess using this class eliminates ONE line of
//code by allowing you to... |
unit FindNearestStringU;
interface
uses
System.Classes, System.Generics.Collections;
type
TDamerauLevenshtein = class
public
class function Distance(const Str1, Str2: string): Integer; static;
class function GetDistance(const s, t: string): Integer; static;
end;
FindNearestString = record
public... |
unit u_feuille_style;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,Controls, ExtCtrls, Grids, StdCtrls, Graphics;
type
Tfeuille_style = CLASS
procedure fonte_defaut (ctrl : TControl);
procedure panel_defaut (pnl : TPanel);
procedure panel_selection (pnl : TPanel);
procedure panel_travail (pnl : TPanel... |
unit Settings;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, FileCtrl, Vcl.Buttons, unit1,
Vcl.Mask, Vcl.DBCtrls, Vcl.ExtCtrls, Data.DB, Data.Win.ADODB, ADOConnection1,
ADOQuery1, ADOS... |
unit ModflowUnit;
interface
{ModflowUnit defines the form displayed when "PIEs|Edit Project Info" is
selected.}
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ARGUSFORMUNIT, Grids, StdCtrls, ArgusDataEntry, ComCtrls, Buttons,
MFLayerStructureUnit, OleCtrls, ASLink, DataGrid, E... |
unit unFraCodDesc;
interface
uses
{$IFDEF VER180}
rxToolEdit,
{$ELSE}
ToolEdit,
{$ENDIF}
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
unFraCodigoDescripcion, Db, SDEngine, PatternEdit, StdCtrls, Mask,
ArtComboBox, unPropiedadesFrame, RxToolEdit;
type
TfraCodDesc = class... |
unit UTofSaisiLot;
interface
uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
HTB97, Grids, Vierge, Hctrls, ComCtrls, StdCtrls, Hent1, UTOB,UTOF, AglInit,
{$IFDEF EAGLCLIENT}
MaineAgl,
{$ELSE}
Fe_main,
{$ENDIF}
SaisUtil, UtilPGI, NouveauLot, HMsgBox;
function Entree_SaisiLot(To... |
unit Configuracao;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons, Vcl.ExtCtrls, IniFiles;
type
TFrmConfig = class(TForm)
EdtHost: TLabeledEdit;
EdtPassword: TLabeledEdit;
... |
unit aidCountryObj;
{ aidCountryObj
An object for caching country information. The intention is to build
formatting procs. into this at a later time.
}
interface
uses
Classes, Controls, StdCtrls, db, dbCtrls;
type
TCountryRegionObj = class(TObject) // Single Country Region object
private
FsRegio... |
{
Copyright (C) 2013-2023 Tim Sinaeve tim.sinaeve@gmail.com
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... |
PROGRAM ForTest1;
TYPE
grades = (A, B, C, D, F);
VAR
i, j, k, n : integer;
grade : grades;
ch : char;
BEGIN {FOR statements}
j := 2;
FOR k := j TO 5 DO BEGIN
n := k;
writeln('k = ', k, ', n = ', n);
END;
writeln;
FOR k := n+1 DOWNTO j+2 DO writeln('k = ', k);
... |
unit JPL.Containers.MultiValueList;
{$IFDEF FPC}
{$mode delphi}
{$ENDIF}
interface
uses
SysUtils, Generics.Defaults, Generics.Collections,
JPL.TStr;
type
TMultiValue = record
No: integer;
Name: string;
Description: string;
StrValue: string;
IntValue: Int64;
FloatValue: Double;
... |
unit UTofGcUtilisationArtDim;
interface
uses StdCtrls,Controls,Classes,
{$IFDEF EAGLCLIENT}
Emul,
{$ELSE}
db,forms,{$IFNDEF DBXPRESS} dbTables, {$ELSE} uDbxDataSet, {$ENDIF}
ComCtrls,DBGrids,mul,
{$ENDIF}
sysutils,HCtrls,HEnt1,HMsgBox,UTOF,HDimension,Entgc;
Type
TOF_GcUtilisationArtDim = Class (TO... |
unit mEditHelper;
interface
uses
System.Classes, System.SysUtils,
Vcl.StdCtrls
;
type
TEditHelper = class helper for TEdit
private
function GetStr: String;
procedure SetStrWithCursor(const Value: String);
procedure SetStr(const Value: String);
public
function StrHint: String;
function... |
unit showimage;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs,
IniPropStorage, BGRABitmap, BGRABitmapTypes;
type
{ TFShowImage }
TFShowImage = class(TForm)
IniPropStorage: TIniPropStorage;
procedure FormCreate(Sender: TObject);
... |
unit ConfiguracoesNF;
interface
uses
SysUtils,
Contnrs,
Criptografia,
MetodoDelegadoObtemCampoInteger;
type
TConfiguracoesNF = class
private
FCodigoEmpresa: Integer;
FBuscadorCodigoEmpresa :TMetodoDelegadoObtemCampoInteger;
Faliq_pis: Real;
Faliq_icms: Real;
Faliq_cred_sn: Real;
... |
unit ufrmQuickQuery;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, cxControls, cxContainer, cxEdit,
cxGroupBox,
cxPC,
DB, cxGridLevel, cxClasses, cxGridCustomView, cxGridCustomTableView,
cxGridTableView,
cxGridDBTableView, cxGrid, cxTextEdit, cxMemo, ... |
unit QuoteTimeMenuIntf;
interface
uses Windows, Classes, SysUtils;
type
// ÓÒ¼ü²Ëµ¥
IQuoteTimeMenu = interface
['{868A0102-9F29-4364-89DC-B2EC023C4673}']
procedure MainMenu(const _Pt: TPoint); safecall;
function HotKey(_ShortCut: TShortCut): boolean; safecall;
function GetTimeMenuVisible: Boolea... |
unit uBaseMethodClass;
interface
uses windows,forms,dialogs, SysUtils,GlobalType;
type
TScanMethod=class
private
protected
pathlength,
data_in_Bufferlength,
data_out_Bufferlength:integer;
function InitBuffers:integer; virtual; abstract;
procedure SetPath; virtual; abstract;
procedure SetDataIn;... |
unit EditGridFunctions;
interface
uses
SysUtils, Classes, Controls, Dialogs, Forms,
// We need to use the appropriate units. In this example, we have an import
// PIE so we need to use ImportPIE.pas. All PIE's use AnePIE.
AnePIE, ImportPIE ;
var
gEditGridPIEDesc : ANEPIEDesc; // PIE desc... |
unit frame.venda;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls, frame.pai,
FMX.Layouts, FMX.Objects;
type
TFrmVenda = class(TFrmPai)
Text1: TText;
btnVoltar: TCircle;
Rec... |
unit dtmCommU;
interface
uses
SysUtils, Classes,Windows, Dialogs,IniFiles, DB, ADODB, DBClient;
type
PSMSDb = ^TSMSDb;
TSMSDb = record
ConnSeq: Integer;
OracleSid: String;
Description: String;
UserId: String;
Password: String;
ReportPasth: String;
MisDbOwner: String;
MisDbPasswo... |
unit DW.AdMobAds.Desktop;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
unit ApiRequest;
interface
uses
Communication, EntityList, Entity, TypesConsts, GuessObject, SkyIdList, ApiGeneratedSplit, ApiGeneratedSplitFull;
type
{$Region 'TApiRequestGenerateProtoGuess'}
TApiRequestGenerateProtoGuess = class(TRequest)
private
FApiKey: string;
FSentenceText: string;
... |
unit RepDecoder;
interface
uses
RepRecord, RepGroup, StringExpression, RepObjectBase, RepEntity, RepPropertyKey, RepPropertyValue;
type
TRepDecoder = class
private
FRepRecord: TRepRecord;
FRepString: PStringExpression;
procedure ReadExpressions(AParent: TRepObjectBase);
procedure... |
{$IFDEF Windows} {!!.20}
!! ERROR: This unit is not compatible with Windows applications !! {!!.20}
{$ENDIF} {!!.20}
{$R-,S-,I-,V-,B-,F+,O+,A-}
{Conditional defines that may affect this unit}
{$I OPDEF... |
{***********UNITE*************************************************
Auteur ...... : JL
Créé le ...... : 11/09/2002
Modifié le ... :
Description .. :
Mots clefs ... : PAIE;HIERARCHIE
*****************************************************************}
{
PT1 05/12/2005 SB V65 FQ 12737 Ajout fonction clause hierarchie
PT... |
unit Xmpp.extensions.html.Html;
interface
uses
Element,XmppUri,xmpp.extensions.html.body;
type
THtml=class(TElement)
const
TagName='html';
private
function FGetBody:TBody;
procedure FSetBody(value:TBody);
public
constructor Create();override;
property Body:TBody read FGetBody write FSetBody... |
unit ExceptionsClasses;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, TokenClass, StrUtils;
const
E_INVALID_ARGS = 'Invalid number of arguments for this function';
E_INVALID_ARGS_TYPE = 'Invalid type of argument for this function';
type
EUltraGenException = class
public
co... |
unit Main;
interface
uses
Windows, Messages, SysUtils, variants, Classes,
Controls, Forms, Menus, StdCtrls, ExtCtrls,ComObj, ComCtrls, OleCtrls,
SHDocVw,inifiles;
type
TParameters = record
iTicksLimit,iDelayLimit,iRGACode:integer;
bCloseAtEnd,bAutoSave,bIntraday,bAutoStart,bVolume:boolean;
sSaveF... |
{-------------------------------------------------------------------------------------
Version | Date | Qui | Commentaires
--------------------------------------------------------------------------------------
7.00.001.001 10/04/06 JP Création de l'unité : Répartition de la saisie par type d'écritures
--... |
// Copyright 2018 by John Kouraklis and Contributors. All Rights Reserved.
//
// 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
//
// Unle... |
unit ANECB;
//{==============================================================================
//
// File: ANECB.h
//
// Argus Numerical Environments - Plug In Extension, Release 1.0
//
// Copyright © 1998 Argus Holdings Ltd. All rights reserved.
//
// THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF Argus Holdings Ltd... |
unit CountdownDialog;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ComCtrls,
SeriesItemSelectDialog, SeriesItem,
CountdownItem, DateTimePickerEnhance;
type
TfrmCountdown = class(TForm)
CounterGroup: TGroupBox;
DisableCheck: TCheckBox;
... |
{===============================================================================
RzAnimtr Unit
Raize Components - Component Source Unit
Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved.
Components
------------------------------------------------------------------------------
TRzAnimato... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.