text stringlengths 14 6.51M |
|---|
unit uMessageSlot;
interface
uses Classes, StdCtrls, ExtCtrls, Controls, Graphics, SysUtils, Buttons, Forms;
type
TMessageSlot = class(TPanel)
constructor Create(AOwner: TComponent); override;
private
IsNewMessage: Boolean;
imgImage: TImage;
pnlCentral, pnlTop, pnlMiddle, pnlBottom: T... |
unit testodesolverunit;
interface
uses Math, Sysutils, Ap, odesolver;
function TestODESolver(Silent : Boolean):Boolean;
function testodesolverunit_test_silent():Boolean;
function testodesolverunit_test():Boolean;
implementation
procedure Unset2D(var X : TReal2DArray);forward;
procedure Unset1D(var X : TRe... |
{
LibXml2-XmlTextReader wrapper class for Delphi
Copyright (c) 2010 Tobias Grimm
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, including without limitation... |
{***********************************<_INFO>************************************}
{ <Проект> VScreen }
{ }
{ <Область> 16:Медиа-контроль ... |
PROGRAM MODE;
VAR
num: INTEGER;
BEGIN
WRITE ('Type a number : ');
READ (num);
IF ( (num mod 2) = 0 ) THEN
WRITE ('The number is even')
ELSE
WRITE ('The number is odd');
END. |
(*
* Chhom Seng
* 2015/05/03
*
* WIMInfo
*
* Command-line tool to modify custom XML information in a WIM file. This tool
* supports embed, extract, and remove.
*
* Embed: The user can specify an XML that is to be embedded into the WIM. An
* optional image index parameter can be given to indic... |
/// /////////////////////////////////////////
// Журнал запросов по СОМ-порту
/// /////////////////////////////////////////
unit ComLog;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, GMGlobals, StdCtrls, Clipbrd, GMConst, ExtCtrls,
cxGraphics, cxControls, cxL... |
{*******************************************************}
{ }
{ Borland Delphi Visual Component Library }
{ }
{ Copyright (c) 1995-2001 Borland Software Corporation }
{ ... |
unit diocp_ex_httpClient;
interface
uses
Classes
{$IFDEF POSIX}
, diocp.core.rawPosixSocket
{$ELSE}
, diocp.core.rawWinSocket
, diocp.winapi.winsock2
, SysConst
{$ENDIF}
, SysUtils, utils_URL, utils.strings, diocp_ex_http_common;
const
HTTP_HEADER_END :array[0..3] of Byte=(13,10,13,10);
type
... |
{$INCLUDE ..\cDefines.inc}
unit cInternetUtils;
{ }
{ Internet Utilities 3.04 }
{ }
{ This uni... |
// ##################################
// # TPLVisor - Michel Kunkler 2013 #
// ##################################
(*
Magnetband
*)
unit TPLMagnetband;
interface
uses
Windows, Messages, Variants, Classes, Graphics, Controls, Forms,
StdCtrls, ExtCtrls, Menus,
Dialogs, // Show Message
SysUtils, // Format
TP... |
unit UIntComAtualizacaoTabPreco;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons, FireDAC.Stan.Error,
Data.DB, Vcl.Grids, Vcl.DBGrids, Vcl.ComCtrls, DateUtils, FireDAC.Stan.Intf... |
{*******************************************************}
{ }
{ Delphi Visual Component Library }
{ TStrings property editor dialog }
{ }
{ Copyright (c) 1999 Bor... |
{
girerrors.pas
Copyright (C) 2011 Andrew Haines andrewd207@aol.com
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This prog... |
unit utils_queueTask;
interface
uses
utils.queues, Classes, SysUtils,
{$IFDEF MSWINDOWS} Windows, Messages, ActiveX, {$ENDIF}
SyncObjs;
type
TDTaskWorker = class;
TDQueueTask = class;
TQueueTaskNotifyEvent = procedure(pSender: TDQueueTask; pvTaskData: Pointer) of
object;
TDQueueTask = class(TObj... |
unit Test.ObjectOnline;
interface
uses Windows, Classes, TestFrameWork, GMGlobals, Threads.ObjectOnline, GMSqlQuery, GMBlockValues;
type
TObjectOnlineThreadForTest = class(TObjectOnlineThread)
protected
utOnlineTime: LongWord;
procedure SafeExecute; override;
function OnlineTime: LongWord; override;
... |
{*******************************************************}
{ }
{ Delphi Visual Component Library }
{ }
{ Copyright(c) 1995-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
{*******************************************************}
{ }
{ Delphi FireDAC Framework }
{ FireDAC error handling support }
{ }
{ Copyright(c) 2004-2018 Embar... |
unit LatLon;
interface
type
TLatLon = record
private
fLat : double;
fLon : double;
fRadius : double;
public
constructor Create(const lat: double; const lon: double; const rad : double = 6371.0);
function DistanceTo (const point : TLatLon) : double;
function BearingTo(co... |
{*******************************************************}
{ }
{ Borland Delphi Visual Component Library }
{ }
{ Copyright (c) 1995,99 Inprise Corporation }
{ ... |
unit GroupSearch;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, BasePopup, Data.DB, Vcl.StdCtrls,
Vcl.Grids, Vcl.DBGrids, RzDBGrid, Vcl.Mask, RzEdit, RzLabel,
Vcl.Imaging.pngimage, Vcl.ExtCtrls, RzPanel, Rz... |
unit Soccer.Voting.RuleChooser;
interface
uses
System.SysUtils,
System.Generics.Collections,
Soccer.Exceptions,
Soccer.Voting.AbstractRule,
Soccer.Voting.RulePreferenceList,
Soccer.Voting.Preferences;
type
ISoccerVotingRuleChooser = interface
function ChooseRuleFindWinners(AProfile: TSoccerVoting... |
unit dllinject;
{$mode delphi}
interface
uses
Classes, SysUtils, exereader, Windows, JwaWinType, InstDecode;
type
{ This buffer will be injected into the spawned process. This will be used to
load a dll (target) and execute a function inside it (procname)
See "PayloadProc" proc for more
... |
{**********************************************************************}
{ Unit archived using GP-Version }
{ GP-Version is Copyright 1997 by Quality Software Components Ltd }
{ }
{ For further information / ... |
unit ClassLetterBoard;
interface
uses ClassBaseBoard, ClassLetters, ClassLetterStack, Classes, Controls,
ExtCtrls, Graphics;
const CStoneSize = 20;
CBckgndColor = $00000000;
CEmptyColor = $00B0FFFF;
type TBoardStack = array[1..2] of TStack;
TLetterBoard = class( TBaseBoard )
private
... |
unit Xml.Internal.AbnfUtils;
// AbnfUtils 1.0.1
// Delphi 4 to 2009 and Kylix 3 Implementation
// December 2007
//
//
// 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 BrickCamp.Repositories.IEmployee;
interface
uses
System.JSON,
BrickCamp.Model.TEmployee;
type
IEmployeeRepository = interface(IInterface)
['{1E6661EB-80D8-4A04-A16C-E8EBE3E34660}']
function GetOne(const Id: Integer): TEmployee;
function GetList: TJSONArray;
procedure Insert(const Employee:... |
unit uDMClient;
interface
uses
System.SysUtils, System.Classes, Data.FMTBcd, Datasnap.DBClient,
Datasnap.Provider, Data.DB, Data.SqlExpr, uDM;
type
TDMClient = class(TDataModule)
SQLFuncionarios: TSQLDataSet;
dspFuncionarios: TDataSetProvider;
cdsFuncionario: TClientDataSet;
dspDependentes: TDa... |
object AzPage: TAzPage
Left = 227
Top = 108
BorderStyle = bsDialog
Caption = 'Blob Page'
ClientHeight = 397
ClientWidth = 488
Color = clBtnFace
ParentFont = True
OldCreateOrder = True
Position = poScreenCenter
PixelsPerInch = 96
TextHeight = 13
object Bevel1: TBevel
Left = 8
Top = 8
... |
// **************************************************************************************************
// Delphi Aio Library.
// Unit Greenlets
// https://github.com/Purik/AIO
// The contents of this file are subject to the Apache License 2.0 (the "License");
// you may not use this file except in compliance with... |
unit uTabelaPreco;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uFormPadrao, DB, DBClient, pFIBClientDataSet, cxGraphics, cxControls,
cxLookAndFeels, cxLookAndFeelPainters, cxClasses, cxCustomData, cxStyles,
cxEdit, cxCustomPivotGrid, cxDBPivotGrid, cxFilt... |
unit btrerror;
{text strings of BTrieve Errors }
interface
FUNCTION BtrStatus(StatusNum : INTEGER) : String;
{ Get string describing errors }
FUNCTION BtrOp(OpNum : INTEGER) : String;
{ Get string describing operation. Account for extended ops }
FUNCTION BtrErrReport(OpNum, ErrNum : INTEGER) : String;
{ both funct... |
unit Uforms; // SpyroTAS is licensed under WTFPL
// overrides form class
interface
uses
Utas, Forms, Windows, Messages, Controls, StdCtrls, ExtCtrls, Graphics, Grids,
Classes, SysUtils
{$IFDEF FPC}
, LCLType
{$ELSE} // fix for TCreateParams
, Types
{$ENDIF};
const
CUSTOM_MESSAGE_... |
unit DelphiGenerator;
interface
uses
TechnoGenerator,
classes
, PropertyObj
;
type TDelphiClassGenerator = class(TTechnoClassGenerator)
private
class function getUpperFirstLetterAndPropertyStyleString(const aProp: TProperty; out aUfl: string; out aPss: string): boolean;
class function getConstPrope... |
unit TestDotNetForm1;
interface
uses
System.Drawing, System.Collections, System.ComponentModel,
System.Windows.Forms, System.Data;
type
TWinForm = class(System.Windows.Forms.Form)
{$REGION 'Designer Managed Code'}
strict private
/// <summary>
/// Required designer variable.
/// </... |
unit MyDialogs;
interface
uses
System.SysUtils, System.Classes, System.Types, Vcl.Forms, Vcl.Dialogs, Vcl.Buttons, Vcl.StdCtrls;
type
TDialogs = class
public
class function YesNo(Msg: string; BtnDefault: TMsgDlgBtn = mbNo): integer;
class function YesNoCancel(Msg: string; BtnDefault: TMsgDlgBtn = mbCan... |
{*******************************************************}
{ }
{ Borland Delphi Visual Component Library }
{ }
{ Copyright (c) 1997,98 Inprise Corporation }
{ ... |
{$R-} {Range checking off}
{$B+} {Boolean complete evaluation on}
{$S+} {Stack checking on}
{$I+} {I/O checking on}
{$N-} {No numeric coprocessor}
{$M 65500,16384,655360} {Turbo 3 default stack and heap}
program Anagram;
{Copyright 1985 by Bob Keefer}
{Anagram.Pas takes a word of up to 10 letters from... |
unit macro_3;
interface
implementation
var
G: Int32;
S: string;
F: float64;
#macro ADD(V1, V2);
begin
V1 := V1 + V2;
end;
procedure Test;
begin
S := 'AB';
ADD(S, 'XX');
G := 2;
ADD(G, 8);
F := 1.5;
ADD(F, 2.5);
end;
initialization
Test();
finalization
Assert(S = 'ABXX');
... |
{*******************************************************}
{ }
{ Delphi Visual Component Library }
{ }
{ Copyright(c) 1995-2011 Embarcadero Technologies, Inc. }
{ ... |
unit UnHi;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
... |
// ****************************************************************************
// * mxWebUpdate Component for Delphi
// ****************************************************************************
// * Copyright 2002-2005, Bitvadász Kft. All Rights Reserved.
// *****************************************************... |
(*******************************************************************************
Author:
-> Jean-Pierre LESUEUR (@DarkCoderSc)
https://github.com/DarkCoderSc
https://gist.github.com/DarkCoderSc
https://www.phrozen.io/
License:
-> MIT
*************************************************... |
program hanoi2;
procedure hanoi(num, src, dst: integer);
{ num is a number of a disc }
begin
if num = 0 then
exit;
hanoi(num-1, src, 6-src-dst);
writeln('N', num, ': ', src, ' -> ', dst);
hanoi(num-1, 6-src-dst, dst);
end;
begin
hanoi(3, 1 ,3);
end.
|
// -------------------------------------------------------------------------------
// Descrição: Um programa em Pascal que determina se um determinado número,
// lido do teclado, é par
// -------------------------------------------------------------------------------
// Autor : Fernando Gomes
// Data : 19/08/2021
... |
unit BrowserTab;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, cefvcl, ceflib, ComCtrls, StdCtrls, ToolWin, MainForm;
type
TBrowserTab = class(TForm)
Chromium1: TChromium;
ToolBar2: TToolBar;
btnBack: TButton;
btnForward: TButton;
btnRefr... |
unit UntLanguage_en_US;
interface
const
// Login Screen
sTituloLogin = 'Login';
lbIdioma = 'Language:';
lbUsername = 'Username:';
lbSenha = 'Password:';
btEntrar = 'Send';
btCancelar = 'Cancel';
// ComboBox CBoxLinguagem
sItemPt = 'Portuguese (Brazil)';
sItemEn = 'English (US)';
sMsgErroLogin =... |
unit chfrConversa;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, OleCtrls, cxPC, chBase, ExtCtrls;
type
TchFrameConversa = class(TFrame)
Panel1: TPanel;
private
{ Private declarations }
FNodeID : String;
FTabSheet : TcxTabSheet;
FNodeI... |
unit uSingleton;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
type
{ TSingleton }
TSingleton = class
private
constructor Create;
public
class function InstanceActive(var aPointer: TSingleton): Boolean;
class function GetInstance: TSingleton;
class function NewInstanc... |
////////////////////////////////////////////////////////////////////////////////
//
// ****************************************************************************
// * Project : FWZip
// * Unit Name : FWZipConsts
// * Purpose : Типы и константы используемые для работы с ZIP архивами
// * Author : Александр... |
//
// This unit is part of the GLScene Project, http://glscene.org
//
{: GLODESkeletonColliders<p>
Skeleton colliders for defining and controlling ODE geoms.<p>
<b>History :</b><font size=-1><ul>
<li>10/11/12 - PW - Added CPP compatibility: restored records with arrays instead of vector arrays
... |
{*******************************************************}
{ }
{ Delphi Runtime Library }
{ SOAP Support }
{ }
{ Copyright(c) 1995-2018 Embar... |
//
// Copyright (c) 2009-2010 Mikko Mononen memon@inside.org
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
// Permission is granted to anyone to use this software for any purpose... |
unit SMCnst;
interface
{Chinese Traditional strings}
const
strMessage = '列印...';
strSaveChanges = '確定儲存變更到資料庫?';
strErrSaveChanges = '無法儲存資料! 請檢查伺服器連線或資料正確性.';
strDeleteWarning = '確定要刪除資料表 %s?';
strEmptyWarning = '確定要清空資料表 %s?';
const
PopUpCaption: array [0..24] of string[33] =
('新增紀錄',
... |
unit caStructures;
{$INCLUDE ca.inc}
interface
uses
// Standard Delphi units
Windows,
SysUtils,
Classes,
Math,
Contnrs,
// ca units
caClasses,
caUtils,
caCell,
caMatrix,
caVector,
caTypes;
type
//---------------------------------------------------------------------------
// IcaUniqueP... |
unit func_ccreg_set16;
interface
implementation
type
TEnum16 = (_a00,_a01,_a02,_a03,_a04,_a05,_a06,_a07,_a08,_a09,_a10,_a11,_a12,_a13,_a14,_a15);
TSet16 = packed set of TEnum16;
function F(a: TSet16): TSet16; external 'CAT' name 'func_ccreg_set16';
procedure Test;
var
a, r: TSet16;
begin
a := [_a01];
R... |
{
Planarity Check
O(NE) Demoucron-Malgrange Alg. Implementation O(N4)
Input:
G: UnDirected Simple Graph
N: Number of vertices
Output:
Reference:
West
By Behdad
}
program
PlanarityCheck;
const
MaxN = 50 + 2;
type
TSet = set of 0 .. MaxN;
TBridge = record
V, A, F : TSet; {Vertices, Adj. Ver... |
unit frmAddCertificateU;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, dialogs, IBServices;
type
TfrmAddCertificate = class(TForm)
Label1: TLabel;
edID: TEdit;
OKBtn: TButton;
CancelBtn: TButton;
Label2: TLabel;
Label3: TLabel;
edKey: TEdit;... |
unit untEasySelectDialog;
interface
uses
Windows, Messages, SysUtils, Variants, cxClasses, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, cxGraphics, cxControls, cxLookAndFeels,
cxLookAndFeelPainters, cxStyles,
cxCustomData, cxFilter, cxData, cxDataStorage, cxEdit, DB, cxDBData,
cxGridLeve... |
//
// Copyright (c) 2009-2010 Mikko Mononen memon@inside.org
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
// Permission is granted to anyone to use this software for any purpose... |
unit f05_peminjaman;
interface
uses
csv_parser,
buku_handler,
utilitas,
user_handler,
peminjaman_handler,
tipe_data;
{ DEKLARASI FUNGSI DAN PROSEDUR }
procedure simpan_ke_array(temp: peminjaman; var data_peminjaman: tabel_peminjaman);
procedure pinjam(var data_peminjaman: tabel_peminjaman; var data_buku: tabel_... |
{
Copyright (c) 2005-2006, Loginov Dmitry Sergeevich
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of con... |
unit SearchStorehouseProduct;
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, Fire... |
unit Buf.History;
interface
uses
Vcl.Graphics, System.DateUtils, System.Classes, SQLite3, SQLiteTable3, SQLLang,
HGM.Controls.VirtualTable;
type
THistoryFormat = (hfText, hfImage, hfList, hfOther);
THistoryItem = record
private
FID: Integer;
FFormat: THistoryFormat;
FDate: ... |
unit FIToolkit.Reports.Builder.HTML;
interface
uses
System.Classes, System.SysUtils, System.RegularExpressions, Xml.XMLIntf,
FIToolkit.Reports.Builder.Intf, FIToolkit.Reports.Builder.Types;
type
THTMLReportBuilder = class (TInterfacedObject, IReportBuilder, ITemplatableTextReport)
strict private
FO... |
unit uDependenteDAO;
interface
uses
System.Classes, SysUtils, Data.SqlExpr, uDependente, uDM, uDMClient;
type
TDependenteDAO = class
private
FSQL: TSQLQuery;
public
procedure Salvar(const ADependente: TDependente;
const AEmTransacao: boolean = false);
end;
implementation
{ TDependenteDAO }
... |
unit ThumbFile;
/////////////////////////////////////////////////////////////
// //
// Copyright: © 2002 Renate Schaaf //
// //
// For personal use, do not distribute. ... |
{*******************************************************}
{ }
{ CodeGear Delphi Runtime Library }
{ }
{ Copyright(c) 1995-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
(* WG_Sky: MM 2020
Sky test to evaluate quality of RNG *)
PROGRAM WG_Sky;
USES
{$IFDEF FPC}
Windows,
{$ELSE}
WinTypes, WinProcs,
{$ENDIF}
Strings, WinCrt,
WinGraph,
RandUnit;
PROCEDURE Skytest(dc: HDC; wnd: HWnd; r: TRect); FAR;
CONST
BORDER = 20; (* Padding in pixel *)
... |
{***************************************************************
*
* Project : WSZipCodeServer
* Unit Name: ServerMain
* Purpose : Demonstrates serving Address informaiton data back to client after query on ZIP code
* Version : 1.0
* Date : Wed 25 Apr 2001 - 01:48:02
* Author : <unknown>
* History :
* ... |
unit AImprimeEtiqueta;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, formularios,
ComCtrls, Componentes1, ExtCtrls, PainelGradiente, Mask, numericos, UnClientes,
StdCtrls, Grids, CGrades, Buttons, UnDados, UnImpressaoEtiquetaCotacao, UnDadosProduto, UnCrystal,Cl... |
unit CommonDataProvider.FD;
interface
uses
CommonConnection.Intf, Data.DB, FDConnectionHelper, uGlobal,
UIRestore, DataSetHelper, NGFDMemTable, DMBase,
Spring.Container, Spring.Services,
System.SysUtils, classes, Variants, System.DateUtils,
FireDAC.UI.Intf, FireDAC.Stan.Intf, FireDAC.Comp.UI,
FireDAC.Stan... |
{$A+,B-,D+,E-,F-,G+,I+,L+,N+,O-,P-,Q+,R+,S+,T-,V+,X+,Y+}
{$M 65520,0,655360}
{by Behdad Esfahbod Geometry Exam}
program
ProblemC;
type
Real = Extended;
const
MaxN = 50 + 1;
MaxV = 1325 + 5;
MaxD = 2 * MaxN + 3;
Epsilon = 1E-5;
type
TPoint = record X, Y : Extended; end;
TGVertex = array [0 .. MaxD] o... |
unit Teste.ChangeSetItem.Adapter;
interface
uses
DUnitX.TestFramework, System.JSON, System.JSON.Readers,
Vigilante.Infra.ChangeSetItem.DataAdapter;
type
[TestFixture]
TChangeSetItemAdapterJSONTest = class
private
FChangeSetItem: TJSONObject;
FAdapter: IChangeSetItemAdapter;
procedure Carregar... |
{$A+,B-,D+,E-,F-,G+,I+,L+,N+,O-,P-,Q-,R-,S-,T-,V+,X+,Y+}
{$M 1024,0,0}
{
by Behdad Esfahbod
Algorithmic Problems Book
August '1999
Problem 10 O(N) Dynamic Method
}
program
MaximumSumSubSequence;
var
I, J, BI, BJ : Integer;
R, S, BS : Real;
F : Text;
begin
Assign(F, 'input.txt');
Reset(F);
BS := -1E30;
... |
unit DrawObj;
interface
uses Windows, Classes, Forms, Archive, SysUtils, Controls,
Figure, Global, StorageStruct;
type
TDrawObj = class(TObject)
private
FFormatText: UINT;
FFont: LOGFONT;
FPen: LOGPEN;
FBrush: LOGBRUSH;
FRect: TRect;
FMarkerCursor: TCursor;
FMar... |
unit DockIntf;
interface
uses
AppConstants, Client, Loan;
type
IDock = Interface(IInterface)
['{4D2068E2-715C-42F1-BA30-AC450E95F023}']
procedure DockForm(const fm: TForms; const title: string = '');
procedure AddRecentClient(ct: TClient);
procedure AddRecentLoan(lln: TLoan);
End;
implementati... |
{*******************************************************}
{ }
{ CodeGear Delphi Runtime Library }
{ Copyright(c) 2014-2018 Embarcadero Technologies, Inc. }
{ All rights reserved }
{ ... |
unit frmServerGUIU;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, VCL.Graphics, VCL.Controls, VCL.Forms, VCL.Dialogs,
ReflectorsU, VCL.Buttons, System.Actions, VCL.ActnList,
VCL.ComCtrls,
System.UITypes, VCL.ExtCtrls,
VCL.Imaging.jpeg, Vcl.ToolWin;
type... |
unit CncFileManagerDevice;
interface
uses
SysUtils, Classes, ComCtrls,
JvAppStorage, JvAppIniStorage;
type
TCncFileManagerDevice = class(TComponent)
constructor Create(AOwner : TComponent); override;
private
FDeviceName : string;
FIniStorage : TJvCustomAppMemoryFileStorage;
FDir... |
unit RakNetTypes;
interface
uses
SocketIncludes;
type
//namespace RakNet {
/// Forward declarations
// RakPeerInterface = class;
//class BitStream;
//struct Packet;
TsocketFamily = (
AF_INET,
AF_INET6
);
TStartupResult = (
RAKNET_STARTED,
RAKNET_ALREADY_STARTED,
INVALID_SOCKET_DESC... |
{*******************************************************}
{ }
{ Delphi REST Client Framework }
{ }
{ Copyright(c) 2014-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
{****************************************************}
{* NexusDB Client Messaging *}
{* Provides the ability for NexusDB clients to send messages *}
{* to other clients. *}
{*********************************************************... |
unit CCDAreaDlg;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls, ComCtrls, Spin, Math;
type
TCCDAreaDialog = class(TForm)
OKBtn: TButton;
CancelBtn: TButton;
Bevel1: TBevel;
IAreaE: TEdit;
Label1: TLabel;
SpinButton1: TSpinButton;
pr... |
unit uMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs,ADODB,DB,uDBUpgradeConst,uDBUpgrade, ComCtrls, ImgList, StdCtrls,
ExtCtrls, PngImageList, RzPanel, RzSplit, AdvSplitter, Buttons, RzShellDialogs,
Menus, RzTabs, XPMan, ToolWin, PngCustomButton, PngSpe... |
unit MainFormUnit;
interface
uses
System.SysUtils, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.ExtCtrls, Vcl.ComCtrls, Vcl.Dialogs,
//GLS
GLScene, GLVectorFileObjects, Vcl.StdCtrls, GLBSP, GLMeshCSG,
GLWin32Viewer, GLObjects, GLTexture, GLFile3DS,
GLCrossPlatform, GLMaterial, GL... |
{
Copyright (C) 2012, 2014 Matthias Bolte <matthias@tinkerforge.com>
Redistribution and use in source and binary forms of this file,
with or without modification, are permitted. See the Creative
Commons Zero (CC0 1.0) License for more details.
}
unit TimedSemaphore;
{$ifdef FPC}
{$mode OBJFPC}{$H+}
{$else}... |
unit DACThread;
interface
uses Classes, Windows, Math, SysUtils, ltr34api, Dialogs, ltrapi, Config;
type TDACThread = class(TThread)
public
stop:boolean;
DAC_level:array of DOUBLE;
debugFile: TextFile;
destructor Free();
procedure CheckError(err: Integer);
constructor Create(ltr34: pTLTR34;... |
unit int_not_i8;
interface
implementation
var I: UInt8;
procedure Test;
begin
I := 128;
I := not I;
end;
initialization
Test();
finalization
Assert(I = 127);
end. |
unit ccuUtils;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, ccuGrids, ccuDataStringGrid, StdCtrls, unicodeclasses;
type
PSearchRec = ^TSearchRec;
procedure SetStdDirectoryW(var Dir: WideString);
function GetStdDirectoryW(const Dir: WideString): W... |
unit AProdutos;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls, ComCtrls, DBTables, Db, DBCtrls, Grids, DBGrids,
Buttons, Menus, formularios, PainelGradiente,
Tabela, Componentes1, LabelCorMove, Localizacao, Mask, UnDadosProduto,
EditorIm... |
{*******************************************************}
{ }
{ Delphi FireMonkey Platform }
{ }
{ Copyright(c) 2011 Embarcadero Technologies, Inc. }
{ ... |
{*******************************************************}
{ }
{ Delphi DBX Framework }
{ }
{ Copyright(c) 1995-2011 Embarcadero Technologies, Inc. }
{ ... |
unit RTDebug;
interface
Uses Windows, Messages, SysUtils, Classes, MGRegistry;
Const
MG_RTD_AddReference =WM_USER+12123;
MG_RTD_DelReference =MG_RTD_AddReference+1;
MG_RTD_GetListHandle =MG_RTD_AddReference+2;
REG_KEY ='\Software\MaxM_BeppeG\RTDebug\';
REG_LOGFILE ... |
{
SHA-1 implementation based on two Public Domain implementations by
Steve Reid <steve@edmweb.com>
Jordan Russell <jr-2010@jrsoftware.org>
100% Public Domain
}
unit SHAone;
{$ifdef FPC}{$mode OBJFPC}{$H+}{$endif}
interface
uses
{$ifdef FPC}
Sockets
{$else}
{$ifdef MSWINDOWS}
WinSock
{$els... |
unit uDbCustomObject;
interface
uses System.Classes, System.SysUtils, Data.DB, Datasnap.DBClient, uConexaoPadrao,
////// FireDAC ////////
FireDAC.Phys.FB, FireDAC.Phys.MySQL, FireDAC.Comp.UI, FireDAC.DApt, FireDAC.Comp.Client, Datasnap.Provider;
Type
TOnMessageInfo = Procedure (sMessageInfo: string) of ... |
{*******************************************************}
{ }
{ Delphi DataSnap Framework }
{ }
{ Copyright(c) 1995-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
{********************************************}
{ TeeChart Pro Charting Library }
{ Copyright (c) 1995-2004 by David Berneda }
{ All Rights Reserved }
{********************************************}
unit TeeFuncEdit;
{$I TeeDefs.inc}
interface
uses {$IFNDEF LINUX}
Windows, Mes... |
unit SMCnst;
interface
{Russian strings}
const
strMessage = 'Печать...';
strSaveChanges = 'Вы хотите сохранить внесенные изменения на сервере?';
strErrSaveChanges = 'Данные не удалось сохранить! Проверьте соединение с сервером и допустимость введенных данных.';
strDeleteWarning = 'Вы действительно хо... |
{*******************************************************}
{ }
{ Delphi DBX Framework }
{ }
{ Copyright(c) 1995-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.