text stringlengths 14 6.51M |
|---|
unit RandomForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, StdCtrls, ScTypes;
type
TfmRandom = class(TForm)
ProgressBar: TProgressBar;
lbInform: TLabel;
btClose: TButton;
procedure FormMouseMove(Sender: TObject; Shift: TShiftState; X,
... |
{ Jessica's Directory }
program JDIR;
const
{ Configuration }
OUTPUT_BY_COLUMN = True; { True output by column, False by row. }
PAGE_SIZE = 22; { Number of rows per-page. }
{ Set to 0 for no pagination. }
PARAM_LENGTH = 32; { Maximum length ... |
unit uCtrlObject;
interface
uses Classes, SysUtils, mconnect,Variants,DB, uDbCustomObject, DbClient,
uDbObject, Windows, Vcl.Dialogs, FireDAC.Comp.DataSet;
type TOperacaoBd = (dbInsert, dbUpdate, dbDelete);
type TFiltro = class(TObject)
public
procedure getIndexes(campo: TStringList; valores: String);
... |
{*******************************************************}
{ }
{ Delphi REST Client Framework }
{ }
{ Copyright(c) 2013-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
unit ListSupport;
(*
* 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 copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distribut... |
unit FileName;
interface
uses
SysUtils, PropEdits, Controls, Classes;
Type
TFileNameProperty = class(TStringProperty)
public
function GetAttributes: TPropertyAttributes; override;
procedure Edit; override;
end;
//procedure Register;
implementation
uses
Dialogs
, Forms;
f... |
unit uwlxprototypes;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, WlxPlugin, LCLType;
{$IFDEF MSWINDOWS}{$CALLING STDCALL}{$ELSE}{$CALLING CDECL}{$ENDIF}
type
{ Mandatory }
TListLoad = function (ParentWin: HWND; FileToLoad: PAnsiChar; ShowFlags: Integer): HWND;
{ Optional }
TListL... |
program SubstringChecker;
{$mode objfpc}{$H+}
uses {$IFDEF UNIX} {$IFDEF UseCThreads}
cthreads, {$ENDIF} {$ENDIF}
Classes,
SysUtils,
CustApp,
SubstringChecking;
type
{ SubstringChecker }
TSubstringChecker = class(TCustomApplication)
protected
procedure DoRun; override;
public
constructor ... |
unit MemFile;
interface
uses
SysUtils;
type
TSeek = (_BEGIN, _END, _CURRENT);
EGrowFile = Exception;
TMemFile = class (TObject)
private
protected
m_Buffer: PChar;
m_BufferSize: Cardinal;
m_Position: Cardinal;
m_FileSize: Cardinal;
m_GrowBytes: Cardinal;
... |
unit SubParametersQuery2;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs,
FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Param,
FireDAC.Stan.Error, FireDAC.DatS, FireDAC.Phys.Intf, FireDAC.DApt.Intf,
... |
{*******************************************************}
{ }
{ FMX UI EditView 编辑框 }
{ }
{ 版权所有 (C) 2016 YangYxd }
{ ... |
{
zpatchbuilder
x1nixmzeng (September 2010)
Checksum functionality
Thanks to TheivingSix and aluigi
}
unit ZPatch;
interface
uses Windows, Classes, SysUtils;
const
NO_KEY = $0;
type
ZPatchNode = record
Success : Boolean; // Marks successful checksum
FileName : String; //... |
unit NtUtils.Shellcode.Dll;
interface
uses
Winapi.WinNt, NtUtils.Exceptions, Ntapi.ntpsapi;
const
PROCESS_INJECT_DLL = PROCESS_QUERY_LIMITED_INFORMATION or PROCESS_VM_WRITE or
PROCESS_VM_OPERATION or PROCESS_CREATE_THREAD;
INJECT_DEAFULT_TIMEOUT = 5000 * MILLISEC;
// Inject a DLL into a process using Loa... |
{*******************************************************}
{ }
{ Delphi DBX Framework }
{ }
{ Copyright(c) 1995-2018 Embarcadero Technologies, Inc. }
{ All rights rese... |
unit IdCoderMIME;
interface
uses
Classes,
IdCoder3to4;
type
TIdEncoderMIME = class(TIdEncoder3to4)
public
constructor Create(AOwner: TComponent); override;
end;
TIdDecoderMIME = class(TIdDecoder4to3)
public
constructor Create(AOwner: TComponent); override;
end;
const
GBase64CodeTable: str... |
{ *************************************************************************** }
{ }
{ Kylix and Delphi Cross-Platform Visual Component Library }
{ }
... |
{*******************************************************}
{ }
{ Borland Delphi Visual Component Library }
{ Win32 Synchronization objects }
{ }
{ Copyright (c) 1997,98... |
unit LetterFrm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Mask, Buttons, ExtCtrls, ComCtrls, Utilits, ToolWin, CommCons;
type
TLetterForm = class(TForm)
BtnPanel: TPanel;
OkBtn: TBitBtn;
CancelBtn: TBitBtn;
TopicGroupBox: TGr... |
program MatrixSummen (input, output);
{ ueberprueft bei einer Matrix von integer-Zahlen, ob
jede Spaltensumme groesser ist als die Zeilensumme einer
angegebenen Zeile }
const
ZEILENMAX = 3;
SPALTENMAX = 4;
type
tMatrix = array [1..ZEILENMAX, 1..SPALTENMAX] of integer;
var
Matrix : tMatrix;
ZeilenN... |
{ ******************************************************* }
{ }
{ Delphi FireMonkey Platform }
{ }
{ Copyright(c) 2016 Embarcadero Technologies, Inc. }
{ All rights reserved }
{ }
{ ******************************************************* }
unit FMX.Canvas.GPU;
interface
{$SCOPEDENUMS ON}
{$HINTS OFF}
uses
System.... |
unit ANovoPlanoCorte;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, formularios,
Grids, CGrades, Componentes1, ExtCtrls, PainelGradiente, UnDadosProduto,
StdCtrls, Localizacao, Mask, numericos, Buttons, UnOrdemProducao, DBKeyViolation, Constantes;
type
TFN... |
unit NtUtils.Transactions;
interface
uses
Winapi.WinNt, Ntapi.nttmapi, NtUtils.Exceptions, NtUtils.Objects;
type
TTransactionProperties = record
IsolationLevel: Cardinal;
IsolationFlags: Cardinal;
Timeout: TLargeInteger;
Outcome: TTransactionOutcome;
Description: String;
end;
// Create a t... |
UNIT
MaidOutfit;
CONST
GameDir = 'D:\Games\Steam\steamapps\common\Skyrim Special Edition';
JsonFile = '\data\meshes\dcc-maid\outfits.json';
IMPLEMENTATION
FUNCTION MaidReplaceFormID(
Input: String;
OutfitID: String;
VariantName: String;
EditPrefix: Boolean;
): String;
VAR
Output: String;
BEGIN
Out... |
unit LoanApprovalDetail;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, BasePopupDetail, Vcl.StdCtrls,
Vcl.DBCtrls, RzDBEdit, RzDBCmbo, Vcl.Mask, RzEdit, RzButton, RzTabs, RzLabel,
Vcl.Imaging.pngimage, Vcl.... |
unit MapSetFieldValueBasedOnLayerValueUnit;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Buttons, ExtCtrls, wwdblook, RPFiler, RPDefine, RPBase, ComObj,
RPCanvas, RPrinter, Db, DBTables, Wwtable, MapObjects2_TLB, MapSetupObjectType,
ComCtrls, Grids;
type
... |
unit setsu;
interface
uses Windows, Controls, Forms, Classes, SysUtils, Registry, gdip_gfx, toolu;
type
_SetsContainer = record
CellSize: integer;
Border: integer;
Space: integer;
Radius: integer;
PrevMonth: boolean;
NextMonth: boolean;
BaseAlpha: integer;
Blur: boolean;
Position... |
Unit UnAtualizacao1;
interface
Uses Classes, DbTables,SysUtils;
Type
TAtualiza1 = Class
Private
Aux : TQuery;
DataBase : TDataBase;
procedure AtualizaSenha( Senha : string );
public
function AtualizaTabela(VpaNumAtualizacao : Integer) : Boolean;
function Atualiza... |
//
// 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 Teste.Compilacao.Adapter;
interface
uses
DUnitX.TestFramework, System.SysUtils, System.JSON, System.JSON.Readers,
Vigilante.Infra.Compilacao.DataAdapter;
type
[TestFixture]
TCompilacaoJSONDataAdapterTest = class
private
FJson: TJSONObject;
FAdapter: ICompilacaoAdapter;
procedure CarregarA... |
{**********************************************************************}
{* Иллюстрация к книге "OpenGL в проектах Delphi" *}
{* Краснов М.В. softgl@chat.ru *}
{**********************************************************************}
unit Unit1;
interface
use... |
{*!
* 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 RequestIntf;
interface
{$MODE OBJFPC}
{$H+}
uses
ListIntf;... |
unit WkeIntf;
interface
uses
Windows, WkeTypes;
type
IWkeWebView = interface;
IWkeJs = interface;
IWkeWebBase = interface
['{E8396C1B-5B38-44DA-8218-C8F60F1E162E}']
function GetWindowName: WideString;
function GetHwnd: HWND;
function GetResourceInstance: THandle;
function GetBoundsRect: TR... |
unit ExtraChargeForm;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, DictonaryForm, cxGraphics,
cxLookAndFeels, cxLookAndFeelPainters, Vcl.Menus, dxSkinsCore, dxSkinBlack,
dxSkinBlue, dxSkinBlueprint, dxSkin... |
unit GestionarCuentaCredito;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, UnitCuentaCredito, Vcl.StdCtrls;
type
TFormGestionarCuenta = class(TForm)
Button1: TButton;
Button3: TButton;
Label1: TL... |
{*
CustomSaveDialog.pas
--------------------
Begin: 2006/04/01
Last revision: $Date: 2011-10-25 05:05:07 $ $Author: areeves $
Version number: $Revision: 1.7 $
Project: APHI General Purpose Delphi Libary
Website: http://www.naadsm.org/opensource/delphi/
Author: Aaron Reeves <aaron.reeves@naadsm.org>
--------------------... |
unit testcalc;
interface
uses
DUnitX.TestFramework,
calculate;
type
[TestFixture]
TTestCalc = class(TObject)
private
calc:TCalculate;
public
[Setup]
procedure Setup;
[TearDown]
procedure TearDown;
// Test with TestCase Attribute to supply parameters.
[Test]
[TestCase('Test... |
{**********************************************************************}
{* Иллюстрация к книге "OpenGL в проектах Delphi" *}
{* Краснов М.В. softgl@chat.ru *}
{**********************************************************************}
unit frmMain;
interface
u... |
unit uClassicParser;
{$I ..\Include\IntXLib.inc}
interface
uses
{$IFDEF DELPHI}
Generics.Collections,
{$ENDIF DELPHI}
uParserBase,
uIParser,
uStrRepHelper,
uIntXLibTypes;
type
/// <summary>
/// Classic parsing algorithm using multiplication (O[n^2]).
/// </summary>
TClassicPar... |
unit main;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types,FMX.Memo.Types,FMX.Platform.Win,FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Objects, FMX.Layouts,Windows,Messages, FMX.StdCtrls, FMX.Effects,
FMX.Ani, System.Math.Vectors, FMX.Control... |
(*
NC通讯操作及解析
原始作者:王云涛
建立时间:2011-12-02
*)
unit u_NCAPI;
interface
uses
SysUtils, Classes, xmldom, XMLIntf, msxmldom, XMLDoc, Variants, IdHTTP, BASEXMLAPI, u_ICBCRec;
type
//签名信息
TSignRec = record
RtCode: string;
RtStr: string;
DataStr: string;
end;
//验签信息
... |
unit Main;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls,
{$IFDEF ANDROID}
AndroidApi.Helpers, FMX.Platform.Android, Androidapi.JNI.Widget, FMX.Helpers.Android,
{$ENDIF}
FMX.Contro... |
unit uEmprestimoDao;
interface
uses
FireDAC.Comp.Client, uConexao, uEmprestimoModel, System.SysUtils;
type
TEmprestimoDao = class
private
FConexao: TConexao;
VQry: TFDQuery;
public
constructor Create;
function Incluir(EmprestimoModel: TEmprestimoModel): Boolean;
function Excluir(Empre... |
{ *********************************************************************** }
{ }
{ Delphi Runtime Library }
{ }
{ Copyright (c) ... |
#skip
unit using_2;
interface
implementation
uses System;
// const еквивалентно ref
type
TArray<T> = record
private
FData: array of T;
public
procedure Add(const Value: T);
function GetItem(Index: Integer): T;
end;
// обьявление массива с not null элементами:
// 1 - var A: array of !TO... |
unit Ths.Erp.Database.Connection;
interface
uses
System.SysUtils, Forms,
FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Param, FireDAC.Stan.Error,
FireDAC.DatS, FireDAC.Stan.Async, FireDAC.DApt, FireDAC.UI.Intf, FireDAC.Stan.Def,
FireDAC.Stan.Pool, FireDAC.Phys, FireDAC.Phys.PG, FireDAC.VCLUI.Wait, Data... |
unit fOMSet;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, CheckLst, rOrders, uConst, ORFn, rODMeds, fODBase,uCore,fOrders, fframe, fBase508Form,
VA508AccessibilityManager;
type
TSetItem = class
public
DialogIEN: Integer;
DialogType: Char;
OI... |
unit uMain;
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.ListBox;
type
TForm3 = class(TForm)
ComboBox1: TComboBox;
Button1: TButto... |
unit Utils;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, StdCtrls, ExtCtrls, ImgList{, ccuDataStringGrid,
UniCodeClasses};
const
TMyBooleanStringArray: array [Boolean] of String = ('FALSE', 'TRUE');
type
PSearchRec = ^TSearchRec;
procedure Se... |
unit setbit_1;
interface
implementation
var
V: array [4] of UInt8;
procedure Test;
begin
setbit(V, 7 + 8*2, True);
end;
initialization
Test();
finalization
Assert(V[2] = 128);
end. |
{*******************************************************}
{ }
{ CodeGear Delphi Runtime Library }
{ Copyright(c) 2012-2018 Embarcadero Technologies, Inc. }
{ All rights reserved }
{ ... |
{*******************************************************************************
* *
* TksAppEvents - Application Events Component *
* ... |
unit UViewImg;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.Objects, FMX.Platform, System.Math,
FMX.ExtCtrls, FMX.Ani, FMX.Effects, FMX.Layouts, System.IOUtils, Effect;
type
TViewImage = class(TBitMap)
pr... |
unit frm_template;
{$i xPL.inc}
{$r *.lfm}
interface
uses Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
ExtCtrls, ActnList, Menus, Buttons, StdCtrls, RTTICtrls, LSControls,
u_xPL_Collection, RxAboutDialog, Dlg_Template;
type // TFrmTemplate =================================... |
unit RecursiveTreeQuery;
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, FireDAC.DAp... |
unit LineItemList;
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, Vcl.DBCt... |
{
ID: asiapea1
PROG: starry
LANG: PASCAL
}
program starry;
type
cluster=array[0..101,0..101]of integer;
const
d:array[1..8,1..2]of integer=((0,1),(1,1),(1,0),(1,-1),
(0,-1),(-1,-1),(-1,0),(-1,1));
var
i,j,k,m,n,width,height,ans:longint;
p:array[1..300]of cluster;
... |
{
Mystix
Copyright (C) 2005 Piotr Jura
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 program is distributed i... |
{$N+,E+,H-}
unit uFuncoesString;
(* Esta "unit" e composta por diversas funcoes de manipulacao de strings. *)
interface
uses DateUtils, SysUtils;
const
MaxString = 255;
type
Str2 = string[2];
Str3 = string[3];
Str4 = string[4];
Str5 = string[5];
Str6 = string[6];
Str... |
{************************************************************}
PROGRAM WhatPortIsTheMouseOn; { Sept 18/93, Greg Estabrooks}
TYPE
MouseParamTable = RECORD
BaudRate :WORD; { Baud Rate Div 100}
Emulation :WORD;
ReportRate :WORD; { Report Rate... |
{ **********************************************************************}
{ }
{ DeskMetrics DLL - dskMetricsVars.pas }
{ Copyright (c) 2010-2011 DeskMetrics Limited }
{ ... |
unit dUtils;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Unix, process;
type
TExplodeArray = Array of String;
const
AllowedChars = ['A'..'Z','a'..'z','0'..'9','/',',','.','?','!',' ',':','|','-','=','+','@','#','*',
'%','_','(',')','$'];
type
{ TdmUtils }
TdmUt... |
object AzBlockBlob: TAzBlockBlob
Left = 227
Top = 108
BorderStyle = bsDialog
Caption = 'Create Block Blob'
ClientHeight = 529
ClientWidth = 512
Color = clBtnFace
ParentFont = True
OldCreateOrder = True
Position = poScreenCenter
PixelsPerInch = 96
TextHeight = 13
object Bevel1: TBevel
Left ... |
{ Copyright (C) 1998-2018, written by Shkolnik Mike, Scalabium Software
E-Mail: mshkolnik@scalabium.com
mshkolnik@yahoo.com
WEB: http://www.scalabium.com
This component allow translate a number into verbal string.
For using you need:
- drop it on form
- define a desirable number in Va... |
unit ca8087;
{$INCLUDE ca.inc}
interface
uses
// Standard Delphi units
Windows,
SysUtils,
Classes,
// ca units
caClasses,
caTimer,
caUtils;
type
Tca8087ExceptionFlag = (efInvalid, efDenormalized, efZeroDivide, efOverflow, efUnderflow, efPrecision);
Tca8087ExceptionFlags = set of Tca8087Exc... |
{*******************************************************}
{ }
{ Delphi DBX Framework }
{ }
{ Copyright(c) 1995-2011 Embarcadero Technologies, Inc. }
{ ... |
unit NtUtils.Objects.Snapshots;
interface
uses
Ntapi.ntexapi, NtUtils.Objects, NtUtils.Exceptions, Ntapi.ntpsapi;
type
TProcessHandleEntry = Ntapi.ntpsapi.TProcessHandleTableEntryInfo;
TSystemHandleEntry = Ntapi.ntexapi.TSystemHandleTableEntryInfoEx;
TObjectEntry = record
ObjectName: String;
Other: ... |
unit uoclidata;
interface
uses SysUtils;
// TCstDB provides constants for all other classes depending on the client.
// Constants can be locations of client variables, delta values between blocks
// of memory, addresses that point to code (for events) or flags for enabling
// new features in later clients.
t... |
uses crt
, SysUtils;
{
@Developer: Babichev Maxim
@KSU, year: 2013 - 2014
@Program: MaxiBasic
@Version: 0.5
}
Const
Shift = $100;
DetermineTheTypesOf : packed
array[1..4] of
packed record
Name : String[20];
Size : Byte;
Arithmetic : boolean;
end = (
(Name ... |
unit FC.StockChart.UnitTask.Bars.StatisticsDialog;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Contnrs,
Dialogs, BaseUtils,SystemService, ufmDialogClose_B, ufmDialog_B, ActnList, StdCtrls, ExtendControls, ExtCtrls, Spin,
StockChart.Definitions,StockChart.Definitions... |
unit cVillage;
interface
type Tvillage = class
//=== Protected ================================================================
Protected
fID :Integer;
fName :String;
fpos_x :Integer;
fpos_y :Integer;
fOwner :Integer;
fPoints :Integer;
fBonus :Integer;
//=== Public ============================... |
namespace RemObjects.SDK.CodeGen4;
uses
RemObjects.Elements.RTL;
type
RodlLibrary = public class (RodlEntity)
private
fXmlDocument: XmlDocument; // only for supporting SaveToFile
fJsonNode: JsonNode; // only for supporting SaveToFile
fStructs: EntityCollection<RodlStruct>;
fArrays: EntityColle... |
unit vr_process;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, process, UTF8Process, Pipes, strutils, LConvEncoding
{$IFDEF WINDOWS},Windows{$ENDIF};
type
IProgramByLine = interface;
TProgramByLineEvent = procedure(const Sender: IProgramByLine; const ALine: string;
const AIsAddToL... |
{/////////////////////////////////////////////////////////////////////////////////////////////////////////////
Модуль для управления почтой по средствам IMAP
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
13.06.2015 - К сожале... |
{ }
{ Readers v3.08 }
{ }
{ This unit is copyright © 1999-2004 by David J Butler ... |
////////////////////////////////////////////////////////////////////////////////
//
//
// FileName : SUIMemo.pas
// Creator : Shen Min
// Date : 2002-08-22 V1-V3
// 2003-07-02 V4
// Comment :
//
// Copyright (c) 2002-2003 Sunisoft
// http://www.sunisoft.com
// Email: supp... |
unit Contatos2.model.contatos;
interface
uses
Contatos2.model.interfaces, Contatos2.entidade.contatos,
System.Generics.Collections, Contatos2.model.ConstSQL, firedac.stan.param,
System.JSON;
Type
TModelContatos = Class(TInterfacedObject, iModelContatos)
Private
Flista : TObjectList<TContatos>;
... |
unit NsLibSSH2Session;
interface
uses
Windows, SysUtils, Classes, WinSock, libssh2, NsLibSSH2Const;
type
TAuthType = (atNone, atPassword, atPublicKey);
type
TNsLibSSH2Session = class(TComponent)
private
FServerIP: string;
FServerPort: Integer;
FUsername: string;
FPassword: string;
FPubli... |
unit ncListaEspera;
{
ResourceString: Dario 13/03/13
}
interface
uses
SysUtils,
DB,
MD5,
Classes,
Windows,
ClasseCS,
ncSessao,
ncClassesBase;
type
TncItemListaEspera = class
private
function GetString: String;
procedure SetString(const Value: String);
published
public
ilID ... |
unit Trans;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
type
TMapLoc = packed record
Xpos: Byte;
Ypos: Byte;
end;
const
Ln = #13#10;
//table needed for encoding area names
Table: array [$00..$FF] of string[5] = (
{ 0 1 2 3 4 5 6 7 8... |
{
Global declarations for the Lazarus Mazes program
Copyright (C) 2012 G.A. Nijland (eny @ lazarus forum http://www.lazarus.freepascal.org/)
This source 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; ... |
unit uAutonicsTZHeater;
interface
uses
CPort, AssThreadTimer, Contnrs;
type
TAutonicsTZHeaterCommandType = (atzcmdNone,
atzcmdReadPV,
atzcmdReadSV,
atzcmdWriteSV);
TAutonicsTZHeaterCommand = class
private
FCommand : TAutonicsTZHeaterCommandType... |
unit uFileSourceListOperation;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
uFileSourceOperation,
uFileSourceOperationTypes,
uFile,
uFileSource;
type
{ TFileSourceListOperation }
TFileSourceListOperation = class(TFileSourceOperation)
private
FFileSource: IFileSour... |
unit AMaterialRotulo;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, formularios,
BotaoCadastro, StdCtrls, Buttons, Componentes1, ExtCtrls, PainelGradiente,
Db, DBTables, Tabela, CBancoDados, Grids, DBGrids, DBKeyViolation,
Localizacao, Mask, DBCtrls, DBClient... |
{####################################################################################################################
TINJECT - Componente de comunicação (Não Oficial)
www.tinject.com.br
Novembro de 201... |
{*******************************************************}
{ }
{ Borland Delphi Visual Component Library }
{ }
{ Copyright (c) 2000-2002 Borland Software Corporation }
{ ... |
unit Ths.Erp.Database.Table.BankaSubesi;
interface
{$I ThsERP.inc}
uses
SysUtils, Classes, Dialogs, Forms, Windows, Controls, Types, DateUtils,
FireDAC.Stan.Param, System.Variants, Data.DB,
Ths.Erp.Database,
Ths.Erp.Database.Table,
Ths.Erp.Database.Table.Banka,
Ths.Erp.Database.Table.SysCity;
type
TBa... |
(*******************************************************************************
Author:
-> Jean-Pierre LESUEUR (@DarkCoderSc)
https://github.com/DarkCoderSc
https://gist.github.com/DarkCoderSc
https://www.phrozen.io/
License:
-> MIT
********************************************... |
unit upublictype;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms;
type
TZhiXingSQL=function(const ASQL:string):NativeInt;
TChaXunSQL=function(const ASQL:string; AStream:TStream):NativeInt;
TShangChuanFile=function(const AClientFile,AServerFile:string):NativeInt;
TXiaZaiFile=function(const ACl... |
(****************************************************************************)
(* *)
(* REV97.PAS - The Relativity Emag (coded in Borland Pascal 7.0) *)
(* *)
(* "... |
{$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
September '1999
Problem 38 O(N3) Bfs Method
}
program
MinimumDiameterSpanningTree;
const
MaxN = 100;
var
N, E : Integer;
A, T : array [1 .. MaxN, 0 .. MaxN] of Integer;
M : array [1 .. MaxN... |
unit IdHashCRC;
{
2001-Oct-23 Pete Mee
- Fixed CRC-32.
}
interface
uses
Classes,
IdHash;
type
TIdHashCRC16 = class(TIdHash16)
public
function HashValue(AStream: TStream): Word; override;
end;
TIdHashCRC32 = class(TIdHash32)
public
function HashValue(AStream: TStream): LongWord; override;
... |
unit fElevation;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, Buttons,
ExtCtrls, uShowMsg;
type
{ TfrmElevation }
TfrmElevation = class(TForm)
btnOK: TBitBtn;
btnCancel: TBitBtn;
chkElevateAll: TCheckBox;
imgShield: T... |
{***********************************************}
{ TArrowSeries (derived from TPointSeries) }
{ Copyright (c) 1995-2004 by David Berneda }
{***********************************************}
unit ArrowCha;
{$I TeeDefs.inc}
interface
{ TArrowSeries derives from standard TPointSeries.
Each point in the serie... |
unit MainForm;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, System.Hash, IdHashMessageDigest;
type
TForm1 = class(TForm)
btnIndyMD5: TButton;
memInput: TMemo;
memOutput: TMemo;
... |
{
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
Dialog for editing database item, not body!
... |
unit AES_XTS;
(*************************************************************************
DESCRIPTION : AES XTS mode functions
REQUIREMENTS : TP5-7, D1-D7/D9-D10/D12, FPC, VP
EXTERNAL DATA : ---
MEMORY USAGE : ---
DISPLAY MODE : ---
REMARKS : 1. The IV and buf fields of the ma... |
unit Finance.Currency;
interface
uses
Finance.interfaces,
System.JSON;
type
TFinanceCurrency = class(TInterfacedObject, iFinanceCurrency)
private
FParent : iFinanceCurrencies;
FCode : string;
FName : string;
FBuy : string;
FSell : string;
FVariation : str... |
unit kwicDescriptor;
interface
uses nxllStreams, nxsdDataDictionaryFullText;
type
(*
TnxKwicDescriptor = class;
TnxKwicDescriptorclass = class of TnxKwicDescriptor;
TnxKwicTokenExtractor = class;
TnxKwicTokenExtractorclass = class of TnxKwicTokenExtractor;
*)
TnxKwicTokenExtractorDescriptor = class(TnxF... |
{
Ultibo Custom Font Creator.
Copyright (C) 2016 - Kerry Shipman.
Licence
=======
LGPLv2.1 with static linking exception (See COPYING.modifiedLGPL.txt)
Credits
=======
Parts and pieces for this program were found on many blogs and forum posts.
Many thanks to the great Delphi and ObjectPascal community.
Window... |
unit ufrmSysPermissionSource;
interface
{$I ThsERP.inc}
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, ComCtrls, StrUtils, Vcl.AppEvnts,
Vcl.Menus, Vcl.Samples.Spin,
Ths.Erp.Helper.Edit,
Ths.Erp.Helper.Memo,
Ths.Erp.Helper.ComboBox,
ufrmBa... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.