Analog gauge c++ component
17/12/2008 external link
An4logGauge is a c++ VCL graphic control reproducing an analog meter for displaying floating point values.This control is based on 'A3nalogGauge.pas' Antialiased Analog Gauge component for Delphi 2002, Irnis Haliullin (irnis@irnis.net, http://www.irnis.net) which was based on AnalogGauge component by Shteg Vyacheslav, Supersampling algoritm of Nacho Urenda.See more info in the header file.Example of usage:#include "unt_An4logGauge.h"cls_An4logGauge* meter = new cls_An4logGauge(Panel1);//meter->Parent = Panel1; // Not necessary// Assign proper dimensions, ex:meter->Width = 200; // [pix]meter->Height = 100; // [pix]// Or dynamic dimensions:meter->Align = alClient;// Setting the Layout// For centered style call the facility:meter->SetCenteredLayout(120); // [deg]// For right or left style, simply call:meter->SetRightLayout(); // or SetLeftLayout()// More generally, set AngleMin and AngleRange:meter->AngleMin = 45; // [deg]meter->AngleRange = 270; // [deg]// Other settingsmeter->Caption = "A";meter->FullScaleMin = -50.0;meter->FullScaleMax = +50.0;// Displaying valuesmeter->Value = 10.3;// You can see value using hints:meter->ShowHint = true;// Something to do at mouse clickmeter->OnMouseDown = MyMeterMouseDown;/*void __fastcall MyMeterMouseDown(TObject*, TMouseButton, TShiftState, int, int);*/
C++0x Language Features
10/12/2008 external link
An overview of new features in the C++Builder 2009 compiler for supporting the upcoming C++ language standard C++0x and enhanced Delphi language compatibility.
Porting your C++ VCL Applications to RAD Studio 2009
8/12/2008 external link
Version 2009 of C++Builder introduced a Unicode-enabled version of VCL. Existing C++ VCL code that interacts with the C++ RTL/STL and the Windows API have many choices on how to embrace this change. This session will introduce the new Unicode types and API introduced by v2009 and offer advice on porting existing code.
SDL Component Suite 9.51 for C++Builder 6
7/12/2008 external link
As of December 2008 the SDL Component Suite is comprised of the following packages and units (summing up to a total of approx. 115000 lines of code):BasePack:SDL_SDLBase a collection of common declaration used by the other unitsSDL_SDLColors definitions and routines for color managementSDL_CPUID retrieving technical information about the CPU (serial no. etc)SDL_DStruct FIFO buffers, bit and byte arrays, RL encoder, associative arraysSDL_HtmlSupport a collection of routines to support HTML codeSDL_UnivConst a collection of universal constants (math, physics, chemistry, astronomy)SDL_FileSys a collection of system and file related routinesSDL_Streams a collection of routines for handling streamsSDL_StringL string processing and regular expression searchMathPack:SDL_Complex a collection of routines to calculate with complex numbersSDL_DataTable universal class for handling measurement dataSDL_Math1 a collection of basic math/statistics routinesSDL_Vector handling of vectorsSDL_Matrix for manipulating matricesSDL_Math2 a collection of advanced math/statistics routinesSDL_Fourier a fast Fourier transform (FFT) componentSDL_Kohonen a component to simulate a Kohonen mapSDL_SLine a non-visual component for performing calculations with straight linesSDL_Statis statistical functions, normal, t-, F-, and chi-square distributionSDL_Wavelet a simple wavelet componentChemPack:SDL_CData some fundamental chemistry related routinesSDL_CForm molecular formulasSDL_ChemGrph a component for displaying chemical structuresSDL_CStruct a unit for handling chemical structureGuiPack:SDL_ColSel a color select box for selecting system colorsSDL_GradFl a gradient fill componentSDL_MarkSel a component for selecting graphic symbolsSDL_Meter a good old index meter componentSDL_NumIO fail-safe input of formatted numbersSDL_NTabEd numerical table editorSDL_NumLab a numeric label componentSDL_ProgBar adjustable progress barsSDL_RasterLab scrolling dot matrix displaySDL_RepList a component for displaying reportsSDL_Thumbnails a component to display images as thumbnail collectionGeoPack:SDL_GeoDB database for geographic dataSDL_GeoMap a unit to display geographic mapsSDL_GeoAtlas a geographic atlas componentChartPack:SDL_BoxPlot a component to display boxplotsSDL_Gauge a gauge componentSDL_Plot3D a component to display color-coded 3D surfacesSDL_RChart the award winning scientific/engineering chart componentSDL_Rot3D a component to display 3D data and rotate them on-screenThe Light Edition is fully functional but restricted in many aspects; pleasesee the help file for details. A more detailed description of the components, as wellas application examples and further pricing information can be found at our Web site:http://www.lohninger.com/A lot of additional application examples can be downloaded fromhttp://www.lohninger.com/examples.html
SDL Component Suite 9.51 for C++Builder 2006
7/12/2008 external link
As of December 2008 the SDL Component Suite is comprised of the following packages and units (summing up to a total of approx. 115000 lines of code):BasePack:SDL_SDLBase a collection of common declaration used by the other unitsSDL_SDLColors definitions and routines for color managementSDL_CPUID retrieving technical information about the CPU (serial no. etc)SDL_DStruct FIFO buffers, bit and byte arrays, RL encoder, associative arraysSDL_HtmlSupport a collection of routines to support HTML codeSDL_UnivConst a collection of universal constants (math, physics, chemistry, astronomy)SDL_FileSys a collection of system and file related routinesSDL_Streams a collection of routines for handling streamsSDL_StringL string processing and regular expression searchMathPack:SDL_Complex a collection of routines to calculate with complex numbersSDL_DataTable universal class for handling measurement dataSDL_Math1 a collection of basic math/statistics routinesSDL_Vector handling of vectorsSDL_Matrix for manipulating matricesSDL_Math2 a collection of advanced math/statistics routinesSDL_Fourier a fast Fourier transform (FFT) componentSDL_Kohonen a component to simulate a Kohonen mapSDL_SLine a non-visual component for performing calculations with straight linesSDL_Statis statistical functions, normal, t-, F-, and chi-square distributionSDL_Wavelet a simple wavelet componentChemPack:SDL_CData some fundamental chemistry related routinesSDL_CForm molecular formulasSDL_ChemGrph a component for displaying chemical structuresSDL_CStruct a unit for handling chemical structureGuiPack:SDL_ColSel a color select box for selecting system colorsSDL_GradFl a gradient fill componentSDL_MarkSel a component for selecting graphic symbolsSDL_Meter a good old index meter componentSDL_NumIO fail-safe input of formatted numbersSDL_NTabEd numerical table editorSDL_NumLab a numeric label componentSDL_ProgBar adjustable progress barsSDL_RasterLab scrolling dot matrix displaySDL_RepList a component for displaying reportsSDL_Thumbnails a component to display images as thumbnail collectionGeoPack:SDL_GeoDB database for geographic dataSDL_GeoMap a unit to display geographic mapsSDL_GeoAtlas a geographic atlas componentChartPack:SDL_BoxPlot a component to display boxplotsSDL_Gauge a gauge componentSDL_Plot3D a component to display color-coded 3D surfacesSDL_RChart the award winning scientific/engineering chart componentSDL_Rot3D a component to display 3D data and rotate them on-screenThe Light Edition is fully functional but restricted in many aspects; pleasesee the help file for details. A more detailed description of the components, as wellas application examples and further pricing information can be found at our Web site:http://www.lohninger.com/A lot of additional application examples can be downloaded fromhttp://www.lohninger.com/examples.html
SDL Component Suite 9.51 for C++Builder 2007
7/12/2008 external link
As of December 2008 the SDL Component Suite is comprised of the following packages and units (summing up to a total of approx. 115000 lines of code):BasePack:SDL_SDLBase a collection of common declaration used by the other unitsSDL_SDLColors definitions and routines for color managementSDL_CPUID retrieving technical information about the CPU (serial no. etc)SDL_DStruct FIFO buffers, bit and byte arrays, RL encoder, associative arraysSDL_HtmlSupport a collection of routines to support HTML codeSDL_UnivConst a collection of universal constants (math, physics, chemistry, astronomy)SDL_FileSys a collection of system and file related routinesSDL_Streams a collection of routines for handling streamsSDL_StringL string processing and regular expression searchMathPack:SDL_Complex a collection of routines to calculate with complex numbersSDL_DataTable universal class for handling measurement dataSDL_Math1 a collection of basic math/statistics routinesSDL_Vector handling of vectorsSDL_Matrix for manipulating matricesSDL_Math2 a collection of advanced math/statistics routinesSDL_Fourier a fast Fourier transform (FFT) componentSDL_Kohonen a component to simulate a Kohonen mapSDL_SLine a non-visual component for performing calculations with straight linesSDL_Statis statistical functions, normal, t-, F-, and chi-square distributionSDL_Wavelet a simple wavelet componentChemPack:SDL_CData some fundamental chemistry related routinesSDL_CForm molecular formulasSDL_ChemGrph a component for displaying chemical structuresSDL_CStruct a unit for handling chemical structureGuiPack:SDL_ColSel a color select box for selecting system colorsSDL_GradFl a gradient fill componentSDL_MarkSel a component for selecting graphic symbolsSDL_Meter a good old index meter componentSDL_NumIO fail-safe input of formatted numbersSDL_NTabEd numerical table editorSDL_NumLab a numeric label componentSDL_ProgBar adjustable progress barsSDL_RasterLab scrolling dot matrix displaySDL_RepList a component for displaying reportsSDL_Thumbnails a component to display images as thumbnail collectionGeoPack:SDL_GeoDB database for geographic dataSDL_GeoMap a unit to display geographic mapsSDL_GeoAtlas a geographic atlas componentChartPack:SDL_BoxPlot a component to display boxplotsSDL_Gauge a gauge componentSDL_Plot3D a component to display color-coded 3D surfacesSDL_RChart the award winning scientific/engineering chart componentSDL_Rot3D a component to display 3D data and rotate them on-screenThe Light Edition is fully functional but restricted in many aspects; pleasesee the help file for details. A more detailed description of the components, as wellas application examples and further pricing information can be found at our Web site:http://www.lohninger.com/A lot of additional application examples can be downloaded fromhttp://www.lohninger.com/examples.html
SDL Component Suite 9.51 for C++Builder 2009
7/12/2008 external link
As of December 2008 the SDL Component Suite is comprised of the following packages and units (summing up to a total of approx. 115000 lines of code):BasePack:SDL_SDLBase a collection of common declaration used by the other unitsSDL_SDLColors definitions and routines for color managementSDL_CPUID retrieving technical information about the CPU (serial no. etc)SDL_DStruct FIFO buffers, bit and byte arrays, RL encoder, associative arraysSDL_HtmlSupport a collection of routines to support HTML codeSDL_UnivConst a collection of universal constants (math, physics, chemistry, astronomy)SDL_FileSys a collection of system and file related routinesSDL_Streams a collection of routines for handling streamsSDL_StringL string processing and regular expression searchMathPack:SDL_Complex a collection of routines to calculate with complex numbersSDL_DataTable universal class for handling measurement dataSDL_Math1 a collection of basic math/statistics routinesSDL_Vector handling of vectorsSDL_Matrix for manipulating matricesSDL_Math2 a collection of advanced math/statistics routinesSDL_Fourier a fast Fourier transform (FFT) componentSDL_Kohonen a component to simulate a Kohonen mapSDL_SLine a non-visual component for performing calculations with straight linesSDL_Statis statistical functions, normal, t-, F-, and chi-square distributionSDL_Wavelet a simple wavelet componentChemPack:SDL_CData some fundamental chemistry related routinesSDL_CForm molecular formulasSDL_ChemGrph a component for displaying chemical structuresSDL_CStruct a unit for handling chemical structureGuiPack:SDL_ColSel a color select box for selecting system colorsSDL_GradFl a gradient fill componentSDL_MarkSel a component for selecting graphic symbolsSDL_Meter a good old index meter componentSDL_NumIO fail-safe input of formatted numbersSDL_NTabEd numerical table editorSDL_NumLab a numeric label componentSDL_ProgBar adjustable progress barsSDL_RasterLab scrolling dot matrix displaySDL_RepList a component for displaying reportsSDL_Thumbnails a component to display images as thumbnail collectionGeoPack:SDL_GeoDB database for geographic dataSDL_GeoMap a unit to display geographic mapsSDL_GeoAtlas a geographic atlas componentChartPack:SDL_BoxPlot a component to display boxplotsSDL_Gauge a gauge componentSDL_Plot3D a component to display color-coded 3D surfacesSDL_RChart the award winning scientific/engineering chart componentSDL_Rot3D a component to display 3D data and rotate them on-screenThe Light Edition is fully functional but restricted in many aspects; pleasesee the help file for details. A more detailed description of the components, as wellas application examples and further pricing information can be found at our Web site:- http://www.lohninger.com/A lot of additional application examples can be downloaded fromhttp://www.lohninger.com/examples.html
Parallel Sort using C++ and the WinAPI
1/12/2008 external link
This is a divide-and-conquer sorting technique that uses threading to ....1. Partition contigious data in two parts2. Sort each part in Parallel3. Merge the two partsThe average speed up is 2x on a dual core.Other notes...1. Assumes that your processor is dual or multicore.2. The code should work in a single core but maybe with lower performance (untested).3. No attempt was made to choose a core/thread affinity, the O/S seems to choose core 0 and core 1 magically to get the parallel deed done as expected.4. We use CreateEvent/SetEvent and WaitForMultipleObjects for synchronization.5. I wrote my own quick sort code and did not use the rtl qsort - just in case it was not thread safe. And I advise you do the same as well in your code (just in case).6. I hacked up the merge code, had one error since last upload (did not test it).7. The button that says timing screen shows the timing for the threads. Frankly that timing screen is more complex than the parallel sort. 8. This approach to merging takes up more memory than just sorting all your data in one go. I think there are merging techniques that usse less RAM but I did not fully research this.9. The approach of the code is ment for a dual core, a quad core will still see a 2x improvement in speed (untested) but no more. The code should be easy enough to follow to have a multicore (>2) solution.10. More memory is required. If it were a straight sort of all the data then we do not need to merge. However this merge algorithm requires we have another copy of RAM required for the merge destination, so while there is a speed up, more RAM is required.Disclaimer:The code is an attempt to use synchronization to do SMP type work on a multi core processor. It is quite possible that they may be bugs and other items that may need attention to get this code commercial quality. There is no support for this code and no guarantee it will work perfectly in all O/S Processor environments.
/n software IP*Works! Secure SNMP C++ Builder Edition
21/11/2008 external link
IP*Works! Secure SNMP is a robust suite of components for embedding real-time network management and agent functionality into applications and network devices. Including the latest in SNMPv3 security, IP*Works! Secure SNMP is the most comprehensive suite of tools for SNMP development using the latest SNMPv3 security features for authentication, authorization, and access control. Highlights:- Support for the latest SNMP standards including SNMPv1, SNMPv2c, and Secure SNMPv3. - Security features including authentication, authorization, and access control. - Read and compile ASN.1 MIB files into an easy to use object representation.- SNMP trap management and filtering.- Includes support for all major SNMP PDU's and variable types.- FIPS 140-2 compliant cryptography (windows only).- Optimized asynchronous socket architecture.- Fast, robust, and reliable, the components consume a minimum of resources. - Native development components for all supported platforms and component technologies. - A complete unified framework with a common easy-to-learn object model and simplified interfaces allowing you to be more productive. - Rigorously tested, rock solid components that have undergone hundreds of thousands of hours of testing both internally by our QA team and externally through customer installations. - Detailed reference documentation, hundreds of sample applications, fully-indexed help files, and an extensive online knowledge base. - Backed by multi-tier professional support, including free email support and enterprise-level paid support.
/n software IP*Works! S/MIME C++ Builder Edition
21/11/2008 external link
Components for secure Email communications via S/MIME encryption and digital certificates. Developers can encrypt files, emails, and even newsgroup postings as well as sign and verify message signatures using X.509 digital certificates.IP*Works! S/MIME includes a generic S/MIME component as well as S/MIME enabled versions of the IP*Works! POP3, IMAP4, NNTP, SMTP, FileMailer and HTMLMailer components. Digital certificate creation, signing, and management features have also been included. Highlights: - Support for the S/MIME v2 and S/MIME v3 standards for mail and document encryption. - Encrypt/decrypt, sign, and verify message signatures using S/MIME and digital certificates. - S/MIME enabled versions of all major Internet mail protocols. - Easily create HTML emails and include file attachments. - Advanced Digital Certificate capabilities allow you to create, sign, and manage X.509 Digital Certificates. Become your own certificate authority. - FIPS 140-2 compliant cryptography (windows only).- Fast, robust, and reliable, the components consume a minimum of resources. - Native development components for all supported platforms and component technologies. - A complete unified framework with a common easy-to-learn object model and simplified interfaces allowing you to be more productive. - Rigorously tested, rock solid components that have undergone hundreds of thousands of hours of testing both internally by our QA team and externally through customer installations. - Detailed reference documentation, hundreds of sample applications, fully-indexed help files, and an extensive online knowledge base. - Components are thread-safe on critical members. - Licensed by the US Government for export under License Exception ENC Sections 740.17 (A) and (B)(3). Export Classification: 5D002. - Support for IPv6 addressing. - Support for 64-bit architectures. - Streams and Collections implemented simplify the component interfaces across the package.- Backed by multi-tier professional support, including free email support and enterprise-level paid support.- and much more!
/n software IP*Works! SSL C++ Builder Edition
21/11/2008 external link
IP*Works! SSL is a no-compromise, comprehensive suite of royalty-free SSL-enabled components. It brings unprecedented ease of use to Secure Internet Development with drop-in replacements for the components in the ""classic"" IP*Works! package, well known in the development community for their straightforward, intuitive interfaces, and powerful productivity features. IP*Works! SSL adds SSL security capabilities to the base IP*Works! package. Supports secure implementations of every major SSL-enabled Internet protocol including: FTPS, HTTPS, SMTPS, POPS, IMAPS, LDAPS, SMPPS, XMPPS, SOAPS, WebDavS, CertMgr, etc.Highlights:- Secure data communications using up to 128-bit strong SSL encryption and digital certificates. - Authenticate and encrypt/decrypt data sent and received using SSL2, SSL3, PCT or TLS. - Supports both client-side and server-side authentication. - Full control over the SSL authentication process allows you to accept or reject certificates based certificate parameters. - FIPS 140-2 compliant cryptography (windows only).- Secure server component is also included. Easily build SSL-enabled ftp servers, web servers, or custom server solutions. - Advanced digital certificate capabilities allow you to create, sign, and manage X.509 digital certificates. Become your own certificate authority. - Fast, robust, and reliable, the components consume a minimum of resources. - Native development components for all supported platforms and component technologies. - A complete unified framework with a common easy-to-learn object model and simplified interfaces allowing you to be more productive. - Rigorously tested, rock solid components that have undergone hundreds of thousands of hours of testing both internally by our QA team and externally through customer installations. - Detailed reference documentation, hundreds of sample applications, fully-indexed help files, and an extensive online knowledge base. - Licensed by the US Government for export under License Exception ENC Sections 740.17 (A) and (B)(3). Export Classification: 5D002.- Support for IPv6 addressing.- Support for 64-bit architectures.- Native support for NTLM authentication.- Support for SSL connection reuse.- Backed by multi-tier professional support, including free email support and enterprise-level paid support.
/n software IP*Works! C++ Builder Edition
21/11/2008 external link
IP*Works! is a comprehensive framework for Internet development and is the core building block for most /n software products. IP*Works! eliminates the complexity of Internet development providing easy-to-use, programmable components that facilitate tasks such as sending email, transferring files, managing networks, browsing the web, consuming web services, etc.A robust framework including more than 40 enterprise-class controls, IP*Works! enables rapid integration of any major Internet communications protocol or technology including: FTP, HTTP, SMTP, POP, IMAP, SNMP, LDAP, DNS, RSS, SMPP(SMS), XMPP (Jabber), SOAP, WebDav, and more! Highlights:- A comprehensive suite of tools covering all major Internet technologies. - Fast, robust, and reliable, the components consume a minimum of resources. - Small and lightweight components with no dependencies on external libraries. - Native development components for all supported platforms and component technologies. - A complete unified framework with a common easy-to-learn object model and simplified interfaces allowing you to be more productive. - Rigorously tested, rock solid components that have undergone hundreds of thousands of hours of testing both internally by our QA team and externally through customer installations. - Detailed reference documentation, hundreds of sample applications, fully-indexed help files, and an extensive online knowledge base.
TRichView editor for C++Builder
15/11/2008 external link
This installation includes two sets of components for C++Builder 2009:1. TRichView (rich text editing components)2. RichViewActions (user interface for TRichView)About TRichViewTRichView is a suite of native Delphi/C++Builder components for displaying, editing and printing hypertext documents. Components support various character attributes (fonts, subscripts/superscripts, colored text background, custom drawn).Documents can contain tables, pictures, images from imagelists, arbitrary Delphi controls. Left, right, center or justify alignments of paragraphs, multilevel bullets and numbering, custom margins and indents, background images, print preview, RTF import and export, HTML export, data-aware versions and more...TRichView is completely written in Delphi, and does not use external DLL or ActiveX files. It is not based on Microsoft RichEdit control.This is a trial version. It's fully functional, but displays "unregistered" label.Full source code on registration.About RichViewActionsRichViewActions is a set of actions and components for creating user interface for a word processor. RichViewActions package includes actions for all basic and many advanced word processing commands, predefined dialogs, additional components (such as ruler). RichViewActions package is translated to more than 20 languages.RichViewActions package is a freeware with source code (but requires TRichView).
ElevateDB
11/11/2008 external link
ElevateDB is our latest embedded database engine for use by developers within their applications. It is available for the Borland Delphi, C++Builder, and Developer Studio products, the CodeGear RAD Studio products, the Microsoft Visual Studio .Net products, the Lazarus (Free Pascal) product, and any development environment that can use the ODBC architecture for data access such as PHP or Java.The new ElevateDB 2.0 includes complete support for both uni-directional and bi-directional replication with your choice of push or pull synchronization options. The replication can also be used for hot backup of ElevateDB Servers and the ultimate in redundancy and safety that will drastically reduce downtime in the case of a server failure.
CnWizards v0.8.9.456
6/11/2008 external link
=====================1. What is CnWizards?=====================CnWizards is CnPack's main products, with the English full name 'CnPack IDE Wizards'. It's a free plug-in tools set used in Delphi/C++Builder/BDS to improve our development efficiency.=========================2. Who can use CnWizards?=========================CnWizards is designed to face the programmers who use Delphi 5 6 7 8, C++Builder 5 6 and BDS 2005 2006, RAD Studio 2007 2009.The offical version of CnWizards includes three languages: Simplified Chinese, Traditional Chinese and English.=========================3. What can CnWizards do?=========================CnWizards provides more than ten wizards with a lot of enhancements in Delphi / C++ Builder /BDS IDE: * Code Input Helper * Code Structure Highlight and Lines * Enhanced Units/Forms List * TabOrder Wizard * Flat Toolbar in Form Designer with full customized * MSDN Help Integrated * Toolbar in Editor with full customized * Project Extension Tools * Multi-line Component Palette * Roll Windows and Set to Topmost * Source Codes Statistics * Uses Unit Cleaner * Lots of Other ImprovementsScreenshot (English):http://www.cnpack.org/images/cnwizards.gifFurthermore, these independent tools are also included in CnWizards: * CnWizards Configuration Import&Export * DFM File Convertor * IDE Config Backup/Restore Tool, including IDE History Cleaner * Debug Output Unit & Viewer * ASCII Chart * IDE External Wizard Management Tool * Source-Module Relation AnalyzerCnWizards is a FREE, OPENSOURCE tool. Anyone can use CnWizards freely.=====================4. About CnPack Team=====================CnPack Team are Made up of Many Chinese Programmers and Delphi / C++ Builder Fans on Internet. Our products include CnPack IDE Wizards, CnPack Component Package and CVSTracNT. etc.CnPack Website: http://www.cnpack.orgCnPack BBS: http://bbs.cnpack.orgNightly Build: http://www.cnpack.org/downbuilds.phpEmail: master@cnpack.org=====================5. Change List=====================0.8.9 to 0.8.8:+ Add Support to Delphi 2009 but Some Features Disabled. Only Support 12.0. 3163.16989 and Later.+ Add Background Highlight Current Identifier at Cursor in Source Highlight. Defaultly Disabled.+ Add Procedure List Editor ToolBar. Only Support Pascal Files.+ Add C/C++ File and HTML Encode Support to Source Format Convert Wizard.* Add Form Designer's Renaming Support to Prefix Wizard.* Fix a Problem of Accent Char Input when Auto Input Bracket Enabled.* Fix a UTF8 Problem in Source Compare Wizard in BDS.* Allow to Ignore CRLF in "Convert to String" Function.* Optimize Filtering in Procedure List in BDS.* Add Some Pascal Script Demos.* Other Bugs Fixed.
Detecting Suspend Time
1/11/2008 external link
On some projects, I need to have up time always. Suspend affects my application's TCP services and causes data loss.This code snippet, uses the Power Management APIs to detect and show how long it takes before your PC goes into a suspend state.However another thing that can be done (and not demonstrated here) is to intercept the suspend call, and tell the system not to suspend.This is a BCB6 Project so the header file powrprof.h is included.It also demonstrates how to use LoadLibrary and GetProcAddress to call functions that your compiler may not yet support.
ACE+TAO+CIAO
28/10/2008 external link
Washington University, Center for Distributed Object ComputingUniversity of California at Irvine, Laboratory for Distributed Object ComputingACE is an object-oriented framework that implements many core design patterns for concurrent communication software.TAO is a standard-compliant implementation of CORBA that is designed for applications with high-performance and real-time requirements.Overview of the ACE+TAO ProjectOver the past decade, my research group has worked on many large-scale distributed application projects in diverse domains, including command and control systems, telecom, datacom, medical engineering, distributed interactive simulations, and financial services. Regardless of the domain and application requirements, we've found many software developers wrestling with the same core infrastructure challenges. Chief among these challenges include addressing OS platform portability, connection management and service initialization, event demultiplexing and event handler dispatching, multi-threading and synchronization, and fault detection and fault tolerance.Unfortunately, it's very costly, time consuming, and error-prone for projects and companies to independently rediscover and reinvent ad hoc solutions to these core distributed application software development challenges. Fortunately, we have identified a relatively concise set of patterns and framework components that can be applied systematically to eliminate most of the tedious, error-prone, and non-portable aspects of developing and maintaining distributed applications. A decade of intense R&D on these topics has yielded ACE, which is an object-oriented framework that implements many core design patterns for concurrent communication software. We have applied the patterns and components in the ACE framework to develop The ACE ORB (TAO), which is our standards-based, CORBA middleware framework. TAO applies the best software practices and patterns that we have discovered in our work on ACE in order to automate the delivery of efficient, scalable, and predictable real-time quality-of-service (QoS) to distributed applications.Both ACE and TAO are freely available, open-source software that have been funded by the DARPA Quorum program, NSF, and many visionary industrial sponsors.It's important to recognize the extent to which TAO's open-source development model is responsible for its success. We're proud to have so many bright staff, students, and members of the ACE+TAO development community working with us over the years. As you work with TAO, please feel free to experiment with, dissect, repair, and improve it. We accept bug reports, appreciate bug fixes/enhancements, and strive to integrate correct bug fixes quickly using our online problem tracking system.Douglas C. Schmidtd.schmidt@vanderbilt.edu
Virtual computing
20/10/2008 external link
In this submission it's shown that conventional program design doesn't distinguish between global object behavior and local object behavior. In analogous way conventional theory of signals doesn't distinguish between global signal behavior and local signal behavior. Both mentioned problems are handled by virtual computing.
Abakus VCL, components for virtual instrumentation
4/10/2008 external link
Abakus VCL is a set of professional Delphi / C++Builder realtime components for virtual instrumentation. They can be used at home as well as for business purposes.All our components are flicker-free (at runtime) and can be customised in many ways.Components:- Meters, Bars (Gauge), with linear or log(10) scaling - Digital indicators (time, value) - Tank displays - Operating Point display - Trend/recorder - Dial (knob), Sliders - buttons, switches, LED indicators - DB-Aware components - .....
Code editor for 1C 7.7
28/9/2008 external link
Code editor for 1C 7.7Features:- Code folding- Sync edit- Syntax highlighting- Intellisense- Navigation
Turbo C++ 2006 Explorer
22/9/2008 external link
<p>Turbo C++ Explorer Free Download, Full Product, French</p><h4>Important: You must download and install the following prerequisites before installing your Turbo product</h4><p>The prerequisite installer will install the software necessary for your Turbo product to run, including Microsoft .NET Framework v1.1 Redistributable, Microsoft .NET SDK v1.1, Microsoft Visual J# v1.1 Redistributable, Microsoft Internet Explorer 6 SP1 and Microsoft XML Core Services v4.0 SP2. If you already have any of these items installed, the installer will skip them.</p><a href="ftp://ftpd.codegear.com/download/bds/bds_2006_trial/french/arch/disk2/PrereqsFR.zip">French full prerequisite install</a> <br><br><p>You can then download and run the main Turbo C++ install. The prereqs and main Turbo packages should be extracted to the same location on your local machine.</p><p>Your serial number will be emailed. You will be prompted to enter the serial number/key and register the first time you run the product.</p><p><b>PLEASE NOTE</b>: Only one Turbo product can be installed on a PC or VM at a time. In addition, the Turbo products cannot be installed on a machine that has Borland Developer Studio installed.</p>
Turbo C++ 2006 Explorer
22/9/2008 external link
<p>Turbo C++ Explorer Free Download, Full Product, Japanese</p><h4>Important: You must download and install the following prerequisites before installing your Turbo product</h4><p>The prerequisite installer will install the software necessary for your Turbo product to run, including Microsoft .NET Framework v1.1 Redistributable, Microsoft .NET SDK v1.1, Microsoft Visual J# v1.1 Redistributable, Microsoft Internet Explorer 6 SP1 and Microsoft XML Core Services v4.0 SP2. If you already have any of these items installed, the installer will skip them.</p><a href="ftp://ftpd.codegear.com/download/bds/bds_2006_trial/japanese/arch/disk2/PrereqsJP.zip">Japanese full prerequisite install</a> <br><br><p>You can then download and run the main Turbo C++ install. The prereqs and main Turbo packages should be extracted to the same location on your local machine.</p><p>Your serial number will be emailed. You will be prompted to enter the serial number/key and register the first time you run the product.</p><p><b>PLEASE NOTE</b>: Only one Turbo product can be installed on a PC or VM at a time. In addition, the Turbo products cannot be installed on a machine that has Borland Developer Studio installed.</p>
Turbo C++ 2006 Explorer
22/9/2008 external link
<p>Turbo C++ Explorer Free Download, Full Product, German</p><h4>Important: You must download and install the following prerequisites before installing your Turbo product</h4><p>The prerequisite installer will install the software necessary for your Turbo product to run, including Microsoft .NET Framework v1.1 Redistributable, Microsoft .NET SDK v1.1, Microsoft Visual J# v1.1 Redistributable, Microsoft Internet Explorer 6 SP1 and Microsoft XML Core Services v4.0 SP2. If you already have any of these items installed, the installer will skip them.</p><a href="ftp://ftpd.codegear.com/download/bds/bds_2006_trial/german/arch/disk2/PrereqsDE.zip">German full prerequisite install</a> <br><br><p>You can then download and run the main Turbo C++ install. The prereqs and main Turbo packages should be extracted to the same location on your local machine.</p><p>Your serial number will be emailed. You will be prompted to enter the serial number/key and register the first time you run the product.</p><p><b>PLEASE NOTE</b>: Only one Turbo product can be installed on a PC or VM at a time. In addition, the Turbo products cannot be installed on a machine that has Borland Developer Studio installed.</p>
Turbo C++ 2006 Explorer
22/9/2008 external link
<p>Turbo C++ Explorer Free Download, Full Product, English</p><h4>Important: You must download and install the following prerequisites before installing your Turbo product</h4><p>The prerequisite installer will install the software necessary for your Turbo product to run, including Microsoft .NET Framework v1.1 Redistributable, Microsoft .NET SDK v1.1, Microsoft Visual J# v1.1 Redistributable, Microsoft Internet Explorer 6 SP1 and Microsoft XML Core Services v4.0 SP2. If you already have any of these items installed, the installer will skip them.</p><a href="ftp://ftpd.codegear.com/download/bds/bds_2006_trial/english/arch/disk2/prereqs.zip">English full prerequisite install</a> <br><br><p>You can then download and run the main Turbo C++ install. The prereqs and main Turbo packages should be extracted to the same location on your local machine.</p><p>Your serial number will be emailed. You will be prompted to enter the serial number/key and register the first time you run the product.</p><p><b>PLEASE NOTE</b>: Only one Turbo product can be installed on a PC or VM at a time. In addition, the Turbo products cannot be installed on a machine that has Borland Developer Studio installed.</p>
CodeGear RAD Studio 2007 ISO (Dec 2007)
19/9/2008 external link
This ISO of the CodeGear RAD Studio 2007 DVD can be used to install CodeGear RAD Studio 2007, C++Builder 2007 (original release with Update 3 or R2 release) or Delphi 2007 for Win32 (original release with Update 3 or R2 release). The serial number you enter determines which product(s) will be installed.<P>This download is available only to registered users of RAD Studio 2007, Delphi 2007 or C++Builder 2007<P>If you don't already have a registered copy of one of the qualifying products, go to http://cc.codegear.com/item/25015 to download the ISO and get a trial serial number.<p><br><font color="#FF0000"><b>IMPORTANT: INTERNET EXPLORER DOESN'T SUPPORT FILE DOWNLOADS OF THIS SIZE AND WILL NOT DOWNLOAD THE FILE CORRECTLY. IF YOU CLICK THE HTTP LINK WITH INTERNET EXPLORER YOU WILL GET AN ERROR THAT IT CANNOT DISPLAY THE PAGE. IF YOU TRY THE FTP LINK WITH INTERNET EXPLORER AND YOUR CLIENT SHOWS A DOWNLOAD SIZE SMALLER THAN 4GB, YOU WILL NOT GET THE ENTIRE FILE.</b></font><p><br>Products such as these support downloads of this size:<p>FireFox <a href="http://www.mozilla.com/firefox">http://www.mozilla.com/firefox</a><br>FlashGet <a href="http://www.flashget.com/en/download.htm">http://www.flashget.com/en/download.htm</a><br>Free Download Manager <a href="http://www.freedownloadmanager.org/">http://www.freedownloadmanager.org/</a><p><br>Additional information for users installing Update 3: If you are updating an existing install of Delphi to C++Builder, the update will re-install your currently installed product. Please view the following URL before installing this update: <a href="http://dn.codegear.com/article/36858">http://dn.codegear.com/article/36858</a>
Datamatrix
19/9/2008 external link
* This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details.
Suport with CreateOleObject
12/9/2008 external link
Hi guys.I work with C++Builder and I install a COM Delphi in project.I dont understand this erro in souce code: objNBioBSP = CreateOleObject("NBioBSPCOM.NBioBSP"); objDevice = objNBioBSP.Device; objExtraction = objNBioBSP.Extraction; objMatching = objNBioBSP.Matching; objIndexSearch = objNBioBSP.IndexSearch; String str = ""; Edit3->Text = ""; objExtraction.WindowStyle = NBioAPI_WINDOW_STYLE_INVISIBLE; objExtraction.FingerWnd = Form1->Panel1->Handle; objExtraction.DefaultTimeout = 5000; objDevice.Open(NBioAPI_DEVICE_ID_AUTO_DETECT) ; if (objDevice.ErrorCode != NBioAPIERROR_NONE) { str = objDevice.ErrorDescription; return; } objDevice.Open(255); objExtraction.Capture(); Edit3->Text = objExtraction.TextEncodeFIR; objMatching.VerifyMatch(Edit2->Text,objExtraction.TextEncodeFIR); objDevice.Close(255); if (objMatching.MatchingResult == NBioAPI_TRUE) { ShowMessage("OK !"); } else { ShowMessage("ERROR !") }But, the error variable create for Variant, not member class.I need help.Thank you.Baruc
TVideoGrabber 7.6 build 214.7
12/9/2008 external link
TVideoGrabber is a video capture and media player component designed for an easy, intuitive and fast development of applications including video capture, media player or live streaming features.TVideoGrabber captures video and audio streams from most of the video and audio capture devices available on the market like DV camcorders, USB webcams, PCI capture cards, TV cards, USB capture devices, firewire (IEE1394) cameras, IP cameras.TVideoGrabber is also an advanced media player that lets you capture frames, perform graphics or text overlays, play the clips faster or slower, forwards or backwards.TVideoGrabber includes a single video component the following main features:Video Capture: captures analog or digital video sources like Firewire (IEEE1394) cameras, DV camcorders, USB web cams, TV cards, PCI composite cards, USB devices, with or without audio. Video Recording: Records in AVI, WMV or MPEG format. Compress on the fly or after recording, by using codecs. Supports hardware MPEG2 encoding, e.g. with Hauppauge PVR or Plextor ConvertX. IP Cameras: support for IP cameras and IP video servers in MJPEG and JPG mode, Axis cameras in MPEG4 modeVideo Clips from JPG or BMP files: builds video clips from a set of picture files. Audio recording: records in WAV or MP3 from an audio capture device or a video clip. Media player: plays most of video clips at normal speed, faster or slower, forward or backward. The SourceStream property lets you specify a TStream as source.Video Streaming: streams video capture devices or video clips directly from the computer or indirectly through a Windows Media server. Text and Graphics Overkays: draws text and graphics over video frames. Includes text shadowing for a better readability. Audio Broadcasting: streams the audio capture device or the audio extracted from a video clip directly from the computer or indirectly through a Windows Media server. Audio Vu-Meters: displays the audio levels with analog or bargraph VU-meters. Tuning: support video capture devices including a TV and/or radio tuner.DV Support: includes DV time-code, DV date/time, DV camcorder control, deinterlacing, send to DV (Print to DV). Motion Detection: include motion detection with the possibility to define area of sensitivity.Multiplexed Inputs: support video capture cards with multiplexed inputs, e.g. for video surveillance applications. Mixer: the mixer mode allows to map several video sources within a single TVideoGrabber componentVideo Processing: transparency, chroma key, cropping, zooming, top-down, hue, saturation, contrast, etc... Dual Display: display 2 video windows on different monitors. Reencoding: converts video clips in other formats, by using the codecs available on the current platform. Several instances of TVideoGrabber can be used concurrently, e.g. to display a video capture window and a media player window on the same form, or to run several cameras concurrently on the same form.The package includes several demo projects showing how to implement the simplest as well as the most advanced features, which require only a few lines of code.The price of the license includes the free upgrades with e-mail support during 2 years.
LMD-Tools Special Edition (C++ Builder)
6/9/2008 external link
LMD Tools Special Edition contains almost 100 free components for different development tasks , representing an extract of our successful LMD-Tools component suite (based on the 9.0 release). Buttons, Dialogs, Multimedia, System, Container, Standard, Label, and Extended controls will allow the developer to produce professional applications, quicker and easier than ever before. No restrictions exist (all components run outside the IDE), but sourcecode of the library is not provided. Against the full product only bonus packages or major components like the ButtonBar, SplitterPanel, Extended Dialog or data-aware controls are missing. An automatic installer is provided. Demos are included, helpfile can be downloaded free of charge from our web site.
/n software Red Carpet Subscription for C++ Builder
5/9/2008 external link
/n software - Communications, Security, and E-Business Components for CodeGear Delphi 2009For nearly a decade /n software has been building components that allow developers using CodeGear products to easily integrate Internet communications, security, and e-business communications into their applications. - Native VCL's and fully-managed VCL.NET Components. - Extensive sample applications for both Delphi and C++ Builder. - Comprehensive integrated product documentation./n software IP*Works! Component Suites:IP*Works! C++ Builder Edition - A comprehensive suite of components for Internet communications including more than 40 individual components covering every major Internet Protocol.IP*Works! SSL C++ Builder Edition - Secure communication channels through SSL security and digital certificates. Complete with digital certificate management components.IP*Works! S/MIME C++ Builder Edition - Components for email and file confidentiality, authentication, and non-repudiation through encryption and digital signatures. Implements the S/MIME standard for digital security.IP*Works! SSH - Secure Shell (SSH) enabled client communications components supporting strong encryption and advanced cryptography. Drop-in replacements for components in the core IP*Works! package.IP*Works! Zip - Suite of easy to use, fast, effective components for compression and decompression. Supports ZIP, JAR, GZIP, TAR, password protection and streaming operations.IP*Works! EDI / AS2 - Includes easy-to-use, flexible, and robust implementations of leading Internet EDI standards such as AS2 and EDI-INT. Complete with full Digital Certificate Management capabilities.IP*Works! Secure SNMP C++ Builder Edition - A comprehensive toolkit for building Secure SNMP-based agent and manager applications including advanced SNMPv3 security features, trap handling, and ASN-1 MIB compilation./n software Integrator Component Suites:QuickBooks Integrator C++ Builder Edition - A comprehensive suite of Internet-enabled component for QuickBooks (QBXML) integration. Includes easy-to-use components for accessing QuickBooks constructs and automating accounting tasks.E-Payment Integrator C++ Builder Edition - Internet E-Commerce simplified. E-Payment Integrator includes components for credit card and electronic check (ACH) processing via major Internet Payment gateways.PayPal Integrator C++ Builder Edition - Components for PayPal integration including merchant account management, credit card processing, and payment automation.Vital/TSYS Integrator C++ Builder Edition - Direct credit card authorization and transaction processing through TSYS (VitalPS), a major Internet Payment Processor.Paymentech Integrator C++ Builder Edition - Direct credit card authorization and transaction processing through Paymentech NetConnect, a major Internet Payment Processor.FDMS Integrator C++ Builder Edition - Direct credit card authorization and transaction processing through First Data Merchant Services (FDMS) a major Internet Payment Processor.USPS Integrator C++ Builder Edition - A suite of components for shipping, tracking, rate calculation, and address verification via the United States Postal Service.FedEx Integrator C++ Builder Edition - A suite of components for shipping, tracking, rate calculation, and address verification via the FedEx.E-Banking Integrator C++ Builder Edition - Build fully-integrated solutions for retrieving live financial data from banks, credit card, and investment companies.Amazon Integrator C++ Builder Edition - Provides easy-to-use components for accessing the Amazon Simple Storage Service (S3)./n software Enterprise Adapters:BizTalk Adapters - Fully-managed .NET Adapters that seamlessly integrate with the BizTalk Messaging Pipeline. The /n software Adapters extend the features of BizTalk with advanced Internet communications and secure messaging capabilities.SQL Server SSIS Tasks - Built from the same core codebase as the /n software Adapters for Microsoft BizTalk Server, the SSIS Tasks provide robust enterprise ready Internet connectivity, secure messaging, and file transfer./n software Red Carpet Subscriptions - The BEST Way to Buy!/n software Red Carpet Subscriptions - Everything in one package: communications components for every major Internet protocol, SSL and SSH security, S/MIME encryption, Digital Certificates, Credit Card Processing, ZIP compression, Instant Messaging, and even e-business (EDI) transactions. .NET, Java, COM, C++, C++ Builder, everything is included, together with per developer licensing, free quarterly update CDs and free upgrades during the subscription term.
/n software Amazon Integrator C++ Edition
5/9/2008 external link
The Amazon Integrator makes it easy to access Amazon Web Services from any supported platform or development technology. Easy-to-use components can be used to add, modify and delete buckets or individual objects stored on S3, add or remove messages from SQS, or integrate with ECS e-commerce services.Highlights:- Easy-to-use components for accessing Amazon S3, SQS, and ECS. - Small and lightweight components with no dependencies on external libraries. - Native development components for all supported platforms and component technologies. - Unlimited free Email technical support backed by an experienced & professional staff. - Includes everything needed to rapidly add S3 storage and retrieval capabilities to your applications, including: extensive documentation, sample applications, integrated help, and much more!
/n software IP*Works! C++ Builder Edition
5/9/2008 external link
IP*Works! is a comprehensive framework for Internet development and is the core building block for most /n software products. IP*Works! eliminates the complexity of Internet development providing easy-to-use, programmable components that facilitate tasks such as sending email, transferring files, managing networks, browsing the web, consuming web services, etc.A robust framework including more than 40 enterprise-class controls, IP*Works! enables rapid integration of any major Internet communications protocol or technology including: FTP, HTTP, SMTP, POP, IMAP, SNMP, LDAP, DNS, RSS, SMPP(SMS), XMPP (Jabber), SOAP, WebDav, and more! Highlights:- A comprehensive suite of tools covering all major Internet technologies. - Fast, robust, and reliable, the components consume a minimum of resources. - Small and lightweight components with no dependencies on external libraries. - Native development components for all supported platforms and component technologies. - A complete unified framework with a common easy-to-learn object model and simplified interfaces allowing you to be more productive. - Rigorously tested, rock solid components that have undergone hundreds of thousands of hours of testing both internally by our QA team and externally through customer installations. - Detailed reference documentation, hundreds of sample applications, fully-indexed help files, and an extensive online knowledge base.
/n software IP*Works! SSL C++ Builder Edition
5/9/2008 external link
IP*Works! SSL is a no-compromise, comprehensive suite of royalty-free SSL-enabled components. It brings unprecedented ease of use to Secure Internet Development with drop-in replacements for the components in the "classic" IP*Works! package, well known in the development community for their straightforward, intuitive interfaces, and powerful productivity features. IP*Works! SSL adds SSL security capabilities to the base IP*Works! package. Supports secure implementations of every major SSL-enabled Internet protocol including: FTPS, HTTPS, SMTPS, POPS, IMAPS, LDAPS, SMPPS, XMPPS, SOAPS, WebDavS, CertMgr, etc.Highlights:- Secure data communications using up to 128-bit strong SSL encryption and digital certificates. - Authenticate and encrypt/decrypt data sent and received using SSL2, SSL3, PCT or TLS. - Supports both client-side and server-side authentication. - Full control over the SSL authentication process allows you to accept or reject certificates based certificate parameters. - FIPS 140-2 compliant cryptography (windows only).- Secure server component is also included. Easily build SSL-enabled ftp servers, web servers, or custom server solutions. - Advanced digital certificate capabilities allow you to create, sign, and manage X.509 digital certificates. Become your own certificate authority. - Fast, robust, and reliable, the components consume a minimum of resources. - Native development components for all supported platforms and component technologies. - A complete unified framework with a common easy-to-learn object model and simplified interfaces allowing you to be more productive. - Rigorously tested, rock solid components that have undergone hundreds of thousands of hours of testing both internally by our QA team and externally through customer installations. - Detailed reference documentation, hundreds of sample applications, fully-indexed help files, and an extensive online knowledge base. - Licensed by the US Government for export under License Exception ENC Sections 740.17 (A) and (B)(3). Export Classification: 5D002.- Support for IPv6 addressing.- Support for 64-bit architectures.- Native support for NTLM authentication.- Support for SSL connection reuse.- Backed by multi-tier professional support, including free email support and enterprise-level paid support.
/n software IP*Works! S/MIME C++ Builder Edition
5/9/2008 external link
Components for secure Email communications via S/MIME encryption and digital certificates. Developers can encrypt files, emails, and even newsgroup postings as well as sign and verify message signatures using X.509 digital certificates.IP*Works! S/MIME includes a generic S/MIME component as well as S/MIME enabled versions of the IP*Works! POP3, IMAP4, NNTP, SMTP, FileMailer and HTMLMailer components. Digital certificate creation, signing, and management features have also been included. Highlights: - Support for the S/MIME v2 and S/MIME v3 standards for mail and document encryption. - Encrypt/decrypt, sign, and verify message signatures using S/MIME and digital certificates. - S/MIME enabled versions of all major Internet mail protocols. - Easily create HTML emails and include file attachments. - Advanced Digital Certificate capabilities allow you to create, sign, and manage X.509 Digital Certificates. Become your own certificate authority. - FIPS 140-2 compliant cryptography (windows only).- Fast, robust, and reliable, the components consume a minimum of resources. - Native development components for all supported platforms and component technologies. - A complete unified framework with a common easy-to-learn object model and simplified interfaces allowing you to be more productive. - Rigorously tested, rock solid components that have undergone hundreds of thousands of hours of testing both internally by our QA team and externally through customer installations. - Detailed reference documentation, hundreds of sample applications, fully-indexed help files, and an extensive online knowledge base. - Components are thread-safe on critical members. - Licensed by the US Government for export under License Exception ENC Sections 740.17 (A) and (B)(3). Export Classification: 5D002. - Support for IPv6 addressing. - Support for 64-bit architectures. - Streams and Collections implemented simplify the component interfaces across the package.- Backed by multi-tier professional support, including free email support and enterprise-level paid support.- and much more!
/n software IP*Works! Secure SNMP C++ Builder Edition
5/9/2008 external link
IP*Works! Secure SNMP is a robust suite of components for embedding real-time network management and agent functionality into applications and network devices. Including the latest in SNMPv3 security, IP*Works! Secure SNMP is the most comprehensive suite of tools for SNMP development using the latest SNMPv3 security features for authentication, authorization, and access control. Highlights:- Support for the latest SNMP standards including SNMPv1, SNMPv2c, and Secure SNMPv3. - Security features including authentication, authorization, and access control. - Read and compile ASN.1 MIB files into an easy to use object representation.- SNMP trap management and filtering.- Includes support for all major SNMP PDU's and variable types.- FIPS 140-2 compliant cryptography (windows only).- Optimized asynchronous socket architecture.- Fast, robust, and reliable, the components consume a minimum of resources. - Native development components for all supported platforms and component technologies. - A complete unified framework with a common easy-to-learn object model and simplified interfaces allowing you to be more productive. - Rigorously tested, rock solid components that have undergone hundreds of thousands of hours of testing both internally by our QA team and externally through customer installations. - Detailed reference documentation, hundreds of sample applications, fully-indexed help files, and an extensive online knowledge base. - Backed by multi-tier professional support, including free email support and enterprise-level paid support.
/n software 3-D Secure MPI C++ Builder Edition
5/9/2008 external link
The /n software 3-D Secure Merchant Plugin Interface (MPI) is a Visa Certified 3-D Secure, MasterCard SecureCode, and JCB J/Secure authorization component (MPI 1.0.2 compliant). The 3-D Secure component allows easy integration of Verified By Visa, SecureCode, & J/Secure capabilities into online shopping carts, websites, and merchant systems, while providing extraordinary flexibility to software developers through easy to use component interfaces. Highlights: - Certified Visa 3-D Secure™ ""Verified by Visa"" components for Credit Card Authorization and Fraud Protection. - Certified MasterCard SecureCode MPI Compliance. - Certified JCB J/Secure MPI Compliance. - Card Validator preprocessing reduces fees associated with invalid or declined transactions. - Secure data encryption using up to 128-bit SSL encryption and Digital Certificates. - Small, fast, and lightweight components with no dependencies on external libraries. - Native technologies integrate seamlessly with current payment processing architectures. - Sample applications and tutorials make 3-D Secure implementation trivial.
/n software Paymentech Integrator C++ Builder Edition
5/9/2008 external link
IBiz Paymentech Integrator includes components for direct credit card authorization and transaction processing through Paymentech NetConnect (www.paymentech.com), a major Internet Payment Processor. Certified support for Retail, E-Commerce, and Direct Marketing transactions. Powerful new Internet payment processing features including Level2 credit card transaction processing, EBT, Gift Card, and Debit support. In addition, the IBiz Paymentech Integrator includes new transaction management features such as Paymentech automatic duplicate transaction matching.No more Internet payment gateway fees, work directly with an Internet payment processor. IBiz Paymentech Integrator contains components for direct credit card authorization, processing, and settlement though Paymentech. Highlights:- Certified support for Retail, E-Commerce, and Direct Marketing transactions.- Bypass expensive gateway fees by working directly with an Internet payment processor.- Secure data encryption using up to 128-bit SSL encryption and Digital Certificates.- Address Verification Service (AVS) data support.- Card Verification Code (CVC) support.- Properties for 3-D Secure MPI integration (CAVV, ECI, and XID) for Verified by Visa, MasterCard SecureCode, and JCB J-Secure support.- Logging features including raw transaction details for troubleshooting and storage.- Credit Card validity checks decrease expenses that result from attempting to authorize invalid credit cards.- Native development components for all supported platforms and component technologies.- Level2 purchasing card support.- Support for EBT, debit card, and "cash back" transactions.- Paymentech Automatic duplicate transaction checking.- Unlimited free Email technical support backed by an experienced & professional staff.- Extensive documentation, sample applications, fully-integrated help, and much more!
/n software QuickBooks Integrator C++ Builder Edition
5/9/2008 external link
The /n software QuickBooks Integrator is a toolkit for QuickBooks™ developers that provides for quick and easy development of fully-integrated QuickBooks solutions. It eliminates much of the complexity of developing such solutions by providing easy to use components that facilitate tasks such as adding, updating or retrieving customer information, vendor information, employee information, transactions etc. Highlights:- Internet-Enabled QuickBooks. Access QuickBooks remotely using the included /n software QuickBooks Remote Connector. - Secure connection to the Remote Connector using SSL and Digital Certificates. - Easy-to-use components greatly reduce the code required to work with common QuickBooks constructs. - Handles all QBXML parsing, COM communications, error handling, etc. allowing you to focus on your specific business requirements. - Integrates with Online shopping carts providing seamless integration between sales and accounting. - Easily export QuickBooks information to a database of choice or directly to XML. - QuickBooks Online Edition Support. - Support for QuickBooks Merchant Services. - Full support for QBXML 4.0, 4.1, & 5.0 (U.S. version of QuickBooks Only). - API updates that simplify support for future versions of QBXML. - International QuickBooks support including Canada, UK, Australia, New Zealand. - QBObject component updated with high-performance batch processing support. Queue items and send them to QuickBooks in batches for 10x performance gains. - The Employee control supports a full list of Payroll features including access to sick time, vacation time, wages, pay period, etc. - Linked Transactions are available for all transaction objects. - Support for special fields with easy-to-use XPath driven access. - Native development components for all supported platforms and component technologies. - Unlimited free Email technical support backed by an experienced & professional staff. - Extensive documentation, sample applications, fully-integrated help, and much more!
/n software Vital/TSYS Integrator C++ Builder Edition
5/9/2008 external link
The Vital/TSYS Integrator (formerly IP*Works! CC Direct) includes Components for direct credit card authorization and transaction processing through Vital/TSYS (www.tsys.com), a major Internet Payment Processor. Certified support for Retail, E-Commerce, Direct Marketing and Restaurant transactions. Highlights:- Certified support for Retail, E-Commerce, Direct Marketing, Hotel, Auto Rental, Grocery, and Restaurant transactions.- Bypass expensive gateway fees by working directly with an Internet payment processor.- Secure data encryption using up to 128-bit SSL encryption and Digital Certificates.- Address Verification Service (AVS) data support.- Card Verification Code (CVC) support.- Support for commercial purchasing cards including Level II and Level III transactions.- Properties for 3-D Secure MPI integration (CAVV, ECI, and XID) for Verified by Visa, MasterCard SecureCode, and JCB J-Secure support.- Logging features including raw transaction details for troubleshooting and storage.- Credit Card validity checks decrease expenses that result from attempting to authorize invalid credit cards.- Support for government-issue EBT cards (Cash benefit and food stamp).- Debit card support.- Support for Fifth Third and Stored Value Systems gift cards.- Private label Prepaid gift card capabilities including activation, adding value, decreasing value, balance inquiry, card deactivation, and redemption.- Partial redemption and cash back supported.- Support for the Hotel and Auto Rental industry types.- Support for the latest Visa requirements enabling optimum interchange rate for Visa cards.- Native development components for all supported platforms and component technologies.- Unlimited free Email technical support backed by an experienced & professional staff.- Extensive documentation, sample applications, fully-integrated help, and much more!
/n software E-Payment Integrator C++ Builder Edition
5/9/2008 external link
IBiz E-Payment Integrator (formerly IP*Works! CC ICharge) includes components for Credit Card & Electronic Check (ACH) processing via major Internet payment gateways. Rock-solid E-Commerce components trusted by thousands of developers worldwide.Companies typically invest a large amount of time and money to create "home grown" systems to integrate E-Commerce capabilities. IBiz E-Payment Integrator alleviates the complexity of integrating electronic payment support by providing components with an intuitive interface for handing credit card & eCheck transactions. There is no need for developers to learn complicated socket programming or security implementation. By using the E-Payment Integrator, developers are able to target and develop for any currently supported payment gateway. Highlights:- Credit Card processing & eCheck support for every major Internet Payment Gateway. - Secure data communications using up to 128-bit SSL encryption and Digital Certificates. - Reliable high volume transaction processing. - Address Verification Service (AVS) support.- Intuitive, easy-to-use, extensible component design. - Credit Card validity checks decrease expenses that result from attempting to authorize invalid credit cards. - Small and lightweight components with no dependencies on external libraries. - Native development components for all supported platforms and component technologies. - Directly interfaces with the IBiz QuickBooks Integrator for easy accounting integration.- Unlimited free Email technical support backed by an experienced & professional staff. - Includes everything needed to rapidly add E-Commerce capabilities to your web or desktop applications, including: extensive documentation, sample applications, test accounts, integrated help, and much more!
/n software PayPal Integrator C++ Builder Edition
5/9/2008 external link
The IBiz PayPal Integrator includes easy-to-use components for accessing PayPal merchant services and building fully integrated e-commerce applications. Developers can use PayPal merchant services to integrate real-time account management and payment processing capabilities into any software solution. The components in IBiz PayPal Integrator encapsulate common PayPal merchant functionality including direct payments, transaction processing, customer verification, transaction searching, mass payments, refunds, and more!Highlights:- Direct Payment Support - Process credit cards via PayPal without sending customers to the PayPal site, and without requiring customers have a PayPal account. - Programmatic access to all major merchant services exposed by PayPal. - Easy-to-use API encapsulates all protocol logic and security for accessing PayPal merchant services. - Seamless transition from testing with the PayPal sandbox to live account management and processing. - 128-bit strong SSL encryption keeps sensitive transaction information confidential. - Small and lightweight components with no dependencies on external libraries. - Native development components for all supported platforms and component technologies. - Unlimited free Email technical support backed by an experienced & professional staff. - Includes everything needed to rapidly add PayPal account management capabilities to your web or desktop applications, including: extensive documentation, sample applications, integrated help, and much more!
/n software USPS Integrator C++ Builder Edition
5/9/2008 external link
IBiz USPS Integrator contains everything needed for real-time integration with the United States Postal Service (USPS) Internet services. The components provide easy access to the most popular domestic and international mail capabilities including shipping and customs label creation, tracking, address verification, and more. The components enable all aspects of the shipping process except for postage generation, a feature which is not exposed by the US postal service.Highlights:- Connect directly to USPS for real-time rate quotes and tracking information. - Generate domestic and international labels for customs and shipping. - Schedule carrier pickup. - Estimate USPS package delivery times. - No additional monthly or annual fees for accessing shipping services. - 128-bit strong SSL encryption keeps sensitive transaction information confidential. - Small and lightweight components with no dependencies on external libraries. - Native development components for all supported platforms and component technologies. - Unlimited free Email technical support backed by an experienced & professional staff.- InternationalLabels component supports the creation of International Priority, Express, and First Class mail labels. - InternationalRates component now supports rate calculation for new shipping supported by InternationalLabels.- Support for USPS new Dimensional Rate calculations.- New transaction testing enhancements. - Support for the latest USPS requirements for Shipping and Tracking Integration.- Includes everything needed to rapidly add USPS shipping capabilities to your web or desktop applications, including: extensive documentation, sample applications, integrated help, and much more!
/n software E-Banking Integrator C++ Builder Edition
5/9/2008 external link
The IBiz E-Banking Integrator consists of components that can access electronic bank, credit card, and investment transaction information and includes features like bank transfer and payment submission. These components enable application developers to build solutions which incorporate faster and more accurate transaction reconciliation, send instant transaction notifications, and fully 'close the loop' between payments and accounting. Highlights:- Easy-to-use API encapsulates all protocol logic and security for accessing transaction information. - 128-bit strong SSL encryption keeps sensitive transaction information confidential. - Retrieve OFX data directly from financial institutions or load OFX data from local files. - Small and lightweight components with no dependencies on external libraries. - Native development components for all supported platforms and component technologies. - Components including BankStatement, CreditCardStatement, InvStatement, OFXAggregate, and FIProfile.- Support for Bill Payment and Intra-Bank Transfers. - Granular control of OFX parsing and message building. - Batch message processing.- Unlimited free Email technical support backed by an experienced & professional staff. - Includes everything needed to rapidly add OFX capabilities to your web or desktop applications, including: extensive documentation, sample applications, integrated help, and much more!
/n software FDMS Integrator C++ Builder Edition
5/9/2008 external link
IBiz FDMS Integrator includes components for direct credit card authorization and transaction processing through FDMS (www.firstdata.com), a major Internet Payment Processor. Certified support for Retail, E-Commerce, Direct Marketing and Restaurant transactions. Today's broadband always-on Internet connections are vastly superior to dialup links, providing virtually instantaneous authorizations, error-free connections, and greater security. Highlights:- Certified support for Retail, E-Commerce, Direct Marketing and Restaurant transactions. - Bypass expensive gateway fees by working directly with an Internet payment processor. - Secure data encryption using up to 128-bit SSL encryption and Digital Certificates. - Address Verification Service (AVS) data support. - Card Verification Code (CVC) support. - Support for commercial purchasing cards including Level II and Level III transactions. - Support for Recurring and Installment payments. - Properties for 3-D Secure MPI integration (CAVV, ECI, and XID) for Verified by Visa, MasterCard SecureCode, and JCB J-Secure support. - Logging features including raw transaction details for troubleshooting and storage. - Credit Card validity checks decrease expenses that result from attempting to authorize invalid credit cards. - Native development components for all supported platforms and component technologies. - Unlimited free Email technical support backed by an experienced & professional staff. - Extensive documentation, sample applications, fully-integrated help, and much more!
/n software FedEx Integrator C++ Builder Edition
5/9/2008 external link
IBiz FedEx Integrator contains everything needed for real-time integration with Federal Express (FedEx) Internet services. The components provide easy access to the most popular domestic and international mail capabilities including shipping, tracking, address verification, rate calculation, and more.Highlights:- Integrate FedEx Shipping or Tracking services into your online applications and/or supply chain systems. - Connect directly to FedEx for real-time rate quotes and tracking information. - Calculate shipping rates for available FedEx services.- Find all FedEx locations in proximity to a given address or phone number.- Generate domestic and international labels. - No additional monthly or annual fees for accessing shipping services. - 128-bit strong SSL encryption keeps sensitive transaction information confidential. - Small and lightweight components with no dependencies on external libraries. - Native development components for all supported platforms and component technologies. - Unlimited free Email technical support backed by an experienced & professional staff. - Includes everything needed to rapidly add FedEx shipping capabilities to your web or desktop applications, including: extensive documentation, sample applications, integrated help, and much more!
TwineCompile 2.0.13 Trial Version
5/9/2008 external link
TwineCompile is a C++ compiler speed-up tool, that uses techniques such as file caching, file location storage and multi-threading to decrease compiles times by up to 14x!It integrates completely into the C++Builder IDE, and has various options so you can get maximum compile speed.TwineCompile 2.0.13 integrates seamlessly into C++Builder 2009, with complete MSBuild support.Note:- Command-line compiles are not supported in this trial version. Command-line build are supported in the full version.- This trial only allows you to perform 30 compiles per IDE session.
LMD ElPack Trial (C++ Builder)
5/9/2008 external link
LMD ElPack represents an extensive set of native visual components for Delphi and C++Builder to create powerful, customizable user interfaces incuding HTML, unicode and themes support. In addition LMD ElPack contains components and functions to perform different standard tasks like access to Windows registry, string operations etc. Most certainly the key control is the extensive TElXTree component (and its datasensitive version) which was completely reworked for ElPack 5.0 and improved in Release 6.0 to serve as replacement for ListView, TreeView, ListBox, CheckList, RadioGroup and any custom grid! Completely new in ElPack is the shared runtime support with all other LMD packages (LMD-Tools and IDE-Tools). All major LMD packages share same advanced features like unicode-enabled native XML/RegEx support, shared imagelist container, compression libraries etc.From version 3.0 on LMD ElPack provides complete Unicode support including Unicode hints for components. Unicode support is not limited to Windows NT platforms - your Delphi applications can truely support Unicode even on Windows 9x/ME!LMD ELPack can also provide the the fancy Windows XP themes look to your applications. This built-in support for Windows XP themes is again not limited to Windows XP operating systems - it even works on other operating systems like Windows 9x/ME!* Includes up to 173 controls for everyday work (Professional version, Standard: 117). These components extend functionality of standard VCL controls and also introduce lots of new features and customizable look-and-feel. * The shared LMD 2007 Runtime adds additional 25+ extra controls like container classes (including LMD Imagelists), Vista support controls, the TLMDApplication object and many more. * Unicode and themes support even on Win9X systems! * Powerful Tree- and Grid Controls! * Integrated HTML support for many controls! * Full sourcecode of library in both Standard and Professional packages included * Contains as bonus in Standard and Professional version license for LMD ElPack 4.0 CLX (up to 30 native CLX components) * Many demo projects with sourcecode including the new Megademos! * Free updates via Internet * Free technical support via newsgroup (news.lmdtools.com), e-mail, fax or mailDemos included, helpfiles can be downloaded free of charge from our web site.
LMD IDE-Tools Trial (C++ Builder)
5/9/2008 external link
LMD IDE-Tools is collection of native VCL components which help you to set up a complete IDE environment in a quick and easy way. Extend your applications by providing your customers enhanced possibilities - either by custom scripts or even complete dialogs or additional forms.This package includes:LMD DesignPackEnhance your projects with advanced designing features - e.g. by adding an object inspector control, extended form designer (along with custom editors) or diagrams.LMD ScriptPackThis package enables Delphi/CBuilder applications to support active scripting languages installed in Windows Scripting Host (such as VB Script, Java Script, etc).LMD SyntaxEdit Provides a powerful and fast editor with syntax highlighting, customizable syntax schemes, Unciode support, code folding and many more features.Besides that LMD IDE-Tools adds an additional integration package which combines the abilities and features of the standalone packages and adds high level features like IDE services (component palette, IDE manager, synchronizing services), project manager tools (handling of different documents, project view), advanced designing features (alignment palette, support for component editors, object/component view) and so on. Besides the various examples for the standalone packs an example IDE project (supporting the script languages included in LMD ScriptPack) is shipped with the complete package which demonstrates how to set up a complete IDE project.Demos included, helpfiles can be downloaded free of charge from our web site.
LMD-Tools Trial (C++ Builder)
5/9/2008 external link
Discover the most extensive and powerful productivity set available! Whatever you want to develop, LMD-Tools is the real thing. This toolbox provides easy-to-use components for all the power you want to implement in your projects. Furthermore LMD-Tools controls provide unique features you won't find in any other component suite.LMD-Tools covers more than 426 components for any task you can imagine. Following component groups are only examples for the broad range of available components: LMD Tools includes controls for superior interface design, system programming, file controls, database applications, internet-/web-components, multimedia, text/data input (RichEdit), display of formatted text and many more.Most of the visual components support transparency, advanced font effects (3D, outline, ..), different backgrounds or -effects. In latest version an integrated parser supports display of formatted text (e.g. HTML) for many controls.All together, they form a solid base for your development.Since the LMD 2007 release LMD-Tools, LMD ElPack and LMD IDE-Tools share the same core runtime. This avoids redundant code and provides common advanced features for all major LMD products. This includes a shared Unicode library, improved HTMLRenderer (including support for display of TGraphic descendants) and shared imagelist support (all main LMD imagelist container are part of the LMD Shared Runtime packages), advanced designtime support (completely new editors for all LMD container controls, new component editor for TLMDGraphicList) and much more. Other examples are:XML Support LibraryA new, extremly fast and fully unicode-enabled XML support library was added. It adds only a small footprint to your Exe-files. XML data can be loaded from files, custom streams, resources or strings. Like other new support libraries this one is written completely in Pascal - no need for additional DLL's or Object files.New RegEx EngineBesides that Regular Expression evaluation support was updated! The RegEx support from previous version was replaced by a new unicode-enabled native RegEx library with PRCE compatible syntax.Support of new compression formatsSupport for additional compression formats was added. Besides LZRW and other simple compression formats, which were supported already in previous releases, two new major compression formats are available: On the one hand ZLlib support, which is similar to the known implementation with C++ object files - except that it is a true native Pascal solution which was also ported to VCL.NET. Using ZLIB compression any kind of data (including TStream objects) is possible. On the other hand support of compressing/decompressing CAB files was added.PNG support and new TLMDBitmap objectThe LMD 2007 Runtime includes native support for PNG files (as TGraphic implementation and with TLMDPNGImageList control). PNG files can be used in your apps like any other TGraphic formats like TBitmap or TJpeg.A new TLMDBitmap class was introduced, which is derived from TBitmap and mainly utilizes the Windows built-in OleLoadPicture function. GIF, JPEG, Icon or Bitmap Files can be loaded without additional special VCL libs (features are not available In VCL.NET, because support of different graphic formats is available through ImageFormat in TBitmap property already).Validator ControlsThe LMD Validator framework introduces a set of components which allow implementation of professional-level client-side validation in an elegant and simple way without writing much code (often without any code at all). The two main tasks taken over by the validator and error provider controls are: To check for validity a value entered by a user into some input control and to provide feedback about validation results (e.g. to indicate an error) in some way.Demos included, helpfiles can be downloaded free of charge from our web site.
SpeechKit 6
5/9/2008 external link
Chant SpeechKit includes essential components for managing speech recognition and synthesis. Whether you develop desktop, server, mobile, telephony, Internet software, or web pages, SpeechKit components can transform text to speech for audio playback and speech to text for your software to process. This liberates your software from keypads, keyboards, and mice as primary input devices by letting end users talk with it. Manage Speech Recognition and Synthesis with Application Ready Components- Voice-enable any type of Win32 application with SpeechKit components in ActiveX, C-DLL, COM, Java, .NET Framework (v1.1 and v2), VCL, Web, and Xtra formats. - Voice-enable any type of WinCE application with SpeechKit components in C-DLL and .NET Framework (CF2) formats. - Develop and deploy your applications independent of specific recognizers and synthesizers: - SpeechKit Win32 Developer Edition supports Dragon NaturallySpeaking, IBM ViaVoice, Microsoft SAPI 3, SAPI 4, SAPI 5 compliant recognizers, Nuance VoCon 3200 recognizer, Cepstral synthesizers, Microsoft SAPI 3, SAPI 4, SAPI 5 compliant synthesizers, or NuanceNuance RealSpeak Solo synthesizers; and - SpeechKit WinCE Developer Edition supports Microsoft SAPI 5 compliant recognizer (e.g., Microsoft Voice Command) and Nuance VoCon 3200 recognizer, Cepstral synthesizers, Microsoft SAPI 5 compliant synthesizer, and Nuance RealSpeak Solo synthesizers. - Select and adjust recognizer, synthesizer, and audio options and property settings dynamically. - Leverage a common persistence framework across programming languages and component formats. - Support Unicode and ANSI systems with single component library.Develop Applications that Speak- Synthesize speech from anywhere within your application. - Automatically synthesize message box text. - Easily enumerate and select a voice. - Easily adjust the spoken output speed, volume, and pitch. - Take advantage of built-in audio management and synthesize to the audio format needed by your application. - Synthesize text from strings, buffers, streams, and files. - Playback audio or write to buffers, streams, and files. - Access detailed synthesis result attributes and properties. - Persist property settings across executions. - Process requests synchronously or asynchronously with built-in queue manager.Develop Applications that Listen- Capture spoken input as if it was typed using a keyboard. - Select menus, list items, click buttons, and click hypertext links by speaking instead of using a mouse. - Simulate keyboard input and mouse clicks. - Recognize spoken languages supported by recognizers. - Leverage common dictation text formatting across speech APIs. - Access detailed recognition result attributes and properties. - Correct recognition results. - Playback recorded audio associated with recognition results. - Manage context-based and context-free recognition by dynamically adding, removing, enabling, and disabling, command, grammar, and dictation vocabularies. - Take advantage of built-in audio management and recognize from the audio format needed by your application. - Recognize from buffers, files, microphone (live), and stream audio sources. - Write audio to buffers, streams, and files. - Persist property settings across executions. - Process requests synchronously or asynchronously with built-in queue manager. - Use built-in What Can I Say dialog to display what commands your application responds to and Where Can I Go dialog to display hypertext links that can be invoked by speaking the link text.


