Tms system controls pack
Author: c | 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 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 System 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 aheadComments
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-14TMS 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-18IW 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-31October 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-04-01