text stringlengths 14 6.51M |
|---|
unit rOrders;
{$OPTIMIZATION OFF}
interface
uses SysUtils, Classes, ORFn, ORNet, uCore, Dialogs, Controls;
type
TOrder = class
public
ICD9Code: string;
ID: string;
DGroup: Integer;
OrderTime: TFMDateTime;
StartTime: string;
StopTime: string;
Status: ... |
// Copyright 2021 Darian Miller, Licensed under Apache-2.0
// SPDX-License-Identifier: Apache-2.0
// More info: www.radprogrammer.com
unit radRTL.Base32Encoding.Tests;
interface
uses
TestFramework;
type
TBase32Test = class(TTestCase)
published
procedure TestEncodingRFCVectors;
procedure... |
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, Spin,
rxclock;
type
{ TForm1 }
TForm1 = class(TForm)
CheckBox1: TCheckBox;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
RxClock1: TRxClock;
SpinEdit1: TSpinEdit;
S... |
unit StoreHouseInfoView;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, cxGraphics, cxControls,
cxLookAndFeels, cxLookAndFeelPainters, cxContainer, cxEdit, cxTextEdit,
cxMemo, cxDBEdit, cxLabel, Vcl.ExtCtr... |
unit LTUtils;
interface
uses
SysUtils;
function CreateGuestID: string;
implementation
function CreateGuestID: string;
var
Guid: TGUID;
begin
CreateGuid(Guid);
Result := GuidToString(Guid);
end;
end.
|
unit TreeNTRegister;
// Registration file for TTreeNT and its editors.
// Dipl. Ing. Mike Lischke
// public@lischke-online.com
{$I DFS.inc}
interface
uses
DsgnIntf, TreeNT, TNTEditor, Dialogs, Forms, SysUtils;
type
TTreeNTNodesProperty = class(TClassProperty)
public
procedure Edit; override;
... |
{ ---------------------------------------------------------------------------- }
{ HeightMapGenerator MB3D }
{ Copyright (C) 2017 Andreas Maschke }
{ ---------------------------------------------------------------------------... |
unit RN_DetourTileCache;
interface
uses RN_DetourStatus;
typedef unsigned int dtObstacleRef;
typedef unsigned int dtCompressedTileRef;
/// Flags for addTile
enum dtCompressedTileFlags
{
DT_COMPRESSEDTILE_FREE_DATA = 0x01, ///< Navmesh owns the tile memory and should free it.
};
struct dtCompressedTile
... |
{
Rubbermade:
Create new colour TextureSets
darkconsole http://darkconsole.tumblr.com
}
Unit
UserScript;
Const
TemplateTxst = $d62;
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
Func... |
unit Options;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, CustomXML;
const
KeyCount = 32;
type
pBool= ^boolean;
eGraphicsOptions = (grDrawFrame, grWireFrame); { TODO 2 -cFeature : variant array with enumerators for every option }
ePlayerAction = (aEsc = -2, aNone = -1, aLeft, aRight, aForw... |
{
Copyright (C) Miguel A. Risco-Castillo
FPC-markdown is a fork of Grahame Grieve <grahameg@gmail.com>
Delphi-markdown https://github.com/grahamegrieve/delphi-markdown
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... |
unit crc8_1;
interface
implementation
type
Byte = UInt8;
PByte = ^UInt8;
TCRC8PolyTable = array [0..255] of Byte;
PCRC8PolyTable = ^TCRC8PolyTable;
const Crc8TableP0x31: TCRC8PolyTable = (
$00, $31, $62, $53, $C4, $F5, $A6, $97,
$B9, $88, $DB, $EA, $7D, $4C, $1F, $2E,
$43, $72, $21, $10, $8... |
(* MPI: MM, 2020-04-29 *)
(* ------ *)
(* MiniPascal Interpreter. *)
(* ========================================================================= *)
... |
unit HelpersPadrao;
interface
uses Data.Win.ADODB, Winapi.OleDB, Winapi.ADOInt;
Type
TADOConnectionHelper = Class Helper for TADOConnection
published
Function Attributes(Value: TXactAttributes):TADOConnection;
public
Function GetAttributes: TXactAttributes;
End;
Const
XactAttributeValues: a... |
unit JvImageTransformForm;
{ The images of this demo are taken from the Lazarus mushroom database example
in folder (lazarus)/examples/database/image_mushrooms
}
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls, StdCtrls,
JvImageTransform;
type
{ TMainForm... |
{ Iniquity Programming Language - Global Constants }
const
cTitle = 'Iniquity Programming Language';
cProgram = 'Iniquity/PL [executable file]';
cVersion = 'v1.00a';
idLength = 40;
idVersion = 30;
extSource = '.ips';
extExecu... |
{*!
* Fano Web Framework (https://fanoframework.github.io)
*
* @link https://github.com/fanoframework/fano
* @copyright Copyright (c) 2018 Zamrony P. Juhara
* @license https://github.com/fanoframework/fano/blob/master/LICENSE (MIT)
*}
unit TemplateStrViewImpl;
interface
{$MODE OBJFPC}
{$H+}
uses
H... |
{$MODE OBJFPC} { -*- delphi -*- }
{$INCLUDE settings.inc}
unit world;
interface
uses
plasticarrays, genericutils, provinces, players;
type
TPerilDataFeatures = (pdfProvinces, pdfPlayers, pdfTurnNumber);
TPerilDataFeaturesSet = set of TPerilDataFeatures;
TPerilWorld = class abstract
protected type
... |
unit untEasyDesignerGridPopuMenuReg;
{$I cxGridUtils.inc}
interface
uses
Windows, Messages,
SysUtils, Classes;
procedure DesignerGridPopuMenuRegRegister;
implementation
uses
{$IFDEF DELPHI6}
Types, DesignIntf, DesignEditors,
{$ELSE}
DsgnIntf,
{$ENDIF}
cxGridPopupMenu, cxGridCustomPop... |
unit Unit1;
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.Controls.Presentation,
FMX.Objects
{$IFDEF ANDROID}
,
Androidapi.JNI.GraphicsContentViewText... |
{**********************************************************************}
{* Иллюстрация к книге "OpenGL в проектах Delphi" *}
{* Краснов М.В. softgl@chat.ru *}
{**********************************************************************}
unit Unit1;
interface
use... |
namespace RemObjects.SDK.CodeGen4;
interface
uses
RemObjects.Elements.RTL;
type
RodlCodeGen = public abstract class
protected
CodeGenTypes: Dictionary<String, CGTypeReference>:= new Dictionary<String, CGTypeReference>;
ReaderFunctions: Dictionary<String, String>:= new Dictionary<String, Str... |
unit sNIF.params;
{ *******************************************************
sNIF
Utilidad para buscar ficheros ofimáticos con
cadenas de caracteres coincidentes con NIF/NIE.
*******************************************************
2012-2018 Ángel Fernández Pineda. Madrid. Spain.
This work is licensed un... |
unit Vigilante.Infra.Build.Repositorio.Impl;
interface
uses
System.JSON, Vigilante.Build.Repositorio, Vigilante.Build.Model;
type
TBuildRepositorio = class(TInterfacedObject, IBuildRepositorio)
private
function BuscarJSON(const AURL: string): TJSONObject;
function TratarURL(const AURL: string): string;... |
unit DMCommon;
interface
uses
System.Classes, dxLayoutLookAndFeels, System.ImageList, Vcl.ImgList,
Vcl.Controls, cxGraphics, WUpdate, cxLookAndFeels, dxSkinsForm, cxClasses,
cxLocalization, RemoteDB.Client.Dataset, RemoteDB.Client.Database,
gmClientDataset, cxGridDBDataDefinitions, cxRichEdit, cxProgressBar, ... |
UNIT BaseDeDatos;
(*******************************************************************************
La presente unidad tiene como objetivo realizar la conexión a la base de datos
del sistema y retornar datos desde ella. La base de datos tendrá por nombre la
cadena dada por la constante DATABASE_NAME y deberá estar almac... |
unit CustListFormU;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Grids, DBGrids;
type
TCustListForm = class(TForm)
Button1: TButton;
Button2: TButton;
DBGrid2: TDBGrid;
procedure FormShow(Sender: TObject);
procedure FormHide(Sender: TObj... |
unit UniDBC;
interface
uses
SysUtils, Variants, Classes, Dialogs,
UniProvider, OracleUniProvider, Uni, SQLServerUniProvider;
type
TConnCfg = record
ProviderName, Server: string;
Port: Word;
Database, Username, Password: string;
IsDirect: Boolean;
end;
TDBCtl = class(TCompon... |
unit P_Insa;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Data.DB, Vcl.Grids, Vcl.DBGrids,
Vcl.ExtCtrls, Vcl.ToolWin, Vcl.ComCtrls, Vcl.StdCtrls, Vcl.Mask, Vcl.DBCtrls,
Vcl.Buttons, Vcl.WinXCtrls, FireDAC.... |
{-------------------------------------------------------------------------------
// EasyComponents For Delphi 7
// 一轩软研第三方开发包
// @Copyright 2010 hehf
// ----------------------------... |
PROGRAM SarahRevere(INPUT, OUTPUT);
VAR
Ch1, Ch2, Ch3, Ch4: CHAR;
Looking, Land, Sea: BOOLEAN;
PROCEDURE CheckSeaLand(VAR Ch1, Ch2, Ch3, Ch4: CHAR; VAR Land, Sea, Looking: BOOLEAN);
BEGIN
WHILE ((Looking) AND NOT(Land OR Sea))
DO
BEGIN
{проверка окна на land}
Land := ((Ch1 = 'l') AND (Ch2 = 'a... |
unit engine;
interface
uses sysutils;
const MAX_SIZE = 100;
type position = ^positionDescription;
positionDescription = record
x : Integer;
y : Integer;
end;
type field = ^fieldDescription;
fieldDescription = record
pos : position;
... |
unit caVariants;
{$INCLUDE ca.inc}
interface
uses
Windows,
SysUtils,
Classes;
type
//---------------------------------------------------------------------------
// TcaVarArray
//---------------------------------------------------------------------------
TcaVarArray = class(TObject)
private
// Pr... |
unit unif2d;
interface
uses
Math, Types;
type
bitpos = type ShortInt;
PBoard = ^TBoard;
TBoard = record
Size: TPoint;
Grid: array[0..MaxInt div 8 - 2] of UInt64;
function GetAt(X, Y: integer): UInt64; inline;
procedure SetAt(X, Y: integer; const NewVal: UInt64); inline;
property At[X, Y:... |
UNIT UTILEXSD;
{$N+}
INTERFACE
USES Types, Glblvars, SysUtils, WinTypes, WinProcs, BtrvDlg,
Messages, Dialogs, Forms, wwTable, Classes, DB, DBTables,
Controls,DBCtrls,StdCtrls, PASTypes, WinUtils, GlblCnst, Utilitys,
wwDBLook, Graphics, RPBase, RPDefine, Prog, wwdbGrid, DataAccessUnit;
Procedure Get... |
//
// This unit is part of the GLScene Project, http://glscene.org
//
{: GLFileX<p>
Simple X format support for Delphi (Microsoft's favorite format)<p>
<b>History : </b><font size=-1><ul>
<li>07/11/09 - DaStr - Initial version (Added from the GLScene-Lazarus SVN)
</ul></font>
<b>Pre... |
unit ansi_to_unicode_1;
interface
implementation
var
SA: AnsiString;
SU: String;
procedure Test;
begin
SA := 'ansi';
SU := SA;
end;
initialization
Test();
finalization
Assert(SU = 'ansi');
end. |
{ Copyright (C) 1998-2018, written by Shkolnik Mike, Scalabium
E-Mail: mshkolnik@scalabium.com
mshkolnik@yahoo.com
WEB: http://www.scalabium.com
}
unit CharMap;
interface
{$I SMVersion.inc}
uses Windows, Classes, Messages, StdCtrls, Graphics, Buttons, Controls;
type
TSMPopupListbox =... |
{*******************************************************}
{ }
{ Delphi Runtime Library }
{ SOAP Support }
{ }
{ Copyright(c) 1995-2011 Embar... |
unit BrickCamp.TDB;
interface
uses
Spring.Persistence.Adapters.FireDac,
Spring.Container.Common,
Spring.Persistence.Core.Session,
BrickCamp.IDB,
BrickCamp.ISettings;
type
TCbdDB = class(TInterfacedObject, IBrickCampDb)
protected var
[Inject]
FSettings: IBrickCampSettings;
FCon: TFireDACCon... |
unit MgPrimitives;
interface
uses
Classes;
type
TMgCustomPrimitive = class(TPersistent)
private
FOnChange : TNotifyEvent;
protected
procedure AssignTo(Dest: TPersistent); override;
procedure Changed; virtual;
public
property OnChange: TNotifyEvent read FOnChange write FOnChange;
end;
T... |
unit MIRTErrorLogFrm;
//////////////////////////////////////
// //
// Description: MIRT Error Log form //
// //
//////////////////////////////////////
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
... |
{*******************************************************}
{ }
{ CodeGear Delphi Runtime Library }
{ }
{ Copyright(c) 1995-2011 Embarcadero Technologies, Inc. }
{ ... |
Unit RemDiskDll;
{$MINENUMSIZE 4}
Interface
Uses
Windows;
Const
REMDISK_FLAG_WRITABLE = $1;
REMDISK_FLAG_COPY_ON_WRITE = $2;
REMDISK_FLAG_ALLOCATED = $4;
REMDISK_FLAG_SAVE_ON_STOP = $8;
REMDISK_FLAG_ENCRYPTED = $10;
REMDISK_FLAG_OFFLINE = $20;
REMDISK_FLAG_FILE_SOURCE ... |
unit xProtocolDev;
interface
uses System.Types, xTypes, xConsts, System.Classes, xFunction,
system.SysUtils, xVCL_FMX, System.DateUtils;
type
/// <summary>
/// 通讯设备基类
/// </summary>
TProtocolDevBase = class
private
FControlAdd: Integer;
FSN: String;
FVersion: string;
FOwne... |
{*********************************************}
{ TeeBI Software Library }
{ Expression Editor }
{ Copyright (c) 2015-2016 by Steema Software }
{ All Rights Reserved }
{*********************************************}
unit VCLBI.Editor.Expression;
i... |
{*******************************************************}
{ }
{ Borland Delphi Visual Component Library }
{ Interface RTTI Support }
{ }
{ Copyright (c) 2001 Borland S... |
unit fODRadApproval;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ORCtrls, ORfn, ExtCtrls, fBase508Form, VA508AccessibilityManager;
type
TfrmODRadApproval = class(TfrmBase508Form)
cmdOK: TButton;
cmdCancel: TButton;
cboRadiologist: TORComboBox;
SrcLabe... |
unit Neslib.SysUtils;
{< Sytem utilities }
{$INCLUDE 'Neslib.inc'}
interface
uses
System.SysUtils;
{ Checks two string references for equality.
Parameters:
AString1: first string
AString2: second string
Returns:
True if AString1 and AString2 are references to the same string.
This function is... |
{ Questa unit e' stata importata esternamente da altre fonti }
{ e non fa parte del sorgente pascal scritto dall'autore. }
unit mouse; { and other interesting stuff }
{$F+}
interface
procedure hidemouse;
procedure memcpy(source,destination : pointer; size : word);
procedure memzerocpy(source,destination : pointe... |
unit CashWork;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Mask, CashInterface, DB, Buttons,
Gauges, cxGraphics, cxControls, cxLookAndFeels,
cxLookAndFeelPainters, cxContainer, cxEdit, cxTextEdit, cxCurrencyEdit,
cxClasses, cxPropertiesStore, ... |
{*******************************************************}
{ }
{ Delphi DataSnap Framework }
{ }
{ Copyright(c) 1995-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
unit MainUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Interpolation, IntervalArithmetic;
type
TMainForm = class(TForm)
HeaderLabel: TLabel;
DataPointsEdit: TEdit;
DataPointsLabel: TLabel;
InputGroupBox: TGroupBox... |
unit BrickCamp.Repositories.TUser;
interface
uses
System.JSON,
Spring.Container,
Spring.Container.Injection,
Spring.Container.Common,
BrickCamp.IDB,
BrickCamp.Model.TUser,
BrickCamp.Repositories.IUser;
type
TUserRepository = class(TInterfacedObject, IUserRepository)
protected
[Inject]
FDb: IBrickC... |
{*******************************************************}
{ }
{ Модуль Гауссово размытие }
{ Copyright (c) 2015 }
{ }
{ ... |
unit AccountTitlesList;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, BaseGridDetail, Data.DB, RzButton,
Vcl.StdCtrls, Vcl.Mask, RzEdit, Vcl.Grids, Vcl.DBGrids, RzDBGrid, RzLabel,
Vcl.ExtCtrls, RzPanel, RzD... |
(**
* Crab Cups parts 1 and 2 in Pascal (derived from C solution).
*
* Build with 'fpc -Mdelphi puzzle.pas' to have 32 bits Integer type. Reduce
* MaxCups, MaxRounds and Progress constants to compile with Turbo Pascal 3.
*)
program CrabCups;
type
MyString = String[9]; (* To make Turbo Pascal ha... |
unit ORSplitter;
interface
uses Controls, Graphics, ExtCtrls, Classes, Types, Windows;
type
TSplitOrientation = (soHorizontal, soVertical);
TORSplitter = class(TGraphicControl)
private
FActiveControl: TWinControl;
FAutoSnap: Boolean;
FBeveled: Boolean;
FBrush: TBrush;
FDownPos: TPoint;
... |
unit UFrmGoodsSelect;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uFrmModal, cxGraphics, cxLookAndFeels, cxLookAndFeelPainters, Menus,
ActnList, StdCtrls, cxButtons, ExtCtrls, cxControls, cxContainer, cxEdit,
dxSkinsCore, dxSkinsDefaultPainters, c... |
{ This sample application demonstrates the following features of the
TOLEContainer:
- Toolbar negotiation
- Status bar hints while inplace editing
- Using the TOLEContainer's dialogs including InsertObject,
ObjectProperties and PasteSpecial.
- Using the TOLEContainer's constructors CreateLinkToFile,
... |
unit ncaFramePagamento;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters,
cxContainer, cxEdit, cxLabel, LMDControl, LMDCustomControl, LMDCustomPanel,
LMDCustomBevelPanel, LMDSimplePanel, LMDGraph, ... |
UNIT PersonUnit;
INTERFACE
TYPE
MoodType = (happy, excited, funny, angry, tired);
Person = ^PersonObj;
PersonObj = OBJECT
name: STRING;
age: INTEGER;
mood: MoodType;
CONSTRUCTOR Init(name: STRING);
CONSTRUCTOR Init2(name: STRING; mood: MoodType);
DESTRUCTOR Done;
... |
{===============================================================================
TIntegerList
Based on FPC RTL TList and TStringList
License: Modified LGPL (same as FPC RTL)
===============================================================================}
unit IntegerList;
{$MODE DELPHI}
{$DEFINE U... |
unit PaymentMain;
interface
uses
System.SysUtils, System.Classes, BaseDocked, Vcl.Controls, Vcl.StdCtrls,
RzLabel, Vcl.ExtCtrls, RzPanel, Vcl.Mask, RzEdit, RzBtnEdt, Vcl.Grids,
RzGrids, RzDBEdit, SaveIntf, System.UITypes, PaymentIntf,
Vcl.Imaging.pngimage, Payment, StrUtils, Vcl.Graphics, System.Types, RzCmbo... |
unit AMostraErrosExportacaoDados;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, formularios,
ExtCtrls, PainelGradiente, Componentes1, Grids, CGrades, StdCtrls, Buttons, UnDados;
type
TFMostraErrosExportacaoDados = class(TFormularioPermissao)
PainelGradie... |
unit FHIRAuthMap;
interface
uses
FHIRResources;
type
TTokenCategory = (tcClinical, tcData, tcMeds, tcSchedule, tcAudit, tcDocuments, tcFinancial, tcOther);
const
CODES_TTokenCategory : array [TTokenCategory] of String = ('Clinical', 'Data', 'Meds', 'Schedule', 'Audit', 'Documents', 'Financial', 'Other');
/... |
unit UProduto;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
type
{ Produto }
TProduto = class
private
FCodigo: integer;
FDescricao: string;
FValorUnitario: double;
procedure setCodigo(Value: integer);
procedure setDescricao(Value: string);
procedure setValorU... |
unit unit_ws_container;
{$mode objfpc}{$H+}
interface
uses
{$IFDEF UNIX}cthreads,{$ENDIF} Classes, SysUtils,log_core,
wsutils,
wsmessages,
wsstream,
ssockets,
WebsocketsClient;
type
{ TRecieverThread }
TRecieverThread = class(TThread)
private
FCommunicator: TWebsocketCommunincator;
protec... |
unit Test.ReqCreator;
interface
uses Windows, TestFrameWork, GMGlobals, GM485, ArchIntervalBuilder,
Generics.Collections, GMConst;
type
ArrayOfCardinal = array of Cardinal;
ArchIntervalBuilderForTest = class(TArchIntervalBuilder)
private
FArray: ArrayOfCardinal;
FArrayIndex: int;
protected
f... |
{***********************************<_INFO>************************************}
{ <Проект> Видеосервер }
{ }
{ <Область> 16:Медиа-контроль ... |
unit BrickCamp.TSettings;
interface
uses
BrickCamp.ISettings,
System.IniFiles;
type
TCbdSettings = class(TInterfacedObject, IBrickCampSettings)
protected const
CONFIG_INI = 'config.ini';
protected
function GetConfigFile: TIniFile;
function GetValueAsString(Section, Key: String): String;
fu... |
unit RecordsWithForm;
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;
type
TForm1 = class(TForm)
Memo1: TMemo;
B... |
unit typename_4;
interface
implementation
uses System;
type
TC1 = class
function GetName: string;
end;
TC2 = class(TC1)
end;
function TC1.GetName: string;
begin
Result := typename(self);
end;
var S: string;
procedure Test;
var
Obj: TC1;
begin
Obj := TC2.Create();
S := Obj.GetName()... |
{*******************************************************}
{ }
{ Borland Delphi Visual Component Library }
{ }
{ Copyright (c) 1995,2001 Inprise Corporation }
{ ... |
unit ReleaseSessionsCmd;
interface
procedure ReleaseSessions(databaseName : String;
userId, password : String;
hostName : String;
hostPort : Integer);
implementation
uses
Classes,
sysUtils,
strUtils,
edbcomps,
SessionManager;
procedure ReleaseSessions(databaseNa... |
unit TeeSlovak;
{$I TeeDefs.inc}
interface
Uses Classes;
Var TeeSlovakLanguage:TStringList=nil;
Procedure TeeSetSlovak;
Procedure TeeCreateSlovak;
implementation
Uses SysUtils, TeeConst, TeeProCo {$IFNDEF D5},TeCanvas{$ENDIF};
Procedure TeeSlovakConstants;
begin
TeeMsg_Copyright :='©... |
unit configuration;
{$mode objfpc}{$M+}
interface
uses
Classes, SysUtils, Forms, StdCtrls, utils
{$IFDEF unix}
,baseunix, unix
{$endif}
;
const
ModeNormal: integer = 1;
ModeFiltersDisabled: integer = 2;
ModeTrackingDisabled: integer = 3;
type
TAComponents = array of TComponent... |
unit Amazon.Request;
interface
Uses Amazon.Interfaces;
type
TAmazonRequest = class(TInterfacedObject, IAmazonRequest)
private
fsAuthorization_header: UTF8String;
fsamz_date: UTF8String;
fsdate_stamp: UTF8String;
fssecret_key: UTF8String;
fsaccess_key: UTF8String;
fsservice: UTF8String;
... |
(* Files: MM, 2020-04-01 *)
(* ------ *)
(* Fun with Files *)
(* ========================================================================= *)
... |
unit NumPageFrame;
interface
uses
Windows, SysUtils, Classes, Graphics, Controls, Forms,
StdCtrls, Buttons, ComCtrls, ExtCtrls, ItemsDef, Grids, ValEdit,
ActnList, Menus, MainForm, Clipbrd, Core, IniFiles;
type
TfrmNumPageTemplate = class(TFrame)
grpPreview: TGroupBox;
imgPreview: TImage;... |
{
Oracle Deploy System ver.1.0 (ORDESY)
by Volodymyr Sedler aka scribe
2016
Desc: wrap/deploy/save objects of oracle database.
No warranty of using this program.
Just Free.
With bugs, suggestions please write to justscribe@yahoo.com
On Github: github.com/justscribe/ORDESY
As a part of project.
Desc: saving/loading o... |
unit UFrmStockInfoEdit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uFrmModal, cxGraphics, cxLookAndFeels, cxLookAndFeelPainters, Menus,
cxControls, cxContainer, cxEdit, dxSkinsCore, dxSkinsDefaultPainters,
cxTextEdit, StdCtrls, ActnList, cxButton... |
unit fOtherSchedule;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, StdCtrls, ExtCtrls, Buttons, fAutoSz, rMisc, ORCtrls, rODMeds,
VA508AccessibilityManager, VAUtils;
const
NSS_TXT = 'This order will not become active until a valid schedule is use... |
{
* 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 a copy of the License at
* http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl.
*
* Software distrib... |
unit ConnectionModule;
interface
uses
Aurelius.Drivers.Interfaces,
Aurelius.SQL.SQLite,
Aurelius.Schema.SQLite,
Aurelius.Drivers.SQLite,
System.SysUtils, System.Classes, Data.DB, Aurelius.Bind.Dataset;
type
Tdb = class(TDataMod... |
unit SearchDaughterCategoriesQuery;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, BaseQuery, FireDAC.Stan.Intf,
FireDAC.Stan.Option, FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS,
FireDAC.Phys.Intf, ... |
unit func_ccreg_set32;
interface
implementation
type
TEnum32 = (_a00,_a01,_a02,_a03,_a04,_a05,_a06,_a07,_a08,_a09,_a10,_a11,_a12,_a13,_a14,_a15,_a16,_a17,_a18,_a19,_a20,_a21,_a22,_a23,_a24,_a25,_a26,_a27,_a28,_a29,_a30,_a31);
TSet32 = packed set of TEnum32;
function F(a: TSet32): TSet32; external 'CAT' name 'fu... |
{*******************************************************}
{ }
{ Delphi DBX Framework }
{ }
{ Copyright(c) 1995-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
(****************************************************************************)
(* *)
(* REV97.PAS - The Relativity Emag (coded in Borland Pascal 7.0) *)
(* *)
(* "... |
unit ncSources;
// /////////////////////////////////////////////////////////////////////////////
//
// NetCom7 Package
//
// This unit creates a TCP Server Source and a TCP Client Source compoents,
// along with their threads dealing with handling commands.
//
// The idea behind the source components is to be... |
unit AAlteraEstagioChamado;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, formularios,
StdCtrls, Buttons, PainelGradiente, ExtCtrls, Componentes1,
DBKeyViolation, Localizacao, UnChamado;
type
TFAlteraEstagioChamado = class(TFormularioPermissao)
PanelC... |
(*
Этот модуль позволяет производить дифференцирование
This unit have to perform derivatives
Created by Scherbakov Maksim
Sherbakov.maks@gmail.com
*)
unit Derivatives;
interface
uses System.SysUtils, RegularExpressions, Math;
type
TStack = class
private
private
StackArray: array of string;
To... |
{-----------------------------------------------------------------------------
Author: Roman Fadeyev
Purpose: Реализация IStockDataSourceConnection для загрузки данных из файла
History:
-----------------------------------------------------------------------------}
unit FC.StockData.StockDataConnectionFile;
{$I... |
unit myunion_impl;
{This file was generated on 16 Jun 2000 16:37:51 GMT by version 03.03.03.C1.04}
{of the Inprise VisiBroker idl2pas CORBA IDL compiler. }
{Please do not edit the contents of this file. You should instead edit and }
{recompile the original IDL which was located in the file m... |
{***************************************************************************
*
* Orion-project.org Lazarus Helper Library
* Copyright (C) 2016-2017 by Nikolay Chunosov
*
* This file is part of the Orion-project.org Lazarus Helper Library
* https://github.com/Chunosov/orion-lazarus
*
* This Library is free soft... |
unit uRangeElement;
interface
uses Generics.Collections;
type
TRangeElement = class(TObject)
private
FRange_ID: Integer;
FElement_ID: Integer;
FDescription: string;
FSizeDesc: string;
FColourDesc: string;
FQuantity: Integer;
FRangeElementList: TDictionary<Integer, TRa... |
{ **********************************************************************}
{ }
{ DeskMetrics - Application Example (Delphi) }
{ Copyright (c) 2010-2011 DeskMetrics Limited }
{ ... |
unit FormOpstellingPlayer;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, uHTPredictor, cxControls, cxContainer, cxEdit, cxTextEdit, formHTPredictor,
cxMaskEdit, cxDropDownEdit, cxImageComboBox, uOpstelling, StdCtrls;
type
TfrmOpstellingPlayer = class(TFram... |
// Ported CrystalDiskInfo (The MIT License, http://crystalmark.info)
unit SMARTSupport.Intel;
interface
uses
BufferInterpreter, Device.SMART.List, SMARTSupport, Support;
type
TIntelSMARTSupport = class(TSMARTSupport)
private
function ModelHasIntelString(const Model: String): Boolean;
function SMARTHasI... |
unit FrameConnectDB;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons,
CommonConnection.Intf;
type
TDBConnectFrame = class(TFrame)
lblHostName: TLabel;
lblDBName: TLabel;
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.