text
stringlengths
14
6.51M
{ } { XML Components v3.00 } { } { This unit is copyright © 2004 by David J Butler ...
unit Main; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, SMLang, StdCtrls, Menus, ComCtrls, ToolWin; type TfrmMain = class(TForm) tbMain: TToolBar; ImageList1: TImageList; ToolButton1: TToolButton; ToolButton2: TToolButton; ToolButton...
{***********************************<_INFO>************************************} { <Проект> Библиотека медиа-обработки } { } { <Область> 16:Медиа-контроль ...
unit IdRawHeaders; interface uses IdStack; // TODO: research subtypes of ICMP header type // types redeclared to avoid dependencies on stack declarations { TIdSunB = packed record s_b1, s_b2, s_b3, s_b4: byte; end; TIdSunW = packed record s_w1, s_w2: word; end; PIdInAddr = ^TIdInAddr; TIdIn...
unit u_timer_pool; {$mode objfpc}{$H+} interface uses Classes , SysUtils , fpc_delphi_compat ; type // TTimerPool ============================================================ TTimerPool = class(TComponent) protected fList : TList; public constructor Crea...
unit UnitNameCaps; {(*} (*------------------------------------------------------------------------------ Delphi Code formatter source code The Original Code is UnitNameCaps, released June 2003. The Initial Developer of the Original Code is Anthony Steele. Portions created by Anthony Steele are Copyright (C) ...
unit Security4D.UnitTest.Authorizer; interface uses Security4D, Security4D.Impl, Security4D.UnitTest.Credential, System.SysUtils; type TAuthorizer = class(TSecurityProvider, IAuthorizer) private { private declarations } protected function HasRole(const role: string): Boolean; function HasP...
unit uPluginManager; interface uses SysUtils, Classes, {$IFDEF MSWINDOWS} Windows, {$ENDIF} {$IFDEF LINUX} Libc, {$ENDIF} uPlugInDefinitions; type TPlugin = class(TCollectionItem) private fHandle: THandle; fName: String; public destructor Destroy; override; ...
{ Version 12 Copyright (c) 2011-2012 by Bernd Gabriel 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 the rights to use, copy, modify, merge, pu...
unit ncaFrmTotal3; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, cxContainer, cxEdit, cxLabel, LMDControl, LMDCustomControl, LMDCustomPanel, LMDCustomBevelPanel, LMDSimplePanel, cxTextEdit, cxMe...
unit JAParticleSystem; {$mode objfpc}{$H+} interface uses JTypes, JATypes, JASpatial; type TJAParticle = record Position : TVec2; Velocity : TVec2; Rotation : Float32; RotationVelocity : Float32; Colour : TJColour; Age : Float32; Death : Float32; ...
unit datetime_1; interface implementation var dt: DateTime; procedure Test; begin dt := Now(); end; initialization Test(); finalization Assert(dt <> 0); end.
unit uLibraries; interface uses ShareMem,windows, classes, SysUtils, uTypes, uErrorConst; type TDllInfoProc = function:TDllInfo; stdcall; TDllTerminateProc = procedure; stdcall; TDllRunProc = procedure; stdcall; TDllInitializeProc = procedure; stdcall; TDllGetErrorStrProc = function(code:byte):...
{ Copyright (C) 1998-2018, written by Shkolnik Mike, Scalabium E-Mail: mshkolnik@scalabium.com mshkolnik@yahoo.com WEB: http://www.scalabium.com Dataware TEditTyped component } unit EditTypeDB; interface {$I SMVersion.inc} uses Windows, Messages, Classes, Controls, DBCtrls, DB, E...
unit CRCUnit; { CRC Unit } // Cyclic Redundancy Check Algorithms : CRC32 // Copyright (c) 2015 ChrisF // Distributed under the terms of the MIT license: see LICENSE.txt {$IFDEF FPC} {$MODE OBJFPC}{$H+} // {$MODE DELPHI} {$ENDIF} //------------------------------------------------------------------------------...
 //*****************************************************************************************************\\ // Copyright (©) Cergey Latchenko ( github.com/SunSerega | forum.mmcs.sfedu.ru/u/sun_serega ) // This code is distributed under the Unlicense // For details see LICENSE file or this: // https://github.com/Su...
{$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 14 O(N2) Bfs Algorithm } program ShortestPath; const MaxN = 100; var N, U, V : Integer; A : array [1 .. MaxN, 1 .. MaxN] of Integer; Q, P : array [1 .. MaxN] of Integer...
{ Copyright (C) 1998-2011, written by Mike Shkolnik, Scalabium Software E-Mail: mshkolnik@scalabium WEB: http://www.scalabium.com Türkçeleştirme: M. Özgür UĞUR Data Yazılım Ltd. İzmir/Turkiye Const strings for localization freeware SMComponent library } unit SMCnst; inte...
{**********************************************************************} {* Иллюстрация к книге "OpenGL в проектах Delphi" *} {* Краснов М.В. softgl@chat.ru *} {**********************************************************************} unit Unit1; interface uses...
unit FC.StockChart.UnitTask.Calendar.NavigatorDialog; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ufmDialogClose_B, StdCtrls, CheckLst, ComCtrls, ExtCtrls, ExtendControls, StockChart.Definitions.Units, FC.Definitions, Mask, Spin, ActnList, FC.StockChart.C...
{ Copyright (c) 2021, 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 conditions and ...
{ *************************************************************************** } { } { Delphi and Kylix Cross-Platform Visual Component Library } { } ...
unit BrickCamp.Repositories.TProduct; interface uses System.JSON, Spring.Container.Injection, Spring.Container.Common, BrickCamp.IDB, BrickCamp.Model.TProduct, BrickCamp.Repositories.IProduct; type TProductRepository = class(TInterfacedObject, IProductRepository) protected [Inject] FDb: IBrickCampD...
(* Syntaxtree Abstract: MM, 2020-05-01 *) (* ------ *) (* A unit to display syntax trees in abstract form *) (* ========================================================================= *) ...
unit sysutils_getcallstack_3; interface implementation uses sys.rtti, sys.utils; type TStrArray = array of string; var CS: TCallStack; Names: TStrArray; function GetProcNames(CS: TCallStack): TStrArray; begin SetLength(Result, Length(CS)); for var i := 0 to Length(CS) - 1 do Result[i] := CS...
unit xpParse; (* * 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 distributed o...
unit fLkUpLocation; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, fAutoSz, StdCtrls, ORCtrls, ORFn, VA508AccessibilityManager; type TfrmLkUpLocation = class(TfrmAutoSz) lblInfo: TLabel; cboLocation: TORComboBox; lblLocation: TLabel; cmdOK: TButton; ...
unit Musiques; interface type TMusiques = Record Note1 : string; Note2 : string; Note3 : string; Note4 : string; Duree : single; end; const // The Bare Necessities // MELODIE (Main droite) Musique1_MD: Array[0..27] of TMusiques =( (Duree:1;) ,(Note1:'Do3'; ...
unit IdLogDebug; interface uses Classes, IdLogBase, IdException, IdSocketHandle; type TIdLogDebugTarget = (ltFile, ltDebugOutput, ltEvent); const ID_TIDLOGDEBUG_TARGET = ltFile; type TLogItemEvent = procedure(ASender: TComponent; var AText: string) of object; TIdLogDebug = class(TIdLogBase) protec...
unit UPedidoDadosGeraisController; interface uses UDmVenda, UPedidoDadosGerais, System.SysUtils, Data.DB; type IPedidoDadosGeraisController = interface function Getobj: TPedidoDadosGerais; procedure Setobj(const Value: TPedidoDadosGerais); function lstPedidoDadosGerais: OleVariant; fun...
unit UProduto; interface uses UGenerico, UMarca, UCategoria, UUnidade; type Produto = class(Generico) protected Tipo : string[1]; umaMarca : Marca; umaCategoria : Categoria; umaUnidade : Unidade; quantidade : Real; icms : ...
/// <summary> /// <para> /// These components are for reading and writing the Wallet Keys to a /// local file. /// </para> /// <para> /// The File Structure is as follows: /// </para> /// <list type="table"> /// <listheader> /// <term>Byte Length</term> /// <description>Description</description> /// </listheader> /// <...
{$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 April '2000 Problem 81 O(N2) Dynamic, Greedy Mehod } program JobAssignment; const MaxN = 100; type TJob = record S, F, B, Map : Longint; end; var N : Integer; Job : array [0 .. MaxN]...
{*******************************************************} { } { CodeGear Delphi Runtime Library } { Copyright(c) 2013-2018 Embarcadero Technologies, Inc. } { All rights reserved } { ...
unit RegistryUnit; interface uses SysUtils, Classes; type ERegistrySampleError = class(Exception); procedure GetRegData(out InstallPath, ModData: string); function GetRegInstallPath: string; function GetRegModData: string; const ABaseKey = 'Software\Sample Co.\SampleApp'; implementation uses Registry; ...
unit DimensionsUnit; interface uses SysUtils, Variants, Math, Classes, Contnrs, IdGlobal; const SpaceSize = 100; StateDimensionSize = 2; StateDimensionCount = 3; StatePointCount = StateDimensionSize * StateDimensionCount; type TSpace = Class(TObject) private procedur...
{*******************************************************} { } { Delphi Runtime Library } { } { Copyright(c) 1995-2011 Embarcadero Technologies, Inc. } { ...
unit FC.Trade.StatisticsDialog; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ufmDialogClose_B, StdCtrls, ComCtrls, ExtendControls, ExtCtrls,FC.fmUIDataStorage, ActnList, ToolWin,FC.Definitions; type TfmTradingStatisticDialog = class(TfmDialogClose_B) ...
unit iaTestSupport.Log; interface uses System.SyncObjs; procedure LogIt(const pText:string); var pubConsoleLock:TCriticalSection; implementation uses System.SysUtils; procedure LogIt(const pText:string); begin pubConsoleLock.Enter(); try WriteLn(FormatDateTime('yyyy-mm-dd h...
unit caVector; {$INCLUDE ca.inc} interface uses // Standard Delphi units  Classes, Sysutils, Math, // ca units  caCell, caClasses, caTypes, caUtils, caLog; type //--------------------------------------------------------------------------- // IcaVectorStringsAligner ...
PROCEDURE SendFile(fileT : FileType; VAR crcMode : BOOLEAN); CONST SetFileAttribs = 30; GetSetUser = 32; fileMode : ARRAY [0..5] OF CHAR = '100644'; VAR blk : DataBlock; i,j : INTEGER; strng : STRING[80]; bytesRemaining : REAL; blkNum : BYTE; response : ResponseType; iFile : FILE; old...
unit XERO.Utils; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes; function IsEmptyString(AValue: string): boolean; function StripCRLLF(AValue: string): string; function URLEncode(const AStr: String): String; function URLDecode(const AStr: string): str...
unit IdURI; interface type TIdURI = class protected FDocument: string; FProtocol: string; FURI: string; FPort: string; Fpath: string; FHost: string; FBookmark: string; procedure SetHost(const Value: string); procedure SetDocument(const Value: string); procedure SetBookmark(...
{*******************************************************} { } { Delphi Visual Component Library } { Copyright(c) 2014-2018 Embarcadero Technologies, Inc. } { All rights reserved } { ...
unit StringGridsUnit; interface uses Winapi.Windows, System.SysUtils, System.Classes, System.Contnrs, System.Win.ComObj, Vcl.Grids, StringGridExUnit; type TObjectStrings = class(TObjectList) private FName: string; FTag: integer; FDescription: string; FConnectionString: string; function Ge...
program hello_world; var i: integer; begin for i := 0 to 10 do writeln(Hello, world!); end.
{$A8} {$R-} {*************************************************************} { } { Embarcadero Delphi Visual Component Library } { InterBase Express core components } { ...
unit FormCoordSystems; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.Objects, FMX.Edit, FMX.ListBox, FMX.Objects3D, FMX.Types3D, FMX.Ani; type TFormCoordSys = class(TForm) grbInputData: TGroupBox; lb...
unit System.uJson; interface {$IFDEF UNICODE} {$DEFINE XE} {$ENDIF} uses System.Classes, System.Types, System.SysUtils, System.JSON, DateUtils, RegularExpressions, {RTTI, TypInfo, DBXJson,} DBXJsonReflect; type TJsonType = (jtUnknown, jtObject, jtArray, jtString, jtTrue, jtFalse, jtNumber, jtDate, jtDateT...
Program carree_magiqueFF.pas; uses crt; const MAX = 5 ; type Tab2d=array [1..MAX,1..MAX] of integer; PROCEDURE affichage(tab4:Tab2d ) ; var i,j:INTEGER ; begin for j := 1 to MAX do begin for i := 1 to MAX do begin if (tab4[i,j]<=9) then write (' ',tab...
{ Copyright (C) Alexey Torgashin, uvviewsoft.com License: MPL 2.0 or LGPL } unit ATSynEdit_Cmp_HTML; {$mode objfpc}{$H+} {$ModeSwitch advancedrecords} interface uses Classes, ATStrings, ATStringProc_Separator, ATSynEdit, ATSynEdit_Cmp_HTML_Provider; procedure DoEditorCompletionHtml(Ed: TATSynEdit); type ...
unit View.Page.Main.Cadastro; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Router4D.Interfaces, Vcl.StdCtrls, Router4D, Router4D.Props; type TfViewPageMainCadastro = class(T...
unit webscktmr_main; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls, EditBtn, MaskEdit, Spin, UniqueInstance; type { TFormWebSocketTmr } TFormWebSocketTmr = class(TForm) ButtonTXT: TButton; ButtonFnt: TButton; ButtonS: TButton; ...
unit ImageResizingInformationUnit; /////////////////////////////////////////////////// // // // Description: // // Container for image resizing information // // Provides information on how to resize images // // ...
{*********************************************} { TeeGrid Software Library } { TRows class } { Copyright (c) 2016 by Steema Software } { All Rights Reserved } {*********************************************} unit Tee.Grid.Rows; {$I Tee.inc}...
unit PascalCoin.RPC.Test.AccountList; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls, FMX.Layouts, FMX.ListBox, FMX.Edit, FMX.Controls.Presentation; type TAccountsList = class(TFrame) ...
unit ncaFrmConfigFid; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ncaFrmBaseOpcaoImgTxtCheckBox, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, cxContainer, cxEdit, Menus, cxTextEdit, cxCurrencyEdit, StdCtrls, cxButtons, cxLabel, cxCheckBo...
unit CoordTransformTests; interface uses TestFramework; type // Test methods for unit Geo.pas TCoordTransformUnitTest = class(TTestCase) private public published procedure Test00; procedure Test01; end; implementation uses Math, CoordTransform, LatLon; procedure TCoordTransformUnitTest.Tes...
unit SearchProductQuery; 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.D...
{*******************************************************} { } { Borland Delphi Visual Component Library } { SOAP Support } { } { Copyright (c) 2001 Borland S...
{*******************************************************} { } { Delphi LiveBindings Framework } { } { Copyright(c) 2011-2018 Embarcadero Technologies, Inc. } { All rights rese...
unit ccMain; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls, ExtCtrls, StdCtrls, ccBaseFrame; type { TMainForm } TMainForm = class(TForm) BtnCalculate: TButton; BtnClose: TButton; LblAccuracy: TLabel; PageControl: TPageControl...
(************************************************************************* DESCRIPTION : GUI demo for CRC/HASH REQUIREMENTS : D2-D7/D9-D10/D12/D17-D18/D25S MEMORY USAGE : --- DISPLAY MODUS : --- REFERENCES : --- REMARK : For Delphi2 ignore/remove all unsupported p...
unit uOpenFIleDialog; interface uses {$IF CompilerVersion > 22} Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, {$ELSE} Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs...
unit ufphttphelper; {$mode objfpc}{$H+} interface uses Classes, SysUtils, fphttpclient, URIParser; { TFPHTTPClient override } type TFPHTTPClient = class(fphttpclient.TFPHTTPClient) protected FOnDataSent: TDataEvent; procedure SendRequest(const AMethod: string; URI: TURI); override; pu...
unit UFrmClientInfoEdit; 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...
unit testtsortunit; interface uses Math, Sysutils, Ap, tsort; function TestSort(Silent : Boolean):Boolean; function testtsortunit_test_silent():Boolean; function testtsortunit_test():Boolean; implementation procedure Unset2D(var A : TComplex2DArray);forward; procedure Unset1D(var A : TReal1DArray);forward...
(******************************************************************************) (* This file conteins definitions, data sructures and the implementations of *) (* a two channels 2681 serial device. *) (* Designed to be interfaced with MC68k Class. ...
unit BackgroundFrm; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ExtCtrls, FlexProps, FlexUtils, RXSpin, cxGraphics, cxLookAndFeels, cxLookAndFeelPainters, Vcl.Menus, dxSkinsCore, dxSkinOffice2010Silver, cxControls, cxContainer, cxEdit, cxTextEdit, ...
program vectores8 { Simular el funcionamiento de un conjunto de caracteres de la ‘a’ a la ‘z’ utilizando un arreglo. Defina un tipo de datos adecuado e implemente módulos que realicen las operaciones de unión y diferencia de dos conjuntos y una función que permite determinar si una letra pertenece al conjunto. Nota: re...
unit intf_2; interface implementation uses System; type II1 = interface function AAA(V: Int32): Int32; function BBB(V: Int32): Int32; end; TT1 = class(TObject, II1) function AAA(V: Int32): Int32; function BBB(V: Int32): Int32; end; var G: Int32; function TT1.AAA(V: Int32)...
unit uObjectFeature; interface uses uMyTypes, Classes, Math, Graphics, Types, SysUtils, ShellAPI, Windows; type TFeatureObject = class(TObject) private objID: integer; objComboID: integer; // -1 znamena, ze nie je clenom ziadneho comba objTyp: integer; objPoloha: TMyPoint; objRozmer1: Double;...
unit formLogo; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, RzLabel, dxGDIPlusClasses, Vcl.ExtCtrls, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, cxContainer, cxEdit, cxProg...
{ *************************************************************************** } { } { Delphi and Kylix Cross-Platform Visual Component Library } { Internet Application Runtime } ...
unit DescriptionsGroupUnit2; interface uses QueryGroupUnit2, System.Classes, DescriptionsQuery, DescriptionTypesQuery, ProducersQuery, DescriptionsExcelDataModule, System.Generics.Collections, NotifyEvents; type TDescriptionsGroup2 = class(TQueryGroup2) private FqDescriptions: TQueryDescriptions; F...
unit Threads.NIUpdater; interface uses Windows, SysUtils, Classes, Threads.Base, GMGlobals, GMConst, GeomerLastValue, GMSqlQuery, ProgramLogFile; type TNIUpdateThread = class(TGMThread) private FglvBuffer: TGeomerLastValuesBuffer; function LoadNI(glv: TGeomerLastValue): bool; procedure ProcessDBMTR(q...
unit VA2006Utils; interface uses Windows, Messages, SysUtils, Classes, Controls, ComCtrls, CommCtrl, Forms; type //This class exists to workaround TFrame tabstop set to True //Known defect with Delphi 2006: http://qc.embarcadero.com/wc/qcmain.aspx?d=12257 TfraTabStopFalse = class(TFrame) private fun...
unit Character; {$mode objfpc}{$H+} interface uses Classes, SysUtils, CustomTypes, Entities, Voxel, Goods, Schedule; type eGoalKind = (gDrink, gEat, gSleep, gBuy, gSell, gOwn, gEarn, gWork, gGetToPos); rGoal = record Kind: eGoalKind; Priority: longword; end; eCharProf = (Beggar, Oddjob, Farmer, ...
{*******************************************************} { } { CodeGear Delphi Runtime Library } { } { Description of interface for notificatione center } { ...
unit customxml; {$mode objfpc}{$H+} interface uses Classes, SysUtils, StrUtils, Utility, Variants, laz2_DOM, laz2_XMLRead, laz2_XMLWrite, laz2_XMLCfg, laz2_XMLUtils{, laz2_XMLStreaming}; type tNewFileProc = procedure of object; rStackNode = specialize rNode<TDOMNode>; pStackNode = ^rStackNode; eNodeL...
unit uEngine2DModel; {$ZEROBASEDSTRINGS OFF} interface uses System.Classes,System.SysUtils,System.UITypes, FMX.Graphics,FMX.Objects,FMX.Dialogs, uEngine2DClasses,uEngine2DExtend,uEngine2DObject,uEngineResource, uEngine2DSprite, System.JSON, uEngine2DInvade; {TEngine2DModel 类负责管理场景(包括场景布局信息加载、分发,动画精灵创建、修改、清除)} ...
unit triangle; interface function RedToDec (x:real):real; function DecToRed (x:real):real; function DecSin (x:real):real; function DecCos (x:real):real; function DecTan (x:real):real; function DecCot (x:real):real; function ArcSin (x:real):real; function ArcCos (x:real):real; fun...
{ Copyright (C) 1998-2018, written by Mike Shkolnik, Scalabium Software E-Mail: mshkolnik@scalabium.com mshkolnik@yahoo.com WEB: http://www.scalabium.com The TSMScript is a wrapper for MS Script Control which allow to execute any script for VBScript, JavaScript languages (and any other regist...
//////////////////////////////////////////////////////////////////////////////// // // // FileName : SUIPageControl.pas // Creator : Shen Min // Date : 2002-11-20 V1-V3 // 2003-07-11 V4 // Comment : // // Copyright (c) 2002-2003 Sunisoft // http://www.sunisoft.com // Emai...
unit Login; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Buttons, BasePopup, BaseForm, Vcl.StdCtrls, RzLabel, System.UITypes, Vcl.Imaging.pngimage, Vcl.ExtCtrls, RzPanel, Vcl.Mask, RzEdit, RzPrgres, RzButton; type TfrmLogin = class(TfrmBasePopup) La...
{*******************************************************} { } { Delphi Runtime Library } { SOAP Support } { } { Copyright(c) 1995-2011 Embar...
unit USelectSortInPlant; 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, dxSkinsCore, Vcl.Menus...
unit u_SolidWastte_Upload; interface uses Classes, SysUtils, Math, SolidWasteService, Json, StrUtils, u_WeightComm; function SolidWastte_Desc(RetCode: Byte): String; Function SolidWaste_Auth(const AuthInfo: TWeightAuth): Integer; Function SolidWaste_Commit(const CommitInfo: TWeightInfo): Integer; implementat...
{----------------------------------------------------------------------------} { Written by Nguyen Le Quang Duy } { Nguyen Quang Dieu High School, An Giang } {----------------------------------------------------------------------------} ...
// // This unit is part of the GLScene Project, http://glscene.org // {: GLEllipseCollision<p> Ellipsoid collision functions (mainly used by DCE). <b>History : </b><font size=-1><ul> <li>30/03/07 - DaStr - Added $I GLScene.inc <li>09/05/05 - Mathx - Protection agains float error on getLowestRoot ...
{ *************************************************************************** Copyright (c) 2016-2018 Kike Pérez Unit : Quick.ImageFX Description : Image manipulation Author : Kike Pérez Version : 4.0 Created : 21/11/2017 Modified : 11/08/2018 This file is part of QuickImageFX:...
unit uReduxStore; interface uses System.Generics.Collections, System.SysUtils, System.Variants, System.Classes; type TReducer<S> = reference to function(State : S; Action : Integer):S; TListener<S> = reference to procedure(State : S); TReduxStore<T> = class(TObject) private FState : T; FReducer...
unit Unit_FrameSampleSoloMesh; interface uses Vcl.Forms, Vcl.Controls, Vcl.StdCtrls, System.Classes, Vcl.ExtCtrls, Vcl.Samples.Spin; type TFrameSampleSoloMesh = class(TFrame) Label13: TLabel; Label12: TLabel; Label11: TLabel; Label10: TLabel; Label9: TLabel; Label8: TLabel; Label7: TLab...
Program Example9; uses Crt; { Program to demonstrate the ClrEol function. } begin Write('This line will be cleared from the', ' cursor postion until the right of the screen'); GotoXY(27,WhereY); ReadKey; ClrEol; WriteLn; end.
Unit WlanInterface; Interface Uses Windows, Classes, WlanAPI, WlanAPIClient; Type TWlanInterfaceState = ( wisNotReady, wisConnected, wisAdhocFormed, wisDisconnecting, wisDisconnected, wisAssociating, wisDiscovering, wisAuthenticationg); TWlanInterface = Class Private FGuid : PGUID; ...
{*******************************************************} { } { Delphi LiveBindings Framework } { } { Copyright(c) 2011 Embarcadero Technologies, Inc. } { ...
unit NtUtils.Exec.Nt; interface uses NtUtils.Exec, NtUtils.Exceptions; type TExecRtlCreateUserProcess = class(TExecMethod) class function Supports(Parameter: TExecParam): Boolean; override; class function Execute(ParamSet: IExecProvider; out Info: TProcessInfo): TNtxStatus; override; end; implem...
unit Financas.Controller.Connections.Interfaces; interface uses Financas.Model.Connections.Interfaces; type iControllerFactoryConnection = interface ['{5EBF8D54-0A15-4A32-A123-D78C2DEF7E98}'] function Connection : iModelConnection; end; iControllerFactoryDataSet = interface ['{549A7119-DBF9-4141-...
{ Copyright (C) 2005 Fabio Almeida fabiorecife@yahoo.com.br This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later...
unit uDbUsuario; interface uses uDbObject, Data.Db, System.SysUtils, System.C...