Quantcast
Channel: Delphi Forum - Delphi Programming Kings of Code - Delphi Components
Viewing all 1331 articles
Browse latest View live

QuickBooks.Integrator.v.6.0.5962 D6-XE10.1 Berlin Setup & Crack

$
0
0
Hi,

QuickBooks.Integrator.v.6.0.5962 D6-XE10.1 Berlin Setup & Crack

1. Import .reg
2. Install
3. Select existing license during install

 

VrtuleTree-displays information about driver component

$
0
0
VrtuleTree is a tool that displays information about driver and device objects present in the system and relations between them. Its functionality is very similar to famous DeviceTree, however, VrtuleTree emhasises on stability and support of latest Windows versions


 

CrossTalk.v.2.0.20 Setup & KeyGen

$
0
0
Hi,

CrossTalk.v.2.0.20 Setup & KeyGen

 

AlphaControls.v.11.19 D5-XE10.1 Berlin DCU Only

$
0
0
Hi,

AlphaControls.v.11.19.D5-XE10.1 Berlin DCU Only

EMS Advanced Data Export VCL v4.13.3.2 Full Source

$
0
0
Advanced Data Export VCL is a component suite for Borland Delphi and C++ Builder that allows you to save your data in the most popular data formats for the future viewing, modification, printing or web publication. You can export data into MS Access, MS Excel, MS Word (RTF), Open XML Format, Open Document Format (ODF), HTML, XML, PDF, TXT, DBF, CSV and more! There will be no need to waste your time on tiresome data conversion - Advanced Data Export will do the task quickly and will give the result in the desired format.

You can't view the links! Click here to register

 

EMS Advanced Data Import VCL v3.9.7.0 Full Source

$
0
0
Advanced Data Import VCL is a component suite for Borland Delphi and C++ Builder that allows you to import data from files of the most popular data formats to the database. You can import data from MS Excel, MS Access, DBF, XML, TXT, CSV, ODF and HTML. There will be no need to waste your time on tiresome data conversion - Advanced Data Import will do the task quickly, irrespective of the source data format.

You can't view the links! Click here to register

 

FLRE -fast light regular expression library

$
0
0
 FLRE - Fast Light Regular Expressions - A fast light regular expression libraryFLRE ( F ast L ight R egular E xpressions) is a fast, safe and efficient regular expression library, which is implemented in Object Pascal (Delphi and Free Pascal) but which is even usable from other languages like C/C++ and so on. It requires PUCU.pas from You can't view the links! Click here to register for the Unicode data tables.It implements the many of the most common Perl and POSIX features, except irregular expression features like forward references and nested back references and so on, which aren't supported at FLRE, only real "back" references are supported, hence also the word "Light" at the FLRE name. It also finds the leftmost-first match, the same match that Perl and PCRE would, and can return submatch information. But it also features a flag for a yet experimental POSIX-style leftmost-longest match behaviour mode.FLRE is licensed under the LGPL v2.1 with static-linking-exception.And as a side note, the experimental support for lookahead assertions and back references may be removed later again, if it is recognized later that these capabilities are not effective or not issue-free without backtracking, because FLRE is primarly a backtracking-free regular expression engine.The secret of FLRE speed is that FLRE uses multiple subengines with automatic selection:
  • Fixed string search for pure static literal string regexs, SBNDMQ2 (a shift-and/shift-or variant with boyer-moore-style skipping) for short strings shorter than 32 chars, and boyer-moore for strings longer than or equal 32 chars.
  • Approximate heuristic regular expression prefix matching based on SBNDMQ2 for to find possible match begin boundaries very fast.
  • On the fly computed DFA (aka lazy DFA, DFA with caching of parallel-threaded-NFA/Thompson-NFA states) to find the whole match boundaries. For submatches, if they exists, it uses the remain subengines after the DFA match pass. This subengine is very fast.
  • One pass NFA This subengine is quite still fast. But it can process simple regexs only, where it's always immediately obvious when a repetition ends. For example 
    Code:
    x(y|z)
     and 
    Code:
    x*yx*
     are onepass, but 
    Code:
    (xy)|(xz)
     and 
    Code:
    x*x*
     not, but the regex abstract syntax tree optimizer optimizes the most cases anyway out, before the bytecode and the one pass NFA state map will generated. The base idea is from the re2 regular expression engine from Google.
  • Bit state NFA This subengine is quite still fast. But it can process short regexs only with less than 512 regex VM bytecode instructions and visited-flag-bitmaps with less than or equal 32 kilobytes. It's a backtracking algorithm with a manual stack in general, but it members the already visited (state, string position) pairs in a bitmap. The base idea is even from the re2 regular expression engine from Google.
  • Parallel threaded NFA (aka Thompson NFA / Pike VM). This subengine supports the most 08/15 regular expression syntax features except backtracking-stuff as backreferences and so on. And this subengine is also still fast, but not so fast like the one pass NFA subengine.
All these subengines are also UTF8 capable, where FLRE has Unicode 8.0.0 support, and where the UTF8 decoding work is baked into the regular expression DFA&NFA automations itself, so the underlying algorithms are still pure bytewise working algorithms, so that speed optimizations are easier to implement and where the code is overall less error-prone regarding bugs.And as an addon, FLRE features prefix presearching. So for example the prefix for the example regex 
Code:
Hel(?:lo|loop) [A-Za-z]+
 is 
Code:
Hello
.And FLRE can process 0-based null terminated C/C++ and 1-based (Object-)Pascal strings, so it has also a foreign API for usage with C/C++ (see FLRELib.dpr).FLRE features a prefilter boolean expression string generation feature in two variants, once as simple variant and once as SQL variant. For example, FLRE converts 
Code:
(hello|hi) world[a-z]+and you
 into the prefilter boolean expression string 
Code:
("hello world" OR "hi world") AND "and you"
 and into the prefilter boolean short expression string 
Code:
("hello world"|"hi world")and you
 and into the prefilter SQL boolean full text search expression string 
Code:
+("hello world" "hi world") +("and you")
 and into the prefilter boolean SQL expression string 
Code:
(((field LIKE "%hello world%") OR (field like "%hi world%")) AND (field like "%and you%"))
 where the field name is freely choosable, and FLRE converts 
Code:
(hello|hi) world[a-z]+and you
 into the prefilter boolean expression string 
Code:
("hello world" OR "hi world") AND * AND "and you"
 and into the prefilter boolean short expression string 
Code:
(hello world|hi world)*and you
, so with wildcards then now. This feature can reduce the number of actual regular expression searches significantly, if you combine it with the data storage on the upper level (for example with with a text trigram index).For a more complete engine with more features including backreferences and unicode support etc., see my old regular expression engine You can't view the links! Click here to register but otherwise FLRE is preferred now, since FLRE with its better structured code is more easily maintainable and therefore also overall less error-prone regarding bugs.

PasMP - a parallel-processing/multi-processing library

$
0
0
 PasMPPasMP - a parallel-processing/multi-processing library for Object PascalLicense: zlibYou can't view the links! Click here to registerTarget informations (i.e. System requirements)
  • 32-bit x86 targets must support the cmpxchg8b instruction (it present on most all post-80486 processors, so >= Pentium 1 and newer)
  • 64-bit x86 targets must support the cmpxchg16b instruction (early AMD64 processors before Revision F and some early stepping D Intel Nocona processors lacked the CMPXCHG16B instruction, otherwise all 64-bit x86 processors should have support for the cmpxchg16b instruction)
  • ARM targets must support the ldrexd and strexd instructions (it present on ARMv6k and ARMv7 and higher ARM processors)
  • MIPS targets aren't supported in the lock-free PasMP build variant (only as lock-based PasMP build variant), until I've found a way to do Double-Compare-And-Swap on the MIPS target. I would be most pleased to have your hints and suggestions to help up me to implement DCAS (or a lock-free ABA-free multiple producer multiple consumer queue and stack) on the MIPS target.
  • PowerPC targets aren't supported in the lock-free PasMP build variant (only as lock-based PasMP build variant), until I've found a way to do Double-Compare-And-Swap on the PowerPC target. I would be most pleased to have your hints and suggestions to help up me to implement DCAS (or a lock-free ABA-free multiple producer multiple consumer queue and stack) on the PowerPC target.

Greatis Delphi Ultimate Pack - September, 12 2012 / D3-XE3 32 & 64

$
0
0
Delphi Ultimate Pack for Delphi 3-7,2005-2007,2009,2010,XE,XE2.XE3 and C++ Builder 5-6
(September 12, 2012)

"Ultimate Delphi Pack is a unique collection of components for Delphi and C++ Builder. 
It contains last versions of all our top-rated products:"


Runtime Fusion that contains:

-Form Designer Pro

-ObjectInspector (Object Inspector suite includes) 
  • TPropertyInterface
  • TComponentInspector
  • TComponentComboBox
  • TCommonInspector
  • TDBInspector
  • TIniInspector
  • TApplicationInspector
  • TSystemColorsInspector

Print Suite Pro (Main components)
  • TPrintJob
  • TPreview
  • TPreviewComboBox
  • TPreviewLabel
  • TPreviewToolbar
  • TPreviewStatusBar
  • TPreviewWindow

Print Jobs components:
  • TSimpleGridPrintJob
  • TSimpleTextGridPrintJob
  • TDBGridPrintJob
  • TStringGridPrintJob
  • TListViewPrintJob
  • TStringsPrintJob
  • TRichEditPrintJob
  • TScreenshotPrintJob
  • TImagePrintJob
  • TControlPrintJob
  • TFormPrintJob
  • TMultiPrintJob
  • TDraftPrintJob

WinDowse

Commented Image

Image Editor (Image Editor Suite contains 5 components)
  • TImageEditor
  • TColorToolbar
  • TSimpleDrawer
  • TStandardDrawer
  • TPluginDrawer

iGrid Plotter

Delphi Bonus (Greatis Delphi Bonus contains) 
  • NameProp
  • TCoolorDialog
  • Form Skin
  • THistoryEdit
  • TIconList
  • TLife
  • TClock
  • TNotifier
  • TWinError

DELPHI TOYS (DELPHI TOYS contains)
  • Hot Keys
  • System Mouse
  • File Search
  • File Version
  • Window Information
  • Folder Monitor
  • Clipboard History
  • Form Saver
  • Desktop Settings
  • Windows Shutdown
 

sgcWebSockets VCL-FMX-Android-OSx-iOS

$
0
0
Free, No source !!!

WebSocket is a web technology providing for bi-directional, full-duplex communications channels, over a single Transmission Control Protocol (TCP) socket. The WebSocket API is being standardized by the W3C, and the WebSocket protocol has been standardized by the IETF as RFC 6455.

WebSocket is designed to be implemented in web browsers and web servers, but it can be used by any client or server application. The WebSocket protocol makes possible more interaction between a browser and a web site, facilitating live content and the creation of real-time games. This is made possible by providing a standardized way for the server to send content to the browser without being solicited by the client, and allowing for messages to be passed back and forth while keeping the connection open. In this way a two-way (bi-direction) ongoing conversation can take place between a browser and the server. A similar effect has been done in non-standardized ways using stop-gap technologies such as comet.

In addition, the communications are done over the regular TCP port number 80, which is of benefit for those environments which block non-standard Internet connections using a firewall. WebSocket protocol is currently supported in several browsers including Firefox and Google Chrome. WebSocket also requires web applications on the server to be able to support it.

Fully functional multithreaded WebSocket server according to RFC 6455.
  • Supports Firemonkey (Windows, MacOS, iOS and Android).
  • Supports Lazarus / FreePascal.
  • Supports CBuilder.
  • Supports C# .NET through sgcWebSockets.dll
  • Supports Chrome, Firefox, Safari, Opera and Internet Explorer (including iPhone, iPad and iPod)
  • Binary and Full Unicode Messages Support
  • Message compression using PerMessage_Deflate extension.
  • Flash FallBack for Web Browsers without native WebSockets (like Internet Explorer 6-9).
  • Multiple Threads Support
  • Server component providing WebSocket and HTTP connections through the same port.
  • Client WebSocket supports connections through Socket.IO Servers.
  • Client WebSocket supports connections through HTTP Proxy Servers.
  • WatchDog and HeartBeat built-in support.
  • Events Available: OnConnect, OnDisconnect, OnMessage, OnError
  • Built-in sub-protocols: JSON-RPC 2.0(Transactional Messages, PubSub, RPC, Queues, QoS and more), Datasets, Binary Files, WebRTC and WAMP.
  • Built-in Javascript libraries to support browser clients.
  • Easy to setup
  • Javascript Events for a full control
  • Async Events using Ajax
  • SSL/TLS support on Server and Client components
More: You can't view the links! Click here to register
Download: You can't view the links! Click here to register

PSoft Barcode studio with source

$
0
0
PSoft Barcode studio 2011, with source, include 3D barcodes, source modified from original to works with XE4, XE5, XE6, XE7, XE10.1


 

ZylGSM 1.37 for 10.1 Just install

$
0
0
ZylGSM is a Delphi & C++Builder component that communicates with a GSM modem or phone with integrated modem.
Main features:
- send SMS in text mode
- send SMS in PDU mode
- delete SMS
- dial in voice mode
- dial in data mode
- answer incoming call
- hang up current conversation
- recognize calls and identify caller number
- new SMS message alert
- read PDU and text SMS
- GSM 7-bit alphabet and UCS2 support
- concatenated (long) SMS support
- detect GSM modem
- execute custom AT commands

Website:
You can't view the links! Click here to register

 

ZylSerialPort 1.67 for delphi 4.0-10.1

$
0
0
info:
ZylSerialPort is a Delphi & C++Builder thread based asynchronous serial port component.
Use ZylSerialPort component to easily communicate with external devices on serial port connection, such as modems, bar code readers, GSM modules and others.

You can use it also with USB, IrDA and Bluetooth devices, because these devices have a driver that redirects the input from the USB, IrDA or Bluetooth port to a virtual serial port (you can check it in System/Device Manager/Ports). If your USB device is not provided with such a driver, then use a USB controller whose vendor provides a virtual serial port driver, such as You can't view the links! Click here to register or use a USB/RS-232 adapter.

The demo version is fully functional in Delphi and C++Builder IDE, but it displays a nag dialog (the licensed version will, of course, not have a nag dialog and will not be limited to the IDE). The package includes demo programs for Delphi and C++Builder and a help file with the description of the component.

more info:
You can't view the links! Click here to register


 

CodeInsightPlus Delphi xe7-10.1

$
0
0
Improvements

Reveal missing symbols in many cases (Press Ctrl+Space again to get more suggestions)
Customize Commit Behavior: Insert/Replace (Enter/Tab Key)
Auto Popup
Auto Parenthesis/Brackets
Auto Semicolon
Auto Peposition Code Parameters Tooltip
Auto Escape identifiers such as ‘For’
Suggest scoped enums
Hide inaccessible static members
TEncoding.FUTF8Encoding
TEncoding.GetUTF8
TFoo.$ClassInitFlag
Hide inaccessible Helper members
Hide nested type members when accessing via instance
Show Class Property Symbols
TEncoding.UTF8
Show static members declared in helper type
e.g. TGuidHelper.NewGuid => TGuid.NewGuid
Show non-instance members in static class methods
Show non-instance members in class constructor/class destructor
Improve display of generic symbols
Show both generic and non-generic method overloads

more info:Code:
PHP Code:
http://www.devjetsoftware.com/products/codeinsightplus/ 

Steema TeeChart Pro VCL FMX 2016.19.161025 D10.1 Berlin


RadiantShapes for Berlin

Intraweb 14.1.0 with registration

$
0
0
  • IntraWeb controls use less memory and perform better than previous versions. Major refactoring of base classes and controls, using improved data structures which use less memory and have better performance when compared to standard Delphi data structures (mainly TStringList).
  • New: class TBufferedHandleStream which drastically improves stream write and read performance. TempFileStream now descends from TBufferedHandleStream. New class TIWFileStream, descends from TBufferedHandleStream
  • New: TIWExceptionCallback allows 3rd party exception tracers/loggers (e.g. EurekaLog) to integrate with IntraWeb using a pre-defined, dedicated interface. 
  • New: TIWControl and TIWRegion now render margins when AlignWithMargins = True
  • New: IWComboBox now allows grouping of related options in the list, using OPTGROUP tag. Each group in the list must start with the plus sign char (+), e.g. "+Group 1"..
  • New: New basic data structures (list and dictionary classes) are used instead of TStringLists, in several internal classes. Less memory usage and more performance.
  • New: ServerController.OnRewriteURL event lets you specify Reverse proxy or RewriteURL parameter using events
  • New: IWModalWindow: Button close action can be skipped using "|NoClose"
  • New: TIWLayoutMgrForm, TIWLayoutMgrHTML and TIWTemplateProcessorHTML have a new published property StyleAttributesToRemove (TStringList). Each style attribute in the StyleAttriutesToRemove list will be removed when rendering controls in a form using templates
  • New: IWMonitor property jsCallbackName. This parameter is optional. When set, IWMonitor will call this JavaScript function each time it queries the status value from IW server. This function should be provided by user (JavaScript function).
  • New method CenterInParent() available in TIWCustomControl and TIWBaseContainer (TIWRegion and descendants). Centers a control within its parent's client area
  • New property CustomLockerAnimationFile (an animated gif file name), which allows you to customize the IWLocker image. A new (slightly bigger) locker is default. Many free sample lockers can be found inside \Images\LoadingGif subfolder
  • New properties:
    • TIWBaseForm.IsFirstRequest
    • TIWBaseForm.IsPostBack and TIWApplication.IsPostBack
    • TIWApplication.IsFormFirstRequest
  • Bug fix: Frame name validation wrongly raises an exception when 2 existing frames descend from the same parent frame (check the new "Frame Inheritance" demo project in our demo repository)
  • Bug fix: Aligned invisible controls (e.g. IWRegion with Visible=True, Align=alBottom) would still be considered when aligning other controls. This caused other controls to be wrongly aligned, as the invisible control was actually visible.
  • Bug fix: TIWDBLookupComboBox and TIWDBLookupListBox could show NonSelectionText property instead of actual selected item text after sync event
  • Bug fix: possible issue with multiple threads uploading files (FFileList)
  • Bug fix: WebApplication methods SwitchToSecure/SwitchToNonSecure (HTTPS <-> HTTP) could fail
  • Bug fix: Under very rare circumstances, some temporary files could remain until application termination
  • Bug fix: TIWDBGrid rendering issues when a control is assigned to a cell. Refreshing the Grid in Edit mode should not raise excepion
  • Modified: IWLists.pas has been renamed to IW.Common.Lists.pas
  • Modified: Faster SA Server with an Indy intercept class customization
  • Modified: IW Version check form is non modal, so IDE continues loading while the form is visible
  • Modified: TIWCompressionOptions.MinSize is now 512 bytes (instead of 1024)
  • Modified: "attr" tag is used instead of "attribute" in XML node (async response). This reduces the size of XML response, in average, 100+ bytes per object modified in an AJAX request.
  • Modified: TIWResyncInfo record (used when detecting sync issues/BackButton events) has 2 new members: FormOutOfSync and TrackIdOutOfSync.
  • IWBundledRemovalTool is now part of IntraWeb installation. It can be found inside folder \Tools\BundledRemoval
  • Dozens of other small improvements and fixes


Setup :Code:
PHP Code:
http://downloads.atozed.com/intraweb/iw14.1.0.exe 

FlatStyle_v4.56.0.0_FullSource for delphi 10.1

RVMedia v5.0.0 Full Source D6-DX10.1

ResizeKit for D5-D10.1 Berlin

Viewing all 1331 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>