Professional set of Delphi and C++Builder components for virtual instrumentation
- Meters, Bars (Gauge), with linear or log(10) scaling
- Digital indicators (time, value)
- Operating Point display
- Dial (knob), Sliders, Trend/Recorder
- buttons, switches, LED indicators
- DB-Aware components and many more
ANN NEURONs made simple v.1.0
By Bo Palmblad.
Commercial 22 Oct 2018Description
DEMO TRAINING PATTERN OF THE PROPAGATION NEURON [ANN:4-3-4 ] Training session ---------------------- The inputs from the pattern file 1.00 1.00 0.00 0.00 The outputs we want from the pattern 1.00 0.00 0.00 0.00 The inputs from the pattern file 0.00 0.00 1.00 1.00 The outputs we want from the pattern 0.00 0.00 0.00 1.00 The inputs from the pattern file 1.00 0.00 1.00 0.00 The outputs we want from the pattern 0.00 0.00 1.00 0.00 The inputs from the pattern file 0.00 1.00 0.00 1.00 The outputs we want from the pattern 0.00 1.00 0.00 0.00 The inputs from the pattern file 1.00 1.00 0.00 1.00 The outputs we want from the pattern 1.00 0.00 0.00 0.00 The inputs from the pattern file 0.00 0.00 0.00 0.00 The outputs we want from the pattern 0.00 0.00 0.00 0.00 [ANN:4-3-4] answer to queries ======================== Testing network inputs (4) values Input of the network is: 0.00 0.00 1.00 0.00 Output of the network is: 0.00 0.00 0.02 0.97 Global error calculus 0.00075 --------------------------------------------------------------------- Propagation NEURON object --------------------------------------------------------------------- Inizialising NEURON OBJECT. Input of the network is : 0.00 0.00 1.00 0.00 Output of the obj net is: 0.00 0.00 0.07 0.93 No of cycles computed 2000 No of iterations computed 15 Global error calculus 0.00049 OBJECT NEURON is unloaded from memory. DEBUG Training time: 2000 * 15 iterations * 6 patterns is 181 ms RELEASE Training time: 2000 * 15 iterations * 6 patterns is 128 ms Query time 0 ms --------------------------------------------------------------------- Testing network inputs (4) values Input of the network is: 1.00 1.00 0.00 0.00 Output of the network is: 0.99 0.00 0.00 0.00 Global error calculus 0.00075 --------------------------------------------------------------------- Propagation NEURON object --------------------------------------------------------------------- Inizialising NEURON OBJECT. Input of the network is : 1.00 1.00 0.00 0.00 Output of the obj net is: 0.99 0.00 0.00 0.00 No of cycles computed 2000 No of iterations computed 15 Global error calculus 0.00049 OBJECT NEURON is unloaded from memory. DEBUG Training time: 2000 * 15 iterations * 6 patterns is 176 ms RELEASE Training time: 2000 * 15 iterations * 6 patterns is 119 ms Query time 0 ms --------------------------------------------------------------------- To my surprise the 32-bit code was always faster than 64-bit. Demo code how to setup and run the NEURON ======================================== Neuron:=TPropagationNeuron.Create(Nil); // Create the NEURON. Neuron.ANNSetIHOsize(4,3,4); // 4 inp 3 hidden 4 outputs if Neuron.ANNInitPatterns('PATTERNS.txt') then // Actually setup the PATTERNS.TXT Begin Neuron.ANNSetCycles:=2000; // Number of cycles to run training Neuron.ANNSetIterations:=15; // Number of itterations / training cycle Neuron.ANNTraining; // Actually TRAIN the neuron Val(Edit1.Text, v, e); Neuron.ANNSetInput(1,v); // Setup Input grid value 1 with value v Val(Edit2.Text, v, e); Neuron.ANNSetInput(2,v); // Setup Input grid value 2 with value v Val(Edit3.Text, v, e); Neuron.ANNSetInput(3,v); // Setup Input grid value 3 with value v Val(Edit4.Text, v, e); Neuron.ANNSetInput(4,v); // Setup Input grid value 4 with value v Neuron.ANNTestData; // ACTUALLY DO THE ANALYSIS . Tyt:=' '; for i:=1 to 4 do Begin Str(Neuron.ANNGetOutput(i):5:2, Txt); // Get the answers from the Outputs of the NEURON Tyt:=Tyt+Txt; End; Form1.Memo1.Lines.Add(' Input of the network is :'+Inp); // Present input pattern Form1.Memo1.Lines.Add('Output of the obj net is:'+Tyt); // Present answer Str(Neuron.ANNGetCycles, Txt); // Aquire no of cycles training has been done Form1.Memo1.Lines.Add('No of cycles computed '+Txt); // SHOW result Str(Neuron.ANNGetIterations, Txt); // Aquire no of itterations Form1.Memo1.Lines.Add('No of iterations computed '+Txt); // SHOW result Str(Neuron.ANNGlobalError:5:5, Txt); // Aquire the Global error Form1.Memo1.Lines.Add('Global error calculus '+Txt); // SHOW result End; Neuron.ANNClose; // Shut down structure Neuron.Free; // Free computer memory from NEURON DEMO PATTERNS FROM FILE NEURON is [ANN:4-3-4] ======================== 6 Number of patterns to handle 1 1 0 0 1 0 0 0 4 inputs 4 result we want 0 0 1 1 0 0 0 1 1 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 4 inputs 4 result we want ( rubbish collection ) don't forget. as is on disc "PATTERNS.TXT" 6 1 1 0 0 1 0 0 0 0 0 1 1 0 0 0 1 1 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 "DELPHI 10.2.3 Tokyo" values PropagationNeuron.dcu is 21Kbyte in size compiled I-H-O Sourcecode is 12Kbyte. "DELPHI 10.2.3 Tokyo" values PropagationNeuron2.dcu is 22Kbyte in size compiled I-H-H-O Sourcecode is 13Kbyte. Same functionallity of both versions, based on same code, simply expanded to 2 hidden layers. Pure PASCAL no added units, no restrictions compile in any compiler from D7 and forward. All tests development and compillations made in DELPHI 10.2.3 Tokyo Testcompiled clean in DELPHI 10 Seattle Object "PropagationNeuron" testcompiled clean in Delphi7, test enviroment code available if you want it. Edit1..4 for input ch 1,2,3,4 Memo1 to report results and a Button, that is it. -------------------------------------------------------------------------------------------------------------------------------------------- unit NUnit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, PropagationNeuron; type TForm1 = class(TForm) Button1: TButton; Memo1: TMemo; Edit1: TEdit; Edit2: TEdit; Edit3: TEdit; Edit4: TEdit; procedure Button1Click(Sender: TObject); procedure FormShow(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; Neuron : TPropagationNeuron; implementation {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); Var v : Real; i,e : Integer; Txt, Tyt, Inp : String; begin Inp:=Edit1.Text+' '+Edit2.Text+' '+Edit3.Text+' '+Edit4.Text; Neuron:=TPropagationNeuron.Create(Nil); Neuron.ANNSetIHOsize(4,3,4); if Neuron.ANNInitPatterns('PATTERNS.txt') then Begin Neuron.ANNSetCycles:=2000; Neuron.ANNSetIterations:=15; Neuron.ANNTraining; Val(Edit1.Text, v, e); Neuron.ANNSetInput(1,v); Val(Edit2.Text, v, e); Neuron.ANNSetInput(2,v); Val(Edit3.Text, v, e); Neuron.ANNSetInput(3,v); Val(Edit4.Text, v, e); Neuron.ANNSetInput(4,v); Neuron.ANNTestData; Tyt:=' '; for i:=1 to 4 do Begin Str(Neuron.ANNGetOutput(i):5:2, Txt); Tyt:=Tyt+Txt; End; Form1.Memo1.Lines.Add(' Input of the network is :'+Inp); Form1.Memo1.Lines.Add('Output of the obj net is:'+Tyt); Str(Neuron.ANNGetCycles, Txt); Form1.Memo1.Lines.Add('No of cycles computed '+Txt); Str(Neuron.ANNGetIterations, Txt); Form1.Memo1.Lines.Add('No of iterations computed '+Txt); Str(Neuron.ANNGlobalError:5:5, Txt); Form1.Memo1.Lines.Add('Global error calculus '+Txt); End; //Neuron.ANNSaveNeuralCore('N2.core'); Neuron.ANNClose; Neuron.Free; end; procedure TForm1.FormShow(Sender: TObject); begin Edit1.Text:='0'; Edit2.Text:='0'; Edit3.Text:='1'; Edit4.Text:='0'; end; -------------------------------------------------------------------------------------------------------------------------------------------- OBS. All versions used same TPropagationNeuron code, only enviroment was rewritten for D7. OBS.Informations
- Status: Fully functional
- Source: On purchase/registration
- Source price: $25
- Size: 661kB
Platforms: D10, D7, DXE, DXE2, DXE3, DXE4, DXE5, DXE6, DXE64, DXE7, DXE8
Bytescout BarCode Generator SDK v.4.61.0.952
By Bytescout.
18 Sep 2017Description
Generate barcodes with Bytescout BarCode Generator SDK for .NET and ActiveX. BENEFITS: - includes components for desktop and web applications development: .NET class, WinForms Control, ASP.NET Web Image control, SSRS reporting service, ActiveX interface to generate barcodes from Visual Basic 6, Classic ASP, Delphi, Javascript, Word and Excel VBA - almost all development languages are covered; - 100+ source code samples included (just copy and paste.) for all supported languages and platforms; - supports almost all 1D linear and 2D (multidimensional) barcodes; - made using 100% C# code for .NET (optional source code licensing is available.) - adds barcodes to PDF documents (no other components are required); MORE TECH DETAILS: - Includes 4 types of controls and components: Windows Forms control (for WinForms applications), WebImage control (for ASP.NET) , SSRS control for ASP.NET and non-visual .NET and ActiveX classes for instant barcode image generation; - Supports almost all 1D barcodes types (including Code 39, Code 128, UPCA, UPCE, GS1 and many other), including EAN-13 and supplemental EAN-2 and EAN-5 barcodes; - Supports 2D barcodes: QR Code, Aztec, PDF417, DataMatrix, MaxiCode; - Supports GS1 barcodes (also known as RSS): GS1 Code 128, GS1 DataMatrix, GS1 Databar Omnidirectional, GS1 Databar Stacked, GS1 Databar Omnidirectional, GS1 DataBar Truncated; - WPF barcode control included; - Built-in automatic validation of barcode value; - Adjustable visual appearance: font, font size, foreground and background colors - Exports generated barcode as PDF, EMF, JPG, PNG, GIF, TIF images; - Draw generated barcode on control or printer .hDC (in both ActiveX and .NET versions of the SDK); - Supports Local Reports (RDLC) and SSRS reports support for ASP.NET; - and much more.Informations
- Status: Fully functional
- Source: None
- price: $10
- Size: 25 311kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
Bytescout BarCode Reader SDK v.8.60.0.1561
By Bytescout.
Commercial 29 Dec 2016Description
Fast and reliable. Can read barcode from image, read barcode from PDF, read barcode from TIF in your Windows desktop and web applications Can read QR Code, Code 39, Code 128, EAN-13, UPCE, UPCA, Aztec, PDF 417, MICR and lot of others. Provides both 1D and 2D barcode recognition. Reads PDF and TIF without any other tools required. BENEFITS: * Reads barcodes from JPG, PNG, TIFF images and PDF (no other components are required); * Dozens of ready to copy-and-paste source code samples are included; * Made with 100% C# code (optional source code licensing is available on request) * Sample GUI application to test the sdk against your your images and PDF documents is included into the SDK. TECHNICAL DETAILS: * Works in .NET, ASP.NET; * Can be used from ActiveX compatible languages (ASP classic, Visual Basic 6) via wrapper; * Reads 1D and 2D barcodes: Code128, Code39, QR Code, EAN13, EAN8, Interleaved 2 of 5, UPCA, UPCE, Codabar, GS1, PDF417, Datamatrix, Aztec, PDF 417, Patch barcodes, MaxiCode, Codabar, Codablock, MICR, Postal barcodes, Australian Postcode and others. * Reads from JPG, BMP, PNG, TIFF, PDF; * Supports images captured from web camera devices. * Supports multipaged PDF and TIF files without other tools required; * and more.Informations
- Status: Fully functional
- Source: None
- price: $10
- Size: 57 664kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
ByteScout PDF Extractor SDK v.8.0.0.2523
By Bytescout.
Commercial 29 Dec 2016Description
PDF Extractor SDK for Windows software developers: PDF to Text, PDF to XML, Images from PDF, Read PDF information, PDF to CSV for Excel. Bytescout PDF Extractor SDK allows to convert PDF to text, PDF to XML, PDF to CSV, extract images from PDF, extract information about PDF files in .NET and ActiveX interfaces without any additional software required. Benefits: - converts PDF to plain text (and can follow columns if you converting a newspaper in PDF format.) - including invisible text extraction; - converts tables in PDF to Excel (CSV) by reading cells from given rectangle; - converts tables in PDF to XML files; - extracts PDF file metadata (title, author, description) and get other information about the file (number of pages, encrypted or not); - extracts embedded images from PDF document (in ASP.NET, VB.NET, C#, VB6 and VBScript); - NEW: DocumentMerger and DocumentSplitter interfaces and classes to merge and split PDF documents; doesn't require Adobe Reader or any other PDF reader software to be installed; - provides .NET and ActiveX interfaces; - made with 100% managed C# code.Informations
- Status: Fully functional
- Source: None
- price: $10
- Size: 603kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
ByteScout PDF Renderer SDK v.8.6.0.2911
By Bytescout.
Commercial 15 Sep 2017Description
PDF Renderer SDK is a new product to convert PDF to PNG, BMP, TIFF, PDF to EMF metafiles PDF Renderer SDK for .NET, ASP.NET, ActiveX converts PDF to PNG, TIFF, BMP, PDF to EMF metafile without Adobe Reader or other PDF software required. BENEFITS: * doesn't require Adobe Reader or any other PDF reader software to be installed; * renders text, fonts, font styles; * renders vector graphics; * renders images; * preserves original layout as much as possible; * can render a given area or a whole page; * works in .NET, ASP.NET and Visual Basic 6 applications; * works in both x86 and x64 modes; * SDK is accessible from legacy programming languages like Visual Basic 6 and Classic ASP.Informations
- Status: Fully functional
- Source: None
- price: $10
- Size: 38 702kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
Bytescout PDF To HTML SDK v.8.6.0.2911
By Bytescout.
Commercial 27 Sep 2017Description
PDF To HTML SDK allows developers to convert PDF to HTML without any additional software required. Benefits: * converts PDF to HTML with layout preserved; * text, fonts, images, tables are preserved; * vector graphics is preserved (as a background images); * precise positioning of text and images to reproduce the original PDF file; * doesn't require Adobe Reader or any other 3rd software to be installed; * works with .NET 2.00, 3.5, 4.00 in desktop applications; * works with ASP.NET 2.00, 3.5, 4.00 in web-applications; * provides access via ActiveX interface for use by legacy programming languages (Visual Basic 6, old versions of Delphi) and scripting (VBscript and others).Informations
- Status: Fully functional
- Source: None
- price: $10
- Size: 595kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
Bytescout PDF Viewer SDK v.8.6.0.2911
Description
Bytescout PDF Viewer SDK provides a visual control to implement your own PDF reader to view PDF file from your application. It installs a control that you may add from toolbox to the form in your application. Benefits: * control to view PDF files; * views PDF files without Adobe Reader or other tools installed; * zoom in/out support; * multiple pages support; * copies text to clipboard; * finds text in PDF. System Requirements: Visual Studio 2005-2012 and Microsoft .NET framework 2.0, 3.5, 4.00.Informations
- Status: Fully functional
- Source: None
- price: $10
- Size: 595kB
Platforms: C2k6, C2k7, C2k9, CB3, CB4, CB5, CB6, D2005, D4, D6, D7
Bytescout Spreadsheet SDK v.2.70.1553
By Bytescout.
05 Dec 2016Description
Read and write XLS, XLSX from ASP.NET, .NET, VB, C#, PHP and other programming languages without Excel installed. Supports formula calculations, text formatting, rows, columns, sheets management and much more. Can be used from legacy Visual Basic 6 and ASP classic, Delphi through special ActiveX wrapper with improved XLS and XLSX formats support and formula calculations Technical details: # 150+ source code samples ready to copy and paste from. # Writing for XLS, HTML, TXT, CSV, XML support; # Exports to PDF without any other libraries required; # Reading for CSV, XLS (Office 97-2010), XLSX (Office 2007-2010) and ODS (Open Office Calc) support; # Formula calculations (standard functions, add-in formula like XIRR) support; # Can be used in Visual C#, Visual Basic.NET and ASP.NET; # Cells, columns, rows, worksheets support; # Unicode support; # 12 chart types supported; # Cell formatting (font, color, border style, alignment) is supported; # Capable of changing existing Excel documents (change data and save modified document, add or remove rows, columns); # Export XLS into CSV, TXT, HTML and XML, PDF; # Reads Excel files into dataset; # Convert spreadsheets from command line or .bat command files using Spreadsheet SDK Console version.Informations
- Status: Fully functional
- Source: None
- price: $10
- Size: 20 373kB
Platforms: D7
ByteScout Text Recognition SDK v.1.0.0.100
By Bytescout.
Commercial 26 Feb 2018Description
Text Recognition SDK enables extraction of text from any photos, pictures and scanned images preserving the layout of the original document. Main features: - Text recognition and extraction from scanned images of various formats, with the input layout, totally preserved; - Definition of exact location of a recognized text amount; - Recognition improvement of low-quality documents and OCR errors fixing.Informations
- Status: Fully functional
- Source: None
- price: $10
- Size: 33 256kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
CAD VCL: 2D/3D CAD in Delphi/CBuilder v.14.1
By CADSoftTools.
06 Mar 2019Description
A library for developing CAD software in Delphi and C++Builder. It enables to import, export, create, and edit drawings. A developer can get access to properties of entities. CAD VCL supports a large number of 2D and 3D CAD formats including AutoCAD DWG (2.5 - 2018), DXF, HPGL, STP, IGS, STL, SLDPRT, X_T, X_B, SVG, CGM, etc. The library is provided in the Delphi source code. Easy-to-use demo applications will help to start working with it.Informations
- Status: Fully functional
- Source: None
- price: $1620
- Size: 489 237kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
Callback File System v.6.1
By Ken Ivanoff.
14 Jun 2016Description
With Callback File System you can create your own file system within your application and expose this file system to Windows as a virtual disk or a folder on existing disk. Callback File System provides a kernel-mode driver, which calls your application when it needs to perform some file system operation, and a user-mode API for use by your application. And your application can expose generic data as a file system to third-party processes.Informations
- Status: Fully functional
- Source: None
- price: $7526
- Size: 37 226kB
Platforms: D2005
CallbackFilter v.4.1
By Ken Ivanoff.
14 Jun 2016Description
With CallbackFilter component your Windows and .NET application can keep track of file and directory operations and control them in real-time. The application is notified about access to the disk right when the requests for operation come. You can track and decline access to the files and directories, hide files, restrict certain operations and even modify (encrypt, copy-on-write etc.) file contents on the fly. You can also create virtual files.Informations
- Status: Fully functional
- Source: None
- price: $2180
- Size: 23 114kB
Platforms: CB5, D2005
Clever Internet Suite v.8.2
Description
Internet components - Clever Internet Suite is the native Delphi VCL for RAD Studio XE7, XE8, .NET and ActiveX. The suite includes more than 50 components for Internet development and its code is constantly being refined and improved. HTTP, FTP, SMTP, POP, IMAP, SFTP (SSH), OAUTH, SOAP, WebDAV components. Full IpV6, Unicode and 64bit support.Informations
- Status: Fully functional
- Source: None
- price: $552
- Size: 3 542kB
Platforms: CB6
Color Lib v.2.0.2
By Marko Binic.
Freeware + source 28 Mar 2008Description
This is the most complete color picker and conversion library you can find for Delphi. These components provide you with professional ways to pick colors and convert between color models as well as HTML color conversion utilities. In the newest release this pack contains 31 color tools which can be combined, letting you create numerous new tools and color dialogs.Informations
- Status: Fully functional
- Source: Included
- Size: 148kB
Platforms: C2k6, D2005, D2006, D5, D6, D7
EaseClouds Virtual File System SDK v.2.1.1.2
By White.
22 Oct 2017Description
Cloud-based completed virtual file system integrates cloud files with the local file system.Accessing the cloud file is fast and easy, is transparent to the users and applications, no modification needed, just like accessing the local files. Best Cloud-Based Disaster Recovery Solution,zero downtime for the disaster recovery, automatically fail over the local storage to the cloud storage if disaster strikes, your business won't be interrupted.Informations
- Status: Fully functional
- Source: None
- price: $499
- Size: 5 191kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
EaseTag Cloud Storage Connect v.3.1.9.1
By Victor Rich.
Freeware 10 Apr 2020Description
Transparsently connect the cloud storage with EaseTag Cloud Storage Connect. EaseTag Cloud Storage Connect is a data storage technique which automatically moves data between local and cloud storage. EaseTag Cloud Storage Connect can help simplify the migration process by providing the transparent file access from the remote storage.Informations
- Status: Fully functional
- Source: None
- Size: 3 934kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
EaseTag Tiered Storage Filter Driver SDK v.3.0.4.1
By Victor Rich.
05 Nov 2015Description
File System Tiered Storage Filter Driver SDK, is a data storage technique which automatically moves data between high-cost and low-cost storage media. Tiered Storage Filter systems exist because high-speed storage devices, such as hard disk drive arrays, are more expensive (per byte stored) than slower devices, such as optical discs and magnetic tape drives. Tiered Storage Filter systems store the bulk of the enterprise's data on slower devices.Informations
- Status: Fully functional
- Source: None
- price: $2999
- Size: 3 738kB
Platforms: CB4, CB5, CB6
Extended v.0.9.0.4
By LIBERLOG.
Freeware + source 08 Sep 2010Description
Optimized components to manipulate DB colors, DB images, DB Numeric, DB Listview, Inifile with forms, Checks, DB navigation. There are also buttons with centralized Glyph.These components are part of a VRAD management framework. A RAD Management framework is operational under Windows.
Informations
- Status: Fully functional
- Source: Included
- Size: 6 440kB
Platforms: D2006, D7
Extensibility Studio v.2.0
By Andrew Medvedev.
01 Nov 2017Description
Extensibility Studio is a complete solution allowing to extend your .NET application with user-defined logic. It provides set of tools allowing users of your applications to write code for mini-programs (scripts) to enhance existing or define new logic by accessing and manipulating application objects, build visual user interfaces for these scripts and debug them with fully-featured debugging engine.Informations
- Status: Fully functional
- Source: None
- price: $699
- Size: 94 838kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
FoxBurner SDK v.7.0.1
By Ingo Foerster.
26 May 2016Description
Enhance your application with the best in class FireMonkey-compatible CD/DVD/Blu-ray recording SDK. Plenty of samples, extended documentation and predefined dialogs for burning/erasing tasks ensure easy start and ultra-fast integration. Works under Windows, Linux and Mac, runs perfect on QT Framework. Flexible licensing allows to match spendings to actual development demands.Informations
- Status: Fully functional
- Source: None
- price: $999
- Size: 31 694kB
Platforms: D2005
Gismo v.1.0
By JanSoft.
Freeware + source 31 Aug 2000Description
The Gismo collection contains the janStrings utility unit and 4 releated components: TjanScript a Forth style language with XML and Database support; TjanXMLTree a DOM based XML parser with filter methods; TjanWebServer a compact web server with integrated janScript support; TjanPagedFile a TComponent descendant that manages password protected and encrypted multi-user (max 255) record-locked tagged-string text files with random read/write access and variable record lenght between the specified page size (minimum 64 bytes) and 2Gb. Space of deleted records is re-used. Supports: NEW (table), OPEN, CLOSE, APPEND, SELECT (recordsets using TjanScript), ORDER BY (multi-key), UPDATE, DELETE; detailed help files included.Informations
- Status: Fully functional
- Source: Included
- Size: 721kB
Platforms: D4, D5
Install Package IronOcr v.2021.9
By LauraM Wilson.
13 Sep 2017Description
IronOcr is an OCR Library written in C#. It utilizes PC vision innovation to read text in pictures to output plain text content. This is perfect for databases archives, or separating information from old reports and putting them on the web or intranet documents. IronOcr can shape the bedrock of data administration frameworks. It is constructed in one simple to use C# VB.net DLL library.Informations
- Status: Fully functional
- Source: None
- price: $399
- Size: 32 283kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
IWCGjQuery Mobile Suite - for Intraweb v.2.6.0.99
By CGDevTools.
Commercial 08 Jul 2015Description
CgDevTools takes great pleasure in announcing a new set of jQuery Mobile components for Intraweb.Main features include:
- Support for all popular mobile device platforms
- Most jQuery Mobile features (options and client API)
- Design Time support with HTML Render
- Dynamic runtime Theme support for professional application skinning
- Javascript Intellisense Edition for direct Script event handling
- Ajax navigation & transitions
- Touch and mouse event support
- HTML5 Markup
- Mobile project structure is similar to Delphi project, each page is a form
- More...
Informations
- Status: Evaluation (time-limit)
- Source: On purchase/registration
- price: $130
- Size: 140 212kB
Platforms: C2k10, C2k7, C2k9, CBXE, CBXE2, CBXE3, CBXE4, CBXE5, CBXE6, CBXE7, CBXE8, D2007, D2009, D2010, DXE, DXE2, DXE3, DXE4, DXE5, DXE6, DXE7, DXE8
Key Objects Library v.1.00
By Vladimir Kladov.
Freeware + source 01 Oct 2001Description
KOL - Key Objects Library is a set of objects to develop power (but small) 32 bit Windows GUI applications using Delphi.KOL allows to create very compact Windows32 GUI applications (starting from ~13,5K without compression - if suggested system units replacement used). The most of code is converted to built-in assembler.
A help generating tool xHelpGen is provided for KOL, which creates detailed documentation in html format. Documentation is generated on base of comments from the source, so developers instantly have access to the most fresh and complete documentation.
A package MCK (Mirror Classes Kit) provided with KOL, and all the advantages of visual programming are available for developers who use KOL.
Informations
- Status: Fully functional
- Source: Included
- Size: 379kB
Platforms: D2, D3, D4, D5, D6
MiTeC Forensic Analysis Component Suite v.1.2.4
By MiTeC.
Freeware 02 Apr 2017Description
- TFAC_Chrome_History - Google Chrome history analyzer
- TFAC_Firefox_History - Mozilla Firefox history analyzer
- TFAC_IE_History - Internet Explorer history analyzer
- TFAC_Opera_History - Opera history analyzer
- TFAC_Safari_History - Apple Safari history analyzer
- TFAC_ICQ_History - ICQ 6,7 message database analyzer
- TFAC_MSN_History - Windows Live Messenger file analyzer
- TFAC_Skype_History - Skype ChatMsg file analyzer
- TFAC_Yahoo_History - Yahoo Messenger file analyzer
- TFAC_OE - Outlook Express message database analyzer
- TFAC_Thunderbird - Mozilla Thunderbird message database analyzer
- TFAC_WinMail - Windows Live Mail message database analyzer
- TFAC_IE - Settings, Typed URLs, Search assistant and Accounts analyzer
- TFAC_IE_AutoComplete - AutoComplete Passwords (IE7) analyzer
- TFAC_Info2 - Recycle Bin Info2 file analyzer
- TFAC_RBI - Recycle Bin $I file (Vista) analyzer
- TFAC_Favorites - Favorites file analyzer
- TFAC_IndexDAT - Index.Dat file analyzer
- TFAC_Mork - Mork file analyzer
- TFAC_PrefetchList - Windows Prefetch files analyzer
- TFAC_RecentList - Recent documents file analyzer
- TFAC_Shortcut - Shortcut (LNK) file analyzer
- TFAC_ARPCache - Add/Remove Programs Cache registry key analyzer
- TFAC_ComDlg32 - Last Visited and Open/Save MRU registry key analyzer
- TFAC_MUICache - Multi User Interface Cache registry key analyzer
- TFAC_RecentDocs - RecentDocs registry analyzer
- TFAC_ShellBags - ShellBags registry analyzer
- TFAC_StreamMRU - StreamMRU registry analyzer
- TFAC_UserAssist - UserAssist registry analyzer
- TFAC_Creds - Network Credentials analyzer
- TFAC_PStore - Protected Storage analyzer
- TFAC_USBHistory - USB usage history
- TFAC_WZC - XP Wireless Zero Configuration analyzer
- TFAC_WLANAC - WLAN AutoConfig analyzer
Informations
- Status: Fully functional
- Source: On purchase/registration
- Source price: $240
- Size: 15 845kB
Platforms: D10, D10.1, D10.2, D2005, D2007, D2009, D2010, D7, DXE, DXE2, DXE3, DXE4, DXE5, DXE6, DXE64, DXE7, DXE8, FM, FM2, FM3
ParoSifre login v.2016
By Kaan Kucuk.
Freeware 22 Nov 2016Description
ABBOUT PAROSIFRE? Parosifre is a login software for all systems and software. Parosifre includes password and a combination lock. Password and combination lock consisting of 10 digits. Standard is five positions long password letters and supplemented with 5 positions fake password letters. The system generates a random password 5 digits and 5 positions as refrenties key(combination lock) between 0 and 9. Example: Password: Dolphins Combination lock: 12345678 Parosifre: QWoAMlFsLh (system generate random) Enter parosifre: 2385 FEATURES - System generates a random password code by any login - Only one password and combination lock -Another person that knows the password. It is useless. Which passwords that are assigned to which combination code will not found - 3 time wrong input, login blocked. - There is no need to change the password and combination lock to unblock parosifre - To unblock parosifre you enter password and combination lock - Suitable for all media, software, web database - Login with the classic password - Parosifre software useful for all system(software, database and etc.) - Options and servers available - Utility and testing software available DLL/LIBRAY can be used in Delphi or C+Informations
- Status: Fully functional
- Source: None
- Size: 2 053kB
Platforms: DXE7, DXE8
PDFium Component Suite v.6.8
Description
Delphi and C++ Builder components for viewing, navigating, text extracting and editing PDF files.- uses PDFium open-source PDF rendering engine
- available for Delphi/C++ Builder 5 - 11 and Lazarus 2.2.6
- source code included in registered version
- royalty free distribution in applications.
Informations
- Status: With Nag-Screen
- Source: On purchase/registration
- price: $100
- Size: 5 791kB
Platforms: C10, C10.1, C10.2, C10.3, C10.4, C11, C11.1, C2k10, C2k6, C2k7, C2k9, CB64, CBXE, CBXE2, CBXE3, CBXE4, CBXE5, CBXE6, CBXE7, CBXE8, D10, D10.1, D10.2, D10.3, D10.4, D11, D11.1, D2005, D2006, D2007, D2009, D2010, D7, DXE, DXE2, DXE3, DXE4, DXE5, DXE6, DXE64, DXE7, DXE8
PDFium Component Suite for FireMonkey v.6.5
Description
Delphi and C++ Builder components for viewing, navigating, text extracting and editing PDF files.- uses PDFium open-source PDF rendering engine
- supports Windows, macOS, Linux, iOS and Android
- available for Delphi/C++ Builder XE2 - 11.2
- source code included in registered version
- royalty free distribution in applications
Informations
- Status: With Nag-Screen
- Source: On purchase/registration
- price: $100
- Size: 26 984kB
Platforms: C10, C10.1, C10.2, C10.3, C10.4, C11, C11.1, CB64, CBXE2, CBXE3, CBXE4, CBXE5, CBXE6, CBXE7, CBXE8, D10, D10.1, D10.2, D10.3, D10.4, D11, D11.1, DXE2, DXE3, DXE4, DXE5, DXE6, DXE7, DXE8, FM, FM2, FM3
PNG Components for Code Gear C Builder 2007 v.1.0
By Alexandr Ivanov.
Freeware + source 22 Sep 2008Description
Contains the next components:- PNG Image List
- PNG BitBtn
- PNG Speed Button
- and others.
Informations
- Status: Fully functional
- Source: Included
- Size: 142kB
Platforms: C2k7
PUtils v.1.01
By Peter Szarvas.
Freeware + source 19 Apr 1999Description
This unit including some useful function and procedure. Example: Days (a month days); WorkDays; DateToLongStr (with month names); some MessageDLG clone; InputPlus (enabled SpinEdit , Password and any bitmap); GaugeShow; GaugeNext; GaugeClose; extended registry support with variant type: RegWrite, RegRead functions; GetFreeRes (like the Windows 95 resoulce monitor); Memo line support (GetX, GetY, SetX, SetY ...); GetWaveVolume; SetWaveVolume, etc...Informations
- Status: Fully functional
- Source: Included
- Size: 60kB
Platforms: D3, D4
PyBridge Studio
By PyBridge.
Commercial 18 Aug 2022Description
A bundle with all PyBridge components, such as:- PBRedisClient
- PBNeo4jClient
- PBMemoryMappedFiles
- PBPipes
- PBFileStorage
- ...
- 10% cheaper than separate components
- Free components in a bundle: Buy a bundle now and enjoy all new component releases for free during the update period
- Single activation code
-
https://pybridge.net/DownloadTrial.php?product_name=PBStudio
-
https://pybridge.net/product/pbstudio/
Informations
- Status: Trial (work while IDE is running)
- Source: None
- price: $1600
- Size: 19 273kB
Platforms: C10, C10.1, C10.2, C10.3, C10.4, C11, C11.1, D10, D10.1, D10.2, D10.3, D10.4, D11, D11.1
SecureBlackbox for Java v.14.0
By Ken Ivanoff.
19 Dec 2015Description
SecureBlackbox for Java is a comprehensive class library that adds SFTP, FTPS, SSH, PGP, PDF, XML security, S/MIME, SSL/TLS, HTTPS, PKI, ZIP, EDI, Cloud, WebDAV, SAML, Office security support to your Java or Android application. SecureBlackbox primary goal is to provide technology for the wide range of applications, hiding the details of low-level protocols and algorithms, used by the parties during secure conversations.Informations
- Status: Fully functional
- Source: None
- price: $883
- Size: 56 862kB
Platforms: CB6
SentiMask SDK Trial v.2.0.193121.6
By Sergej Iljukevic.
New 18 Apr 2023Description
Real-time 3D face tracking SDK for development of applications like motion capture for 3D character face animation in entertainment applications (games, animated emoji), augmented reality apps (virtual makeup, mapping animated avatars on a face), facial pose, landmarks, shape and expression estimation and analytics. Gender and age evaluation. Glasses, hat, beard and mustache detection. Easy integration with other software like 3D modelling software or game engines. Works on PC or Mac with webcam or Android smartphone or iPhone.Informations
- Status: Fully functional
- Source: None
- Size: 399 411kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
SentiVeillance SDK Trial v.8.2.20230222
By Sergej Iljukevic.
08 Jan 2020Description
Real-time biometric facial recognition and pedestrian or vehicle tracking SDK for surveillance systems. Supports up to 10 IP cameras on one PC. Automatic identification against watch list, gender/emotions detection. Can be used for law enforcement, security, attendance control, visitor counting, traffic monitoring solutions. Supports Windows and Linux, samples in Java, .NET and C++. See also demo video at http://youtu.be/Jpt5jE5rwCQInformations
- Status: Fully functional
- Source: None
- price: $865
- Size: 1 394 595kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
SFExtCtrl v.1.0
By Frank Huber.
Freeware + source 01 May 2019Description
SFExtCtrl are advanced VCL Controls for Delphi. SFExtCtrl is free of charge and uses the terms of the MIT license. Following VCL Controls are included- TSFBgPanel: A background panel to which a background picture can be added. The background image fills the entire surface.
- TSFCheckImageListBox: A list box with choice (checkboxes for individual items) and the option to assign icons to the items.
- TSFLabeledImage: An image component with which images in the application can be fixed to each other. When changing the size or position of the main picture, the subordinate pictures and labels adapt accordingly. As a result, an overall picture can be simulated, in which, however, actions for individual elements (pictures or labels) can be reacted separately. Furthermore, pictures can also be colored.
- TSFImageLabel: Labels that can be positioned in a picture. See also TSFLabeledImage
- TSFLabeledColorPanel: A small bar chart with a description of the individual elements.
- TSFRotateText: A component that allows text to be rotated in all directions using the Font.Orientation property.
- TSFImageHelper: A helper class for loading images whose format is unknown.
Informations
- Status: Fully functional
- Source: Included
- Size: 27kB
Platforms: D10, D10.1, D10.2, D10.3, DXE5, DXE6, DXE7, DXE8
SocketTools File Transfer v.8.0.8050.2538
By Sherry Harwin.
Freeware 18 Jun 2016Description
The SocketTools File Transfer components enable you to easily integrate file transfer functionality into your applications with just a few lines of code using the standard FTP and HTTP protocols. Includes .NET and ActiveX components on 32-bit and 64-bit platforms, with support for both IPv4 and IPv6 connections. Documentation and examples are included with the product. This freeware version is completely free to use and redistribute with your applications. It can be used to create both free and commercial software without restrictions, and you are welcome to share the product with other developers.Informations
- Status: Fully functional
- Source: None
- Size: 11 143kB
Platforms: CB3, CB4, CB5, CB6, D2005, D4, D6, D7
SSIS Data Flow Components v.1.10
By Devart.
29 May 2019Description
Devart SSIS Data Flow Components allow you to integrate database and cloud data via SQL Server Integration Services (SSIS). Devart SSIS Data Flow Components provide easy to set up cost-effective data integration using SSIS ETL engine. They provide high performance data loading, convenient component editors, SQL support for cloud data sources and lots of data source specific features.Informations
- Status: Evaluation (time-limit)
- Source: None
- price: $999.95
- Size: 78 873kB
Platforms: C10, C10.1, C10.3, C2k10, CB3, CB5, CB6, CBXE2, CBXE4, CBXE5, CBXE7, D1, D10, D10.2, D10.3, D2, D2005, D2006, D2007, D3, D5, D6, DXE, DXE2, DXE3, DXE4, DXE64, DXE7, DXE8
Studio Controls COM v.6.0.0.5
Description
Studio Controls COM includes the following 32-bit Calendaring, Scheduler, Grid, Reporting, Data Presentation, Data Entry, UI and UX design controls. NOTE: the controls prefaced with 'ctx' also have 64-bit counter parts found in Studio Controls COM 64. Enhanced 32-Bit Unicode (ctx) ctxCalendar ctxFile ctxMEdit ctxToolbar ctxColor ctxFrame ctxMeter ctxTree ctxCombo ctxFont ctxNEdit ctxYear ctxContact ctxGauge ctxPrint ctxDate ctxHTML ctxSlide ctxDEdit ctxImage ctxSplit ctxDropDate ctxListbar ctxText ctxDropMenu ctxListView ctxTips ========== ========== ========== ========== ctAlarm ctDigit ctMEdit ctTabs ctBanner ctDropDate ctMenu ctText ctButton ctDropMenu ctMeter ctTips ctCalc ctExplorer ctMonth ctToolbar ctCalendar ctExplorerBar ctNavBar ctTray ctCheck ctFile ctNEdit ctTree ctClip ctFill ctPanel ctWave ctClock ctFold ctPaper ctWeek ctColor ctFont ctPrint ctYear ctColorButton ctFrame ctPush ctColorCombo ctGauge ctRadio ctColorPicker ctGrid ctRuler ctCombo ctGroup ctScroll ctContact ctHTML ctSlide ctDate ctHyperlink ctSList ctDayView ctImage ctSpin ctDEdit ctList ctSpiral ctDial ctListbar ctSplit For a details description of each product and the controls contained in each product please see - dbi-tech.comInformations
- Status: Fully functional
- Source: None
- price: $999
- Size: 74 196kB
Platforms: CB1, CB3, CB4, CB5, CB6, D2005, D4, D5, D6, D7
Vue Injector v.3.4.2
Description
Vue Injector is an open-source dependency injection library for Vue.js created by a team of front-end developers at SCAND. It includes a number of instances that can be used for the implementation of the dependency injection pattern. Also, it includes the following: Dependency injection for components Construction of the injected services Accessibility of Vue application from service Utilization of decorators for convenient operation The main benefits of Vue Injector: Provides developers with the ability to utilize dependency injection an important design pattern that is not included in Vue.js framework by default Provides convenient mechanism of data transfer Allows creating both a service and a service factory Allows requesting the service instead of creating it, providing the ability to depend on interfaces rather than concrete types Provides the ability to implement event bus Promotes the applications flexibility, efficiency, and robustness Allows creating easily testable and maintainable applications Visit https://scand.com/products/vue-injector/ to read the documentation and learn all the details.Informations
- Status: Fully functional
- Source: Included
- Size: 506kB
Platforms: CB3, CB4, CB5, CB6, D2005, D6, D7