text stringlengths 14 6.51M |
|---|
{
Clever Internet Suite
Copyright (C) 2013 Clever Components
All Rights Reserved
www.CleverComponents.com
}
unit clCertificateStore;
interface
{$I clVer.inc}
uses
{$IFNDEF DELPHIXE2}
Classes, SysUtils, Windows,
{$ELSE}
System.Classes, System.SysUtils, Winapi.Windows,
{$ENDIF}
clCertificate, clCertific... |
unit CleanArch_EmbrConf.Adapter.Impl.ParkingLotAdapter;
interface
uses
CleanArch_EmbrConf.Adapter.interfaces,
CleanArch_EmbrConf.Core.Entity.Interfaces,
CleanArch_EmbrConf.Core.Entity.Impl.ParkingLot;
type
TParkingLotAdapter = class(TInterfacedObject, iParkingLotAdapter)
private
FParkingLot : iPark... |
unit ScrollRegions;
interface
uses
Windows;
function GetScrollUpdateRegion(const target : HWND; dx, dy : integer) : HRGN;
implementation
function GetOverlappedRegion(const which : HWND; dx, dy : integer) : HRGN; forward;
function GetScrollUpdateRegion(const target : HWND; dx, dy : integer) : HRGN;
var
... |
var i, a, b: integer;
function mod(x, y: integer): integer;
begin
mod := x - x / y * y
end;
begin
for i:= 100 to 999 do
begin
a := i / 100;
b := mod(i, 10);
if a = b then write(" ", i)
end
end.
|
// Upgraded to Delphi 2009: Sebastian Zierer
(* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* 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 a... |
namespace Sugar.Shared.Test.Tests;
interface
uses
Sugar,
RemObjects.Elements.EUnit;
type
TimeSpanTest = public class(Test)
private
protected
public
method Operators;
method FromToDateTime;
method &From;
method Values;
end;
implementation
method TimeSpanTest.Operat... |
unit evTableHotSpot;
{* Реализация интерфейсов IevHotSpotTester и IevAdvancedHotSpot для таблицы. }
{ Библиотека "Эверест" }
{ Автор: Люлин А.В. © }
{ Модуль: evTableHotSpot - }
{ Начат: 03.11.2000 14:12 }
{ $Id: evTableHotSpot.pas,v 1.58 2015/01/19 18:36:36 lulin Exp $ }
// $Log: evTableHotSpot.pas,v $
// ... |
unit SysRecords;
interface
uses
Types,Classes,Graphics;
type
//保留字/关键字
TWWWord = packed record
Mode : SmallInt; //类型
BegPos : LongInt; //起始位置
EndPos : LongInt; //结束位置
LinkID : LongInt; //相关联的Word位置
end;
... |
unit gradius3_hw;
interface
uses {$IFDEF WINDOWS}windows,{$ENDIF}
nz80,m68000,main_engine,controls_engine,gfx_engine,rom_engine,
pal_engine,sound_engine,ym_2151,k052109,k051960,k007232;
function iniciar_gradius3:boolean;
implementation
const
//gradius3
gradius3_rom:array[0..1] of tipo_roms=... |
unit uconvert;
{$MODE Delphi}
interface
uses
SysUtils, Classes, Graphics, Controls, StdCtrls, ExtCtrls, Forms, MPHexEditor;
type
TdlgConvert = class(TForm)
Button1: TButton;
Button2: TButton;
Label1: TLabel;
cbFrom: TComboBox;
Label2: TLabel;
cbTo: TComboBox;
procedure cbFromChange(S... |
unit D_TxSrch;
{$Include l3Define.inc}
interface
{$IFDEF ARCHI}
{$INCLUDE ArchiDefine.inc}
{$ELSE}
{$DEFINE NotArchiProject}
{$ENDIF ARCHI}
uses
SysUtils,
WinTypes,
WinProcs,
Messages,
Classes,
Graphics,
Controls,
ImgList,
Menus,
Forms,
Dialogs,
StdCtrls,
Buttons,
ExtCtrls,
... |
unit FFSStatusBar;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
LMDCustomControl, LMDCustomPanel, LMDCustomBevelPanel,
LMDCustomStatusBar, LMDStatusBar, lmdgraph, FFSTypes;
type
TFFSStatusBar = class(TLMDStatusBar)
private
FFieldsColorScheme: TFie... |
unit BarSettingForma;
interface
{$I defines.inc}
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, MemTableDataEh, Db, MemTableEh, GridsEh, DBGridEh, FIBQuery, pFIBQuery,
OkCancel_frame, StdCtrls, ComCtrls, ToolWin, ExtCtrls,
ToolCtrlsEh, DBGridEhToolCtrls, DBAxisGrids... |
{
$Project$
$Workfile$
$Revision$
$DateUTC$
$Id$
This file is part of the Indy (Internet Direct) project, and is offered
under the dual-licensing agreement described on the Indy website.
(http://www.indyproject.org/)
Copyright:
(c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All r... |
PROGRAM XPrint(INPUT, OUTPUT);
CONST
Min = 1;
Last = 5;
Max = 25;
TYPE
Sieve = SET OF Min .. Max;
VAR
SymbolCode: Sieve;
PROCEDURE EncodingSymbol(VAR FIn: TEXT; VAR ManyNumbers: Sieve);
VAR
Ch: CHAR;
BEGIN {EncodingSymbol}
READ(FIn, Ch);
ManyNumbers := [];
IF Ch = 'A'
THEN
ManyNumbers := [... |
unit uConsts;
interface
const
CONST_IMAGE_HEIGHT = 64;
CONST_IMAGE_WIDTH = 64;
CONST_MARGIN_LEFT = 8;
CONST_MARGIN_TOP = 8;
CONST_FILE_TYPES: array [1..3] of String = ('jpg', 'bmp', 'png');
CONST_MAX_THREADS = 32;
implementation
end.
|
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
unit fb2txt_dispatch;
{$WARN SYMBOL_PLATFORM OFF}
interface
uses
ComObj, ActiveX, FB2_to_TXT_TLB, StdVcl, fb2txt_engine;
type
TFB2TXTExport = class(TAutoObject, IFB2TXTExport)
public
procedure AfterConstruction; Override;
procedure BeforeDestruction; override;
protected
function Get_Encoding: In... |
unit Unit1;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
Androidapi.JNI.TTS, FMX.StdCtrls, FMX.Layouts, FMX.Memo, AndroidAPI.JNIBridge,
Androidapi.JNI.Speech, Androidapi.JNI.Os, Androidapi.JNI.Grap... |
{*******************************************************}
{ }
{ EldoS Markup Language Generator (MlGen) Demo }
{ }
{ Copyright (c) 1999-2001 Mikhail Chernyshev }
{ ... |
{$I ok_sklad.inc}
unit WBMetaItem;
interface
uses
ssClientDataSet, XMLDoc, XMLIntf,
MetaClass, MetaDoc, MetaPrice, Classes;
type
TWBMetaItemType = (WBMetaItemUnTyped = -1, WBMetaItemTangible = 0, WBMetaItemService = 1);
// a single position in waybills, etc
TWBMetaItem = class(TMetaClass)
... |
unit l3SimpleMM;
{* Простейший менеджер памяти, выделяющий сразу большие куски. }
{ Библиотека "L3 (Low Level Library)" }
{ Автор: Люлин А.В. © }
{ Модуль: l3SimpleMM - }
{ Начат: 27.02.2002 16:30 }
{ $Id: l3SimpleMM.pas,v 1.23 2013/04/03 15:29:32 lulin Exp $ }
// $Log: l3SimpleMM.pas,v $
// Revision 1.23 2013/04/03... |
unit k2List;
{ Библиотека "K-2" }
{ Автор: Люлин А.В. © }
{ Модуль: k2List - }
{ Начат: 22.02.99 19:26 }
{ $Id: k2List.pas,v 1.102 2011/07/11 17:48:11 lulin Exp $ }
// $Log: k2List.pas,v $
// Revision 1.102 2011/07/11 17:48:11 lulin
// {RequestLink:228688745}.
//
// Revision 1.101 2010/01/11 13:17:28 lulin
// ... |
unit G2Mobile.Controller.FormaPagamento;
interface
uses FMX.ListView, System.Classes, Datasnap.DBClient, FireDAC.Comp.Client,
FMX.Objects;
type
iModelFormaPagamento = interface
['{41C159D2-C15E-4FE4-BFA8-BED2E1B4F9C3}']
function BuscaFormaPagamentoServidor(ADataSet: TFDMemTable): iModelFormaPagamento;
... |
unit MdPersonalData;
interface
uses
SysUtils, Classes, Controls, StdCtrls;
type
TMdPersonalData = class(TComponent)
private
FAge: Integer;
FLastName: string;
FFirstName: string;
fLabel: TLabel;
function GetDescription: string;
procedure SetAge(const Value: Integer);
procedure SetFir... |
unit SearchAndReplaceTest;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "TestFormsTest"
// Модуль: "w:/common/components/gui/Garant/Daily/SearchAndReplaceTest.pas"
// Родные Delphi интерфейсы (.pas)
// Generated from UML model... |
unit VCMSandBoxRes;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Модуль: "VCMSandBoxRes.pas"
// Родные Delphi интерфейсы (.pas)
// Generated from UML model, root element: VCMApplication::Class Shared Delphi Sand Box$App::VCMSandBox::VCMS... |
unit Unt_Principal;
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.Samples.Gauges,
Vcl.ExtCtrls;
type
TLoopThread = class(TThread)
private
FTempoTr... |
{*******************************************************}
{ }
{ Delphi FireMonkey Notification Service }
{ }
{ Description of interface for notificatione center }
{ ... |
{ Version 1.0 - Author jasc2v8 at yahoo dot com
This is free and unencumbered software released into the public domain.
For more information, please refer to <http://unlicense.org>}
unit httpserverunit;
{$mode objfpc}{$H+}
interface
uses {$IFDEF UNIX} {$IFDEF UseCThreads}
cthreads, {$ENDIF} {$ENDIF}
SysUtils, C... |
unit VIORDmp;
interface
uses
SysUtils, Types, Classes, Variants,
{$IFDEF LINUX}
QGraphics, QControls, QForms, QDialogs, QStdCtrls,
{$ELSE}
Graphics, Controls, Forms, Dialogs, StdCtrls,
{$ENDIF}
orb_int,
orb,
poa_int,
poa_impl,
exceptions,
except_int,
orbtypes,
iior_int,
ior;
type
TForm1 ... |
{
Clever Internet Suite
Copyright (C) 2014 Clever Components
All Rights Reserved
www.CleverComponents.com
}
unit clDkimSignature;
interface
{$I clVer.inc}
uses
{$IFNDEF DELPHIXE2}
Classes, SysUtils, Contnrs, DateUtils,
{$ELSE}
System.Classes, System.SysUtils, System.Contnrs, System.DateUtils,
{$ENDIF}
... |
unit NLDTRTTIUtils;
{
:: NLDTRTTIUtils contains some wrapper classes and functions around the
:: RunTime Type Information API provided by Delphi. This makes working with
:: RTTI a bit easier.
:$
:$
:$ NLDTranslate is released under the zlib/libpng OSI-approved license.
:$ For more information:... |
unit DataContainers.TestSuite;
interface
uses
TestFramework, System.SysUtils, ValidationRules.TDataTypeValidationRule,
System.Variants, Utils.TArrayUtil, Framework.Interfaces,
DataContainers.TField, ValidationRules.TMaxLengthValidationRule,
ValidationRules.TIsEmptyValidationRule;
type
TTFieldTes... |
unit MFichas.Model.Entidade.VENDA;
interface
uses
DB,
Classes,
SysUtils,
Generics.Collections,
/// orm
ormbr.types.blob,
ormbr.types.lazy,
ormbr.types.mapping,
ormbr.types.nullable,
ormbr.mapping.classes,
ormbr.mapping.register,
ormbr.mapping.attributes;
type
[Entity]
[Table(... |
{!DOCTOPIC}{
Type » TFloatArray
}
{!DOCREF} {
@method: function TFloatArray.Len(): Int32;
@desc: Returns the length of the array. Same as 'Length(arr)'
}
function TFloatArray.Len(): Int32;
begin
Result := Length(Self);
end;
{!DOCREF} {
@method: function TFloatArray.IsEmpty(): Boolean;
@desc: Returns Tr... |
unit ce_editoroptions;
{$I ce_defines.inc}
interface
uses
Classes, SysUtils, Graphics, SynEdit, SynEditMouseCmds, SynEditMiscClasses,
SynEditKeyCmds, Menus, LCLProc,
ce_interfaces, ce_observer, ce_common, ce_writableComponent, ce_synmemo,
ce_d2syn, ce_txtsyn;
type
(**
* Container for the editor and hi... |
unit InputDialog;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, buttons ;
type
TInputDialog = class(TComponent)
private
FCancelButton: boolean;
FHelpButton: boolean;
FPasswordChar: char;
FMaxLength: integer;
FDialogCapt... |
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
//** Построитель рамок вокруг фона-изображения.
unit uGUIBorder;
interface
uses Graphics,
// Own units
UCommon;
//** Создатель рамок вокруг фона-изображения.
type
TGUIBorder = class(THODObject)
private
public
TL, DL, TR, DR, HLine, VLine: TBitMap;
procedure Make(var AImage: TBitMap);... |
{
cocoamsgbox.pas
This example shows how to use the objective-c runtime headers to call
initialization and finalization code for an objective-c class (in this case
NSAutoreleasePool), and also shows a message box using minimal AppKit
bindings to demonstrate that this can be used to build Cocoa applications.
Co... |
unit Unit1;
interface
uses
Windows, Messages, SysUtils, {Variants,} Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Memo1: TMemo;
Edit1: TEdit;
Button1: TButton;
Label1: TLabel;
procedure Button1Click(Sender: TObject);
private
{ Privat... |
unit clAssinantesJornal;
interface
uses udm, System.SysUtils, Vcl.Dialogs, clConexao;
type
TAssinantesJornal = class(TObject)
private
FID: Integer;
FCodigo: String;
FModalidade: Integer;
FProduto: String;
FOrdem: Integer;
FQuantidade: Integer;
FNome: String;
FTipoLogradouro: Strin... |
unit DW.PermissionsRequester {$IF CompilerVersion > 32} deprecated 'use System.Permissions'{$ENDIF};
{*******************************************************}
{ }
{ Kastri Free }
{ ... |
unit SensorFrame;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, IniFiles, Misc, ExtCtrls, SyncObjs;
type
TFrameSensor = class(TFrame)
Panel1: TPanel;
cbRepair: TCheckBox;
stStatus: TStaticText;
Label3: TLabel;
edNetNumber: TEdit;
Labe... |
unit untPrincipal;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Data.DB, Data.DBXMySQL,
Datasnap.DBClient, SimpleDS, Vcl.Grids, Vcl.DBGrids, Vcl.StdCtrls,
Vcl.ExtCtrls, Vcl.ComCtrls, untProduto, SqlExpr;
... |
unit MainForm;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
ExtCtrls;
type
{ TMainForm }
TMainForm = class(TForm)
NextButton: TButton;
ExitButton: TButton;
InputEdit: TEdit;
OutPutEdit: TEdit;
InputLabel: TLabel;
Out... |
{ Date Created: 5/22/00 11:17:33 AM }
unit InfoPOLCOLLTable;
interface
uses
Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf;
type
TInfoPOLCOLLRecord = record
PlenderID: String[4];
PModCount: SmallInt;
Pprefix: String[3];
PpolicyNumber: String[7];
PCollateralIndex: Stri... |
unit FmFilterSelect;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, ShellApi, Vcl.ExtCtrls, Vcl.StdCtrls, VirtualTrees, System.RegularExpressions;
type
TFmSelelectFilter = class(TForm)
pnlMain: TPanel;
... |
{*******************************************************}
{ }
{ CodeGear Delphi Runtime Library }
{ Copyright(c) 2016 Embarcadero Technologies, Inc. }
{ All rights reserved }
{ ... |
unit FFSTabSheet;
interface
uses ComCtrls, Forms;
type
TFormType = (ftClaim, ftPolicy, ftLoan, ftEntSoa, ftLendSoa);
TFFSTabSheet = class(TTabSheet)
private
FKey3: String;
FKey2: String;
FKey1: String;
FFormType: TFormType;
FSearch: boolean;
FForm: TForm;
... |
{*********************************************************************
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Autor: Brovin Y.D.
* E-mail: y... |
{ Subroutine SST_W_C_VALUE (VAL,ENCLOSE)
*
* Write a constant value. VAL is the descriptor for the value.
* ENCLOSE indicates whether the final expression should be enclosed in
* parentheses. Values of ENCLOSE can be:
*
* ENCLOSE_YES_K - Enclose in parentheses, if neccessary, to make the
* entire ... |
unit l3CustomString;
{ Библиотека "L3 (Low Level Library)" }
{ Автор: Люлин А.В. © }
{ Модуль: l3CustomString - }
{ Начат: 05.02.2008 15:53 }
{ $Id: l3CustomString.pas,v 1.19 2013/05/24 15:59:50 lulin Exp $ }
// $Log: l3CustomString.pas,v $
// Revision 1.19 2013/05/24 15:59:50 ... |
unit SpontaneousBuildings;
interface
uses
Protocol, Kernel, PopulatedBlock, Surfaces, BackupInterfaces;
type
TGrowthDir = (dirN, dirE, dirS, dirW);
type
TSpontaneousBuilding = class;
TNeighborBuildings = array[TGrowthDir] of TSpontaneousBuilding;
TNeighborBlocked = array[TGrowthDir] of ... |
unit DW.iOSapi.Foundation;
interface
uses
Macapi.ObjectiveC,
iOSapi.Foundation;
type
NSLocaleKey = NSString;
NSLocaleClass = interface(NSObjectClass)
['{4597A459-6F9B-49F4-8C80-3F8ED8FDB9D1}']
{class} function autoupdatingCurrentLocale: NSLocale; cdecl;
{class} function availableLo... |
uses ptcGraph, ptcCrt, functions;
type
func_t = function (x : real) : real;
const AX = -5;
BX = 5;
AY = -20;
BY = 20;
intr_a = -2;
intr_b = -1;
INF = 10000000;
YEL = Yellow;
SPL_X = 10;
SPL_Y = 40;
WIDTH = 5;
var
intr1, intr2, intr... |
(*
* 计算 MurmurHash64,根据网友 歼10 的代码修改,支持大文件。
*
* https://blog.csdn.net/baiyunpeng42/article/details/45339937
* https://blog.csdn.net/chenxing888/article/details/5912183
*)
unit iocp_mmHash;
interface
{$I in_iocp.inc}
uses
{$IFDEF DELPHI_XE7UP}
Winapi.Windows, System.SysUtils, {$ELSE}
Windows, SysUtils, {$EN... |
unit BaiduMapAPI.LocationService;
//author:Xubzhlin
//Email:371889755@qq.com
//百度地图API 定位服务 单元
//官方链接:http://lbsyun.baidu.com/
//TAndroidBaiduMapLocationService 百度地图 定位服务
interface
uses FMX.Maps;
type
TOnUserLocationWillChanged = procedure(Sender:TObject; UserLocation:TMapCoordinate) of object;
IBaiduMapLocati... |
unit GetComputerInfo;
interface
uses
Winapi.Windows, System.SysUtils, NB30, WinSock;
function GetComputerNetName: string;
function GetLocalIP: string;
function GetAdapterInfo(Lana: Char): string;
function GetMACAddress: string;
implementation
// Функция определения имени компьютера
function GetComputerNe... |
unit MdiChilds.SplitAltayPriceByZone;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, MdiChilds.CustomDialog, JvBaseDlg,
JvSelectDirectory, Vcl.StdCtrls, Vcl.Samples.Spin, Vcl.ExtCtrls,
MdiChilds.reg, MdiCh... |
unit ObjectIndex;
interface
uses
SysUtils, Classes;
type
TObjectID = integer;
type
PIndexEntry = ^TIndexEntry;
TIndexEntry =
packed record
Id : TObjectID;
Obj : TObject;
Flg : boolean;
end;
const
MaxIndexSixe = $7FFFFFFF div sizeof(TIndexEntry); // ... |
unit ValidateSessionUnit;
interface
uses SysUtils, BaseExampleUnit;
type
TValidateSession = class(TBaseExample)
public
procedure Execute(SessionGuid: String; MemberId: integer);
end;
implementation
uses UserUnit;
procedure TValidateSession.Execute(SessionGuid: String; MemberId: integer);
var
Err... |
unit daDataProviderSuperFactory;
// Модуль: "w:\common\components\rtl\Garant\DA\daDataProviderSuperFactory.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TdaDataProviderSuperFactory" MUID: (54F85B590251)
{$Include w:\common\components\rtl\Garant\DA\daDefine.inc}
interface
uses
l3IntfUses
, l3ProtoObject
, ... |
unit Optimizer.P2P;
interface
uses
SysUtils,
Optimizer.Template, Global.LanguageString, Registry.Helper;
type
TP2POptimizer = class(TOptimizationUnit)
public
function IsOptional: Boolean; override;
function IsCompatible: Boolean; override;
function IsApplied: Boolean; override;
function GetNa... |
{
WAV format reader for the fpSound library
License: The same modified LGPL as the LCL
Authors:
JiXian Yang
Felipe Monteiro de Carvalho
Canonical WAV file description here:
https://ccrma.stanford.edu/courses/422/projects/WaveFormat/
}
unit fpsound_wav;
{$mode objfpc}
interface
uses
Classes, SysUtils, Math,
... |
unit MFichas.Model.Configuracao.Metodos.Buscar.View;
interface
uses
System.SysUtils,
MFichas.Model.Configuracao.Interfaces,
FireDAC.Comp.Client,
FireDAC.Comp.DataSet;
type
TModelConfiguracaoMetodosBuscarView = class(TInterfacedObject, iModelConfiguracaoMetodosBuscarView)
private
[weak]
FParent ... |
unit ObjectFromstackWords;
// Модуль: "w:\common\components\rtl\Garant\ScriptEngine\ObjectFromstackWords.pas"
// Стереотип: "ScriptKeywordsPack"
// Элемент модели: "ObjectFromstackWords" MUID: (507698410297)
{$Include w:\common\components\rtl\Garant\ScriptEngine\seDefine.inc}
interface
{$If NOT Defined(NoScripts)}
... |
{
A set is a collection of objects of the same type.
If S is a set of type T, then every object in T may
or may not belong to S.
The empty set: []
Basic operations are:
+ Union
* Intersection
- Difference
= Equality
<> Inequality
<= Is contained in
>= Contains
In Inclusion
}
program sets(inpu... |
unit Login;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.Imaging.jpeg,
Vcl.StdCtrls, Vcl.Buttons;
type
TFrmLogin = class(TForm)
ImgBackground: TImage;
edtUsuario: TEdit;
edtS... |
unit WorkWithGrids;
interface
uses Classes, Grids, Winapi.Windows;
// показать файл в стринггриде
// CodePage - 0 = DOS866 1 - win1251
procedure ShowFileInStringGrid(sgFile: TStringGrid; const FileName: string; const CodePage: Integer;
const SkeepEmpty: Boolean = False);
// Загрузка фадйа в StringList
// CodePa... |
//=============================================================================
// sgInput.pas
//=============================================================================
//
// Responsible for input event processing for mouse visibility, movement and
// button clicks (including the scroll wheel as button clicks) an... |
unit main;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, Mask, ToolEdit;
type
TForm1 = class(TForm)
DirectoryEdit1: TDirectoryEdit;
Label1: TLabel;
RgpOpenMode: TRadioGroup;
RgpShareMode: TRadioGroup;
Button1: TBut... |
{ *******************************************************************************
Copyright (c) 2004-2010 by Edyard Tolmachev
IMadering project
http://imadering.com
ICQ: 118648
E-mail: imadering@mail.ru
******************************************************************************* }
unit CLSearch... |
{******************************************************************************}
{ }
{ Library: Fundamentals 5.00 }
{ File name: flcCipherTest.pas ... |
// --------------------------------------------------------------------------
// Archivo del Proyecto Ventas
// Página del proyecto: http://sourceforge.net/projects/ventas
// --------------------------------------------------------------------------
// Este archivo puede ser distribuido y/o modificado bajo lo terminos ... |
{ Subroutine SST_W_C_IMPLICIT_VAR (DTYPE,V)
*
* Create an implicit variable. DTYPE is the descriptor for the data type of
* the new variable. V is filled in to be the descriptor for the new variable.
* The variable will be declared, and installed in the symbol table.
}
module sst_w_c_IMPLICIT_VAR;
define sst_... |
object TClaveDlg: TTClaveDlg
Left = 301
Top = 206
ActiveControl = Nombre
BorderStyle = bsDialog
Caption = 'Ingrese su Nombre y Clave'
ClientHeight = 110
ClientWidth = 384
Color = clBtnFace
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Verdana'
Font.Style ... |
{
Copyright (C) Alexey Torgashin, uvviewsoft.com
License: MPL 2.0 or LGPL
}
unit MyPanel;
{$ifdef FPC}
{$mode objfpc}{$H+}
{$endif}
interface
uses
Classes, SysUtils, Graphics, Controls, ExtCtrls, Types;
procedure Register;
type
{ TMyPanel }
TMyPanel = class(TCustomControl)
private
FBorderWidth: integ... |
unit unitAction;
interface
uses classes;
type
TAction = class(TObject)
private
{ Private declarations }
public
{ Public declarations }
frames: TList;
caption: String;
nextAction: String;
soundfile: String;
trigger: String;
constructor Create(ncaption: string);
end;
... |
unit uExportarTipos;
interface
uses
System.SysUtils, System.Classes, uArquivoTexto, uDM, uFireDAC,
uTipoVO, System.Generics.Collections, uGenericDAO;
type
TExportarTipo = class
private
FArquivo: string;
public
procedure Exportar();
function Importar(): TObjectList<TTipoVO>;
constructor Cr... |
unit MarkAddressAsVisitedUnit;
interface
uses SysUtils, BaseExampleUnit;
type
TMarkAddressAsVisited = class(TBaseExample)
public
procedure Execute(RouteId: String; AddressId, MemberId: integer;
IsVisited: boolean);
end;
implementation
procedure TMarkAddressAsVisited.Execute(RouteId: String;
A... |
unit ExtAINetClient;
interface
uses
Classes, SysUtils, Math,
ExtAICommonClasses, ExtAISharedNetworkTypes, ExtAINetClientOverbyte;
type
TNewDataEvent = procedure (aData: Pointer; aDataType, aLength: Cardinal) of object;
TExtAINetClientImplementation = TNetClientOverbyte;
TExtAINetClient = class
private
... |
unit k2FileGenerator;
{* Базовый писатель тегов в файл. }
{ Библиотека "K-2" }
{ Автор: Люлин А.В. © }
{ Модуль: k2FileGenerator - }
{ Начат: 21.02.2005 18:55 }
{ $Id: k2FileGenerator.pas,v 1.8 2013/04/05 16:44:40 lulin Exp $ }
// $Log: k2FileGenerator.pas,v $
// Revision 1.8 2013/04/05 16:44:40 lulin
//... |
program SmartPtr01;
{$MODE DELPHI}
{$APPTYPE CONSOLE}
uses
heaptrc,
SysUtils,
Nullable in '..\sources\Nullable.pas'
;
var
a: TNullable<string>;
b: TNullable<Integer>;
nns: TNullable<TNullable<string>>;
begin
if nns = nil then
WriteLn('nullable for nullable string works :)');
... |
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
unit ChannelEditForma;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, DB, FIBDataSet, pFIBDataSet, FIBDatabase,
pFIBDatabase, StdCtrls, DBCtrls, Mask, DBCtrlsEh, ExtDlgs,
uDBImages, Vcl.Imaging.Jpeg, Vcl.Imaging.pngimage, EhLibVCL, Vcl.Buttons,
DBGridEh, ... |
unit DAO.AtribuicoesExpressas;
interface
uses FireDAC.Comp.Client, System.SysUtils, DAO.Conexao, Model.AtribuicoesExpressas;
type
TAtribuicoesExpressasDAO= class
private
FConexao : TConexao;
public
constructor Create;
function GetID(): Integer;
function Inserir(AAtribuicoes: TAtribuicoesExpressas): Boo... |
program ejercicio9;
const
dimF = 500;
type
vnombres = array[1..dimF] of String;
procedure cargarVectorAlumnosA(var v:vnombres; var dimL:Integer);
var
nom: String;
begin
write('Ingrese el nombre del alumno: ');
readln(nom);
while (dimL < dimF) and (nom <> 'zzz') do
begin
dimL:= dimL + 1;
v[dimL]:= nom;
... |
unit evTableRowHotSpot;
{* Реализация интерфейсов IevHotSpotTester и IevHotSpot для строки таблицы. }
{ Библиотека "Эверест" }
{ Автор: Люлин А.В. © }
{ Модуль: evTableRowHotSpot - }
{ Начат: 01.11.2000 13:15 }
{ $Id: evTableRowHotSpot.pas,v 1.72 2015/01/19 18:36:36 lulin Exp $ }
// $Log: evTableRowHot... |
unit uGnFormProgress;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, StdCtrls;
type
TFormCzProgress = class(TForm)
ProgressBar1: TProgressBar;
bCancel: TButton;
lMessage: TLabel;
procedure bCancelClick(Sender: TObject);
... |
{====================================================}
{ }
{ EldoS Visual Components }
{ }
{ Copyright (c) 1998-2003, EldoS Corporation }
{ ... |
{*_* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Program: TNCNX.PAS
Object: Delphi component which implement the TCP/IP telnet protocol
including some options negociations.
RFC854, RFC885, RFC779, RFC1091
Author: François PIETTE
EMail: fra... |
unit uICUGCU300FirmwareDownload;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Gauges, ExtCtrls, RzPanel, RzRadGrp, StdCtrls, Buttons,
RzButton, RzLabel, Grids, AdvObj, BaseGrid, AdvGrid, LMDCustomComponent,
LMDIniCtrl,iniFiles, uSubForm, CommandArray;
typ... |
unit rtclib;
/////////////////////////////////////////////////////////////////////////////
//
// library
// rtclib
//
// description
// support scanlab's rtc4,5
//
// author
// hcchoi@koses.co.kr
//
// history
// v1.0 2013.9.16 hcchoi first release
//
// class diagram
//
// Rtc
// /|\
// |
// |
// ... |
{Realice un programa que lea y almacene el salario de los empleados de una empresa de turismo (a
lo sumo 300 empleados). La carga finaliza cuando se lea el salario 0 (que no debe procesarse) o
cuando se completa el vector. Una vez finalizada la carga de datos se pide:
a. Realizar un módulo que incremente el salario de... |
unit nsLangToContextMap;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "Diction"
// Модуль: "w:/garant6x/implementation/Garant/GbaNemesis/Diction/nsLangToContextMap.pas"
// Родные Delphi интерфейсы (.pas)
// Generated from UML ... |
unit DocumentPrintAndExportFontSizeSettingRes;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "View"
// Модуль: "DocumentPrintAndExportFontSizeSettingRes.pas"
// Родные Delphi интерфейсы (.pas)
// Generated from UML model, root ... |
unit kwPopFormMDIChildCount;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "ScriptEngine"
// Модуль: "w:/common/components/rtl/Garant/ScriptEngine/kwPopFormMDIChildCount.pas"
// Родные Delphi интерфейсы (.pas)
// Generated from... |
unit gb_sound;
interface
uses {$IFDEF WINDOWS}windows,{$ENDIF}sound_engine;
const
NR10=$00;
NR11=$01;
NR12=$02;
NR13=$03;
NR14=$04;
NR21=$06;
NR22=$07;
NR23=$08;
NR24=$09;
NR30=$0A;
NR31=$0B;
NR32=$0C;
NR33=$0D;
NR34=$0E;
NR41=$10;
NR42=$11;
NR43=$12;
NR44=$13;
NR50=$14;
NR51=$... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.