Tms system controls pack
Author: q | 2025-04-25
TMS System Controls Pack Download This component is part of the TMS VLC UI Pack TMS System Controls Pack Components The following components are part of the TMS System
TMS System Controls Pack - Bitbucket
And customizable pickers and selectors Progress & Ratings Progress bars & rating controls Pricing Single Developer License Small Team License Site License TMS FNC UI Pack € 395 € 195 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases MOST POPULAR TMS FNC Component Studio € 895 € 375 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases check TMS FNC UI Pack check All TMS FNC products BEST VALUE TMS ALL-ACCESS € 1,795 € 595 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases check TMS FNC UI Pack check All TMS FNC products check All TMS products All prices excl. VAT. Renewal price is subject to change and only valid up to 30 days after license has expired. After renewal period a discount price is offered to renew the license. Free Trial Start a free TMS FNC UI Pack evaluation today! Enter your email address to receive a trial activation key. Please enter a valid email address Download started. Your trial key will be provided by email! By entering your email address you agree to receive email messages from TMS Software. RAD Studio Visual Studio Code Resources Guides In-depth information about TMS FNC UI Pack. What our customers say Regarding TMSFNCRibbon: It's a great component and I appreciate especially its HighDPI awareness and option for using SVG images - it's a huge saving on
Components Component Packs TMS System Controls Pack
TMS WEB Core supports types of UI controlsUI controls encapsulating HTML elementsThese are UI controls that are built-up from one or more HTML elements. All UI controls included in TMS WEB Core are of this type. In its most basic form, this is for example a TWebButton that maps on a HTML element. In a more complex form, this is a TWebLoginPanel that consists of several elements, a element and elements.Custom drawn controls using the HTML5 CANVAS elementThese are UI controls that are based on the HTML5 CANVAS element and that are similar to VCL custom controls, custom drawn using the override of the Paint method. For UI interaction, the base class TCustomControl provides the exact same protected methods KeyPress/KeyDown/KeyUp/MouseDown/MouseMove/MouseUp to override. The control exposes a Canvas: TCanvas that has the same interface as the VCL TCanvas, i.e. a Pen, Brush, methods MoveTo(), LineTo(), Rectangle(), etc... In addition to the VCL TCanvas object, it features methods to get the content of the control as image or to download it as image:TCanvas.GetBase64Image: string;TCanvas.DownloadImage( AFileName: string; AType: TImageType = itPNG);function GetAsImage(AType: TImageType): string;With TimageType = (itBase64, itBMP, itPNG, itJPEG, itGIF);An extension to the VCL TCanvas interface is the ability to draw linear or radial gradients. Therefore, the TBrush has the interface:TBrushGradient = (bgNone, bgLinearVert, bgLinearHorz, bgRadial);TBrush = class(TPersisent)public procedure AddGradientColor(AColor: TColor; AStop: single); procedure GetGradientColor(AIndex: integer; var AColor: TColor;var AStop: single); function GradientCount: integer; procedure ClearGradient;published property Gradient: TBrushGradient; property Color: TColor; property Style: TBrushStyle;end;To add gradient colors, use the AddGradientColor() method. The gradient is always defined within the bounding rectangle of the shape that will be drawn with the brush. The brush Color property is the color used from the start (top/left) of the rectangle and additional colors are added at position AStop that is a value from 0 to 1, whereas 0 is the position top/left in the rectangle and 1 is the position bottom/right in the rectangle.Sample code: draws an ellips with a horizontal gradient fill going from red over yellow in thecenter to white on the right side: Canvas.Brush.Color := clRed; Canvas.Brush.Gradient := bgLinearHorz; Canvas.Brush.AddGradientColor(clWebOrange,0.5); Canvas.Brush.AddGradientColor(clWhite,1); Canvas.Ellipse(40,40,160,80);TMS FNC controlsThe TMS FNC component framework is an abstraction layer that facilitates writing UI controls with a single code base that can be used for VCL, FMX, LCL and also TMS WEB Core applications. Several TMS FNC products, i.e. TMS FNC Chart, TMS FNC UI Pack and TMS FNC Dashboard Controls Pack support to use of the components also in web applications.For documentation about FNC controls, this is included in the different TMS FNC products and all documentation that applies to use of the controls in VCL, FMX or LCL applications also applies to use of the controls in TMS WEB Core applications.jQuery UI controlsSeveral controls are provided that are actually Pascal wrapper classes for underlying jQuery UI controls. This includes a set of Pascal wrapper classes for the jQWidget controls (www.jqwidgets.com) Standard ComponentsTMS WEB Core comes with a lot of components out of the box enabling you to go aheadTMS System Controls Pack System level tasks made easy - TMS
2 TMS SOFTWARE TMS GUIMotions DEVELOPERS GUIDE Index TMS GUIMotions availability ................................................................................................................... 3 TMS GUIMotions description .................................................................................................................. 3 TMS GUIMotions important note............................................................................................................ 3 TMS GUIMotions visual organisation .................................................................................................. 4 Overview major elements ............................................................................................................... 4 Animation modes ............................................................................................................................ 5 TMS GUIMotions programmatic use ................................................................................................... 7 As explained in the previous chapter, TMS GUIMotions can display image files, custom drawn information or controls. In this chapter, it will be shown how either images, custom drawn information or controls can be added to the component. Initializing images ............................... 7 Initializing controls .......................................................................................................................... 8 TMS GUIMotions important methods and properties .......................................................................... 11 Events ................................................................................................................................................ 11 Properties .......................................................................................................................................... 11 TMS GUIMotions keyboard and mouse handling. ................................................................................ 13 Mouse ................................................................................................................................................ 13 Keyboard ........................................................................................................................................... 13 Keyboard lookup support .................................................................................................................. 13TMS GUIMotions availability 3 TMS SOFTWARE TMS GUIMotions DEVELOPERS GUIDE TMS GUIMotions is available as VCL component for Win32/Win64 application development. VCL versions: TMS GUIMotions is available for CodeGear� Delphi 5, 6, 7,2005,2006,2007,2009,2010,XE,XE2. TMS GUIMotions description TMS GUIMotions is a component designed to display and animate images, custom drawn information or controls in various spectacular ways. TMS GUIMotions important note TMS GUIMotions uses the Microsoft DirectX 9 runtime for its fluent 3D image animations. The Microsoft DirectX 9 runtime is preinstalled on Windows XP and Windows Vista systems. For older operating systems, the Microsoft DirectX runtime can be separately downloaded from Microsoft. TMS GUIMotions is currently compiled for DirectX 9.0C with the DLL d3d9x_33.dll. It is recommended that either the presence of this DLL is checked or is installed in the \Windows\System32 directory before compilation / installation of the component as well as for deployment with applications. When the installer of the TMS GUIMotions component is used, this file is copied automatically to \Windows\System32. TMS GUIMotions always tries to render on the video hardware of your pc. When a graphical card with 3D hardware acceleration is found, the component will check whether it can be used with multi-sampling (alpha blending and anti-aliasing). If it fails the component will try to create a 3D device with software rendering. This depends on the 3D graphical card you are using. Note that on some systems, DirectX 9 might be installed by Direct3D not enabled. This can be verified by running the tool dxdiag. For troubleshooting: - Run DxDiag and make sure Direct3D is enabled and working (test button). - Install the latest drivers of your 3D graphical card. - Verify if. TMS System Controls Pack Download This component is part of the TMS VLC UI Pack TMS System Controls Pack Components The following components are part of the TMS SystemTMS System Controls Pack 1.6.6.0 - Torry
IW TMS IntraWeb iPhone controls pack Set of IntraWeb components to create web applications for mobile devices like iPhone, iPad, Android that offer a look & feel very close to native applications v2.6.3.0 Features Help Downloads Buy Feature overviewThe TMS IntraWeb iPhone Controls Pack has been designed for and tested with iPhone, iPod Touch, iPad, Android. Please note the TMS IntraWeb iPhone Controls Pack is not intended to be used in common desktop browsers like Internet Explorer, FireFox, Chrome, Safari, ...20 components for IntraWeb to create iPhone/iPad Web applications including :TTIWIPhoneEdit Edit in iPhone style with rounded corners Full webkit based rendering, no images used Configurable action button Configurable keyboard type Asynchronous events & client-side events TTIWIPhoneSpinner Web implementation of the native iOS date/time selector wheel controlAsynchronous updates & eventsFull webkit / HTML5 based rendering, no images usedConfigurable collection of SlotsBuilt-in date and time selectorSmooth iPhone style scrolling TTIWIPhonePopup iPhone / iPad style popup controlAsynchronous updates & eventsFull webkit based rendering, no images usedBuilt-in configurable collection of iPhone / iPad style buttonsCan host custom content by adding a region that can contain any controlExtensive control over positioning TTIWIPhonePhoneLabel, TTIWIPhoneEmailLabel, TTIWIPhoneSMSLabel, TTIWIPhoneLocationLabel TTIWIPhonePhoneLabel Label starting iPhone dialer app with predefined phone number TTIWIPhoneEmailLabel Label starting iPhone email app with predefined email and optional predefined subject, body text, CC email and BCC email TTIWIPhoneSMSLabel Label starting iPhone SMS app with predefined phone number TTIWIPhoneLocationLabel Label starting iPhone maps app with predefined location and optional destination TTIWIPhoneHeader & TTIWIPhoneFooter TTIWIPhoneHeader iPhone application headerComponents Component Packs TMS System Controls -
October Brings BrightPearl, Multi-stop, and Retail Enhancements This month's feature releases and software updates continue our commitment to giving you the best in smooth custom integrations and superior user experiences. September Announcements: Convoy and Transfix Integrations FreightPOP consistently rolls out new TMS capabilities and API integrations to ensure shippers have... August TMS Updates: Quickbooks, Brokers, BOLs and More Stay on top of our latest TMS integrations, capabilities, and streamlined user controls here! This... July TMS Feature Releases & Updates Our July feature releases and updates are here! We introduce FAK management, new carrier texting... New TMS Features Announced for June 2020 Exciting new TMS features rolled for June include new Pick & Pack Configurations, Carrier Portals,... Enhanced Project Management & Service Tools Added To FreightPOP's TMS We now give project managers that facilitate large-scale projects better oversight and control with... Q4 2019 2019 saw our being named a Top 10 Transport Management Solution Provider for the year and saw us... August 2019 FreightPOP has announced Q3 software updates, further streamlining shipping processes for... June 2019 Six new features announced this year so far!Customer Collaboration Portals: Allows customer...TMS System Controls Pack 10.2.4.0 - Download, Screenshots
VCL TPlanner & TDBPlanner add-on component to read and write events from vCalendar files Feature overview Can read and write events from vCalendar files to easily export and import events for the TMS TPlanner and TDBPlanner componentSee also : TPlanner add-on utilities for TPlannervCalendarExchange that uses the TvCalendar component to read and write vCalendar files to import or export appointments. Pricing Single Developer License Small Team License Site License TMS VCL UI Pack € 395 € 175 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases MOST POPULAR TMS VCL Subscription € 895 € 450 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases check TMS VCL UI Pack check All TMS VCL products BEST VALUE TMS ALL-ACCESS € 1,795 € 595 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases check TMS VCL UI Pack check All TMS VCL products check All TMS products All prices excl. VAT. Renewal price is subject to change and only valid up to 30 days after license has expired. After renewal period a discount price is offered to renew the license. Free Trial Start a free TMS VCL UI Pack evaluation today! RAD Studio Resources What our customers say Thank you Mr. Fierens for your time and assistance. Just want to say your VCL Pack is fabulous. Thank you for this superb tool collection!- Henning Swiboda Thanks for the effort to create the VCL grid goodies !These chunks of outcome-oriented teaching-material are very useful. It's unbelievable how powerful the grid is when one knows how to unveil it's countless options... - Feichtenschlager Thomas I don''t know how I could have created and managed so many projects without the AdvStringGrid!Download TMS System Controls Pack 1.6.3.0 free
HelpLooking for TMS FMX UI Pack? arrow_downwardDiscover the new and improved TMS FNC UI Pack below! arrow_downward Powerful UI controls in 1 component set Universal powerful, feature-rich Delphi & C++ Builder FNC UI controls in 1 component set for VCL, FMX and WEB core apps. Includes data grid, planner, treeview, ribbon, memo and rich editor Feature-rich & high performance grid Take your application to the next level with data visualization features such as filtering, sorting and multi-column, multi-level grouping. Use the easy data binding functionality supporting master-detail relationships as well as the ability to export to PDF, HTML and XLS. Powerful workflow visualization kanban board Empower your workflow with fully customizable multi-column visualization of your daily tasks. Flexible multi-column tree view High performance virtual and collection based node structure with various customization possibilities. Ribbon style toolbar Design modern user interfaces with the multi-page ribbon. Easily change the look and feel with one of the pre-defined themes. Highly flexible planner / scheduler Organize your team planning with one of the various display modes. Cross-platform syntax highlighting memo powered by Monaco (Visual Studio Code editor) Full design-time & run-time integration with powerful features including breakpoints, code completion, find & replace and more. Other included components Object Inspector Runtime object inspector with various editors Rich Editor Compact light-weight WYSIWYG editor for formatted text PageControl & Panels Feature-rich TabSet, PageControl and Panels Edits A collection of supercharged edit controls Lists A collection of supercharged list controls Pickers & Selectors A collection of highly styleable. TMS System Controls Pack Download This component is part of the TMS VLC UI Pack TMS System Controls Pack Components The following components are part of the TMS System
TMS System Controls Pack Crack Keygen For (LifeTime)
Pricing Single Developer License Small Team License Site License TMS FNC UI Pack € 395 € 195 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases MOST POPULAR TMS FNC Component Studio € 895 € 375 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases check TMS FNC UI Pack check All TMS FNC products BEST VALUE TMS ALL-ACCESS € 1,795 € 595 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases check TMS FNC UI Pack check All TMS FNC products check All TMS products All prices excl. VAT. Renewal price is subject to change and only valid up to 30 days after license has expired. After renewal period a discount price is offered to renew the license. Free Trial Start a free TMS FNC UI Pack evaluation today! Enter your email address to receive a trial activation key. Please enter a valid email address Download started. Your trial key will be provided by email! By entering your email address you agree to receive email messages from TMS Software. RAD Studio Visual Studio Code Resources Guides In-depth information about TMS FNC UI Pack. What our customers say Regarding TMSFNCRibbon: It's a great component and I appreciate especially its HighDPI awareness and option for using SVG images - it's a huge saving on my time, thanks for a great job. As a developer for 30+ years, and a Delphi developer since 1996, I've a solid foundation on desktop development. But I was skeptical of indulging in web development. Though the market was demanding a switch, it seemed too difficult to make the transition. TMS Software was my "magic bullet" to get me started with zero intimidation.Components Component Packs TMS System Controls Pack. Torry's Delphi
In TAdvResponsiveListv10.0.3.0New : ResetUndoRedo method added in TAdvRichEditor to programmatically reset the Undo/Redo stackNew : Changed the TImageList interface to TCustomImageList in T(DB)Plannerv10.0.2.0New : StyleElements exposed in TAdvMemoNew : OnAfterDropDown event added in TAdvDropDownv10.0.1.3v10.0.1.2v10.0.1.1v10.0.1.0New : VCL Styles support added in TSectionListBox, TAdvWordCloud, TAdvCodeList, TAdvListEditorNew : TInspectorBar per monitor support for high DPINew : THTMLTreeView per monitor support for high DPINew : TAdvRichEditor.OnPasteBitmap event addedNew : TAdvPopUpMenu per monitor support for high DPINew : Added Drag and Drop properties to TAdvSmoothButtonNew : Added DblClick behaviour for the TAdvOfficeRadioButtonsv10.0.0.0New : Introducing TAdvPDFLib and TAdvGraphicsPDFIO, components for PDF export functionalityNew : Introducing TAdvKanbanBoard and TAdvTableViewNew : First Release Pricing Single Developer License Small Team License Site License TMS VCL UI Pack € 395 € 175 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases MOST POPULAR TMS VCL Subscription € 895 € 450 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases check TMS VCL UI Pack check All TMS VCL products BEST VALUE TMS ALL-ACCESS € 1,795 € 595 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases check TMS VCL UI Pack check All TMS VCL products check All TMS products All prices excl. VAT. Renewal price is subject to change and only valid up to 30 days after license has expired. After renewal period a discount price is offered to renew the license. Free Trial Start a free TMS VCL UI Pack evaluation today! RAD Studio Resources What our customers say Thank you Mr. Fierens for your time and assistance. Just want to say your VCL Pack is fabulous. Thank you for this superb tool collection!- Henning Swiboda Thanks for the effort to create the VCL grid goodies !These chunks of outcome-oriented teaching-material are very useful. It's unbelievable how powerful the grid is when one knows how to unveil it's countless options... - Feichtenschlager Thomas I don''t know how I could have created and managed so many projects without the AdvStringGrid! And although there is already so much functionality in it I''m using my own derived version with automatic column widths, enhanced export to Excel (including text colors, backround colors, comments, merged cells and more), the possibility to fill in static data at design time and more. This often allows me to build a new tool in hours instead of days! Support is also great! Thanks.- Raß Jacqueline Keep up the great work...Every new release of TMS Component Pack is like Xmas. Top quality components! :-)- Aidan Thomson via email ❮ ❯ Recently viewed products. TMS System Controls Pack Download This component is part of the TMS VLC UI Pack TMS System Controls Pack Components The following components are part of the TMS System TMS System Controls Pack Download This component is part of the TMS VLC UI Pack TMS System Controls Pack Components The following components are part of the TMS SystemTMS HTML Controls Pack - TMS Software
TMS WEB Core - RAD Visual Web Application Development RAD component based web application development using modern SPA model. 100% HTML5/CSS3/JavaScript based applications.Special launch offerTake a head start and immediately start using the full capabilities of TMS WEB Core for Visual Studio Code with our special launch offer:Single developer license launch price : 295EURSmall team license launch price : 525EURSite license launch price :1195EURor visit the product pageWith this special launch offer you get:Full framework source codeFull Object Pascal based source code debugging from the Visual Studio Code IDEFull access to the TMS Support Center for TMS WEB Core for Visual Studio CodeFull year of free updates & free full support center access from the official release dateFeaturesRADical WebModern SPA web application modelPure HTML5/CSS3/JavaScript based applicationsStandard component framework for common UI controls and access to browser featuresDebugging in Object Pascal code via the Visual Studio Code IDEBacked by a solid, proven & actively developed Object Pascal to JavaScript compilerReuse skills and componentsComponent based RAD development integrated in the Visual Studio Code IDEOpen to consume other existing JavaScript frameworks & librariesOpen to use HTML/CSS for designOpen to use other jQuery controls or even other JavaScript frameworksEasy interfacing to REST cloud services including to TMS XData for databaseEasy DeploymentApplication consists of HTML & JavaScript files only that can be easily deployed on any light or heavyweight webserversUse any existing load-balancing software and/or techniques for highest performanceSmall and convenient debug webserver is included for fast RAD developmentDevelop everywhereUse TMS WEB Core for VisualComments
And customizable pickers and selectors Progress & Ratings Progress bars & rating controls Pricing Single Developer License Small Team License Site License TMS FNC UI Pack € 395 € 195 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases MOST POPULAR TMS FNC Component Studio € 895 € 375 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases check TMS FNC UI Pack check All TMS FNC products BEST VALUE TMS ALL-ACCESS € 1,795 € 595 yearly renewal license for 1 developer Includes check Full source code check Free updates and new releases check TMS FNC UI Pack check All TMS FNC products check All TMS products All prices excl. VAT. Renewal price is subject to change and only valid up to 30 days after license has expired. After renewal period a discount price is offered to renew the license. Free Trial Start a free TMS FNC UI Pack evaluation today! Enter your email address to receive a trial activation key. Please enter a valid email address Download started. Your trial key will be provided by email! By entering your email address you agree to receive email messages from TMS Software. RAD Studio Visual Studio Code Resources Guides In-depth information about TMS FNC UI Pack. What our customers say Regarding TMSFNCRibbon: It's a great component and I appreciate especially its HighDPI awareness and option for using SVG images - it's a huge saving on
2025-04-07TMS WEB Core supports types of UI controlsUI controls encapsulating HTML elementsThese are UI controls that are built-up from one or more HTML elements. All UI controls included in TMS WEB Core are of this type. In its most basic form, this is for example a TWebButton that maps on a HTML element. In a more complex form, this is a TWebLoginPanel that consists of several elements, a element and elements.Custom drawn controls using the HTML5 CANVAS elementThese are UI controls that are based on the HTML5 CANVAS element and that are similar to VCL custom controls, custom drawn using the override of the Paint method. For UI interaction, the base class TCustomControl provides the exact same protected methods KeyPress/KeyDown/KeyUp/MouseDown/MouseMove/MouseUp to override. The control exposes a Canvas: TCanvas that has the same interface as the VCL TCanvas, i.e. a Pen, Brush, methods MoveTo(), LineTo(), Rectangle(), etc... In addition to the VCL TCanvas object, it features methods to get the content of the control as image or to download it as image:TCanvas.GetBase64Image: string;TCanvas.DownloadImage( AFileName: string; AType: TImageType = itPNG);function GetAsImage(AType: TImageType): string;With TimageType = (itBase64, itBMP, itPNG, itJPEG, itGIF);An extension to the VCL TCanvas interface is the ability to draw linear or radial gradients. Therefore, the TBrush has the interface:TBrushGradient = (bgNone, bgLinearVert, bgLinearHorz, bgRadial);TBrush = class(TPersisent)public procedure AddGradientColor(AColor: TColor; AStop: single); procedure GetGradientColor(AIndex: integer; var AColor: TColor;var AStop: single); function GradientCount: integer; procedure ClearGradient;published property Gradient: TBrushGradient; property Color: TColor; property Style: TBrushStyle;end;To add gradient colors, use the AddGradientColor() method. The gradient is always defined within the bounding rectangle of the shape that will be drawn with the brush. The brush Color property is the color used from the start (top/left) of the rectangle and additional colors are added at position AStop that is a value from 0 to 1, whereas 0 is the position top/left in the rectangle and 1 is the position bottom/right in the rectangle.Sample code: draws an ellips with a horizontal gradient fill going from red over yellow in thecenter to white on the right side: Canvas.Brush.Color := clRed; Canvas.Brush.Gradient := bgLinearHorz; Canvas.Brush.AddGradientColor(clWebOrange,0.5); Canvas.Brush.AddGradientColor(clWhite,1); Canvas.Ellipse(40,40,160,80);TMS FNC controlsThe TMS FNC component framework is an abstraction layer that facilitates writing UI controls with a single code base that can be used for VCL, FMX, LCL and also TMS WEB Core applications. Several TMS FNC products, i.e. TMS FNC Chart, TMS FNC UI Pack and TMS FNC Dashboard Controls Pack support to use of the components also in web applications.For documentation about FNC controls, this is included in the different TMS FNC products and all documentation that applies to use of the controls in VCL, FMX or LCL applications also applies to use of the controls in TMS WEB Core applications.jQuery UI controlsSeveral controls are provided that are actually Pascal wrapper classes for underlying jQuery UI controls. This includes a set of Pascal wrapper classes for the jQWidget controls (www.jqwidgets.com) Standard ComponentsTMS WEB Core comes with a lot of components out of the box enabling you to go ahead
2025-04-10IW TMS IntraWeb iPhone controls pack Set of IntraWeb components to create web applications for mobile devices like iPhone, iPad, Android that offer a look & feel very close to native applications v2.6.3.0 Features Help Downloads Buy Feature overviewThe TMS IntraWeb iPhone Controls Pack has been designed for and tested with iPhone, iPod Touch, iPad, Android. Please note the TMS IntraWeb iPhone Controls Pack is not intended to be used in common desktop browsers like Internet Explorer, FireFox, Chrome, Safari, ...20 components for IntraWeb to create iPhone/iPad Web applications including :TTIWIPhoneEdit Edit in iPhone style with rounded corners Full webkit based rendering, no images used Configurable action button Configurable keyboard type Asynchronous events & client-side events TTIWIPhoneSpinner Web implementation of the native iOS date/time selector wheel controlAsynchronous updates & eventsFull webkit / HTML5 based rendering, no images usedConfigurable collection of SlotsBuilt-in date and time selectorSmooth iPhone style scrolling TTIWIPhonePopup iPhone / iPad style popup controlAsynchronous updates & eventsFull webkit based rendering, no images usedBuilt-in configurable collection of iPhone / iPad style buttonsCan host custom content by adding a region that can contain any controlExtensive control over positioning TTIWIPhonePhoneLabel, TTIWIPhoneEmailLabel, TTIWIPhoneSMSLabel, TTIWIPhoneLocationLabel TTIWIPhonePhoneLabel Label starting iPhone dialer app with predefined phone number TTIWIPhoneEmailLabel Label starting iPhone email app with predefined email and optional predefined subject, body text, CC email and BCC email TTIWIPhoneSMSLabel Label starting iPhone SMS app with predefined phone number TTIWIPhoneLocationLabel Label starting iPhone maps app with predefined location and optional destination TTIWIPhoneHeader & TTIWIPhoneFooter TTIWIPhoneHeader iPhone application header
2025-03-28October Brings BrightPearl, Multi-stop, and Retail Enhancements This month's feature releases and software updates continue our commitment to giving you the best in smooth custom integrations and superior user experiences. September Announcements: Convoy and Transfix Integrations FreightPOP consistently rolls out new TMS capabilities and API integrations to ensure shippers have... August TMS Updates: Quickbooks, Brokers, BOLs and More Stay on top of our latest TMS integrations, capabilities, and streamlined user controls here! This... July TMS Feature Releases & Updates Our July feature releases and updates are here! We introduce FAK management, new carrier texting... New TMS Features Announced for June 2020 Exciting new TMS features rolled for June include new Pick & Pack Configurations, Carrier Portals,... Enhanced Project Management & Service Tools Added To FreightPOP's TMS We now give project managers that facilitate large-scale projects better oversight and control with... Q4 2019 2019 saw our being named a Top 10 Transport Management Solution Provider for the year and saw us... August 2019 FreightPOP has announced Q3 software updates, further streamlining shipping processes for... June 2019 Six new features announced this year so far!Customer Collaboration Portals: Allows customer...
2025-03-29HelpLooking for TMS FMX UI Pack? arrow_downwardDiscover the new and improved TMS FNC UI Pack below! arrow_downward Powerful UI controls in 1 component set Universal powerful, feature-rich Delphi & C++ Builder FNC UI controls in 1 component set for VCL, FMX and WEB core apps. Includes data grid, planner, treeview, ribbon, memo and rich editor Feature-rich & high performance grid Take your application to the next level with data visualization features such as filtering, sorting and multi-column, multi-level grouping. Use the easy data binding functionality supporting master-detail relationships as well as the ability to export to PDF, HTML and XLS. Powerful workflow visualization kanban board Empower your workflow with fully customizable multi-column visualization of your daily tasks. Flexible multi-column tree view High performance virtual and collection based node structure with various customization possibilities. Ribbon style toolbar Design modern user interfaces with the multi-page ribbon. Easily change the look and feel with one of the pre-defined themes. Highly flexible planner / scheduler Organize your team planning with one of the various display modes. Cross-platform syntax highlighting memo powered by Monaco (Visual Studio Code editor) Full design-time & run-time integration with powerful features including breakpoints, code completion, find & replace and more. Other included components Object Inspector Runtime object inspector with various editors Rich Editor Compact light-weight WYSIWYG editor for formatted text PageControl & Panels Feature-rich TabSet, PageControl and Panels Edits A collection of supercharged edit controls Lists A collection of supercharged list controls Pickers & Selectors A collection of highly styleable
2025-04-22