Frequently Asked Component Specific Questions
Displaying items 1 to 15 of 877, page 1 of 59
<< previous next >>

TMS WEB Core (Jan 2, 2021) Debugging with trial version
Unfortunately it is not possible to debug from Pascal code with the trial version. Debugging from JavaScript code is possible.
The reason is that the framework source code is not delivered in the trial version (for reasons that otherwise there couldn’t be trial limitations) and therefore debugging based on framework source code is not possible in the trial.
It is possible with the full registered version that is delivered with full source code of the framework.
Bruno Fierens (Jan 2, 2021)


TMS WEB Core (Apr 21, 2020) Possible issues with connecting to an XData server from TMS WEB Core
Please refer to the article https://download.tmssoftware.com/business/xdata/doc/web/solving-errors.html that provides information and checklist to solve your possible connection issues.
Masiha Zemarai (Apr 21, 2020)


TMS XData (Apr 21, 2020) Possible issues with connecting to an XData server from TMS WEB Core
Please refer to the article https://download.tmssoftware.com/business/xdata/doc/web/solving-errors.html that provides information and checklist to solve your possible connection issues.
Masiha Zemarai (Apr 21, 2020)


TMS MQTT (Jan 13, 2020) Using broker over TLS
When using a broker over TLS, it is needed to setup the internal SSLIOHandler with needed settings for TLS.
This can be done with:
(TMSMQTTClient1.Connection.SSLIOHandler as TIdSSLIOHandlerSocketOpenSSL).SSLOptions.CertFile := ''cert.pem'';
(TMSMQTTClient1.Connection.SSLIOHandler as TIdSSLIOHandlerSocketOpenSSL).SSLOptions.Method := sslvTLSv1_2;
(TMSMQTTClient1.Connection.SSLIOHandler as TIdSSLIOHandlerSocketOpenSSL).SSLOptions.Mode:= sslmUnassigned;
Bruno Fierens (Jan 13, 2020)


TDBAdvRichEditor (Nov 28, 2019) Color text on the fly while typing
It is possible to check rules after the user types a word in TAdvRichEditor and based on this, apply formatting to the entered text.
This sample code snippet will apply a red color when the user has entered a number value in the TAdvRichEditor:
procedure TForm1.AdvRichEditor1EnterWord(Sender: TObject; AWord: string);
var
v,e,ci,ss,sl: integer;
el: TREElement;
begin
val(aword, v, e);
if (e = 0) then
begin
// is a number
// store current selection
ss := AdvRichEditor1.SelStart;
sl := AdvRichEditor1.SelLength;
ci := AdvRichEditor1.Caret.CharIndex;
if AdvRichEditor1.Caret.Element.Text[ci] = '' '' then
dec(ci);
// set selection to entered word to apply new color
AdvRichEditor1.Selection.FromElement := AdvRichEditor1.Caret.Element;
AdvRichEditor1.Selection.FromChar := ci - Length(AWord);
AdvRichEditor1.Selection.ToElement := AdvRichEditor1.Caret.Element;
AdvRichEditor1.Selection.ToChar := ci;
AdvRichEditor1.SetSelectionColor(clRed);
// restore current selection
AdvRichEditor1.SelStart := ss;
AdvRichEditor1.SelLength := 0;
AdvRichEditor1.SelectionToCaret;
AdvRichEditor1.SetSelectionColor(clBlack);
end;
end;
Bruno Fierens (Nov 28, 2019)


TMS VCL UI Pack (Jul 26, 2019) New TAdvTreeView
When moving from TMS Component Pack to TMS VCL UI Pack and you are using the TAdvTreeView you could potentially run into compilation errors and errors when opening the form. Things that have changed between the older TAdvTreeView and the new implementation are:
- TCanvas is now TAdvGraphics
- Drag & Drop support is built in
- FontColor is no longer a separate color but integrated in Font.Color
- Property types are different
- Fill and Stroke is available as styling properties
- Icons/Images can be added via TPicture instead of TGraphic
Pieter Scheldeman (Jul 26, 2019)


TAdvTreeView (Jul 26, 2019) New TAdvTreeView
When moving from TMS Component Pack to TMS VCL UI Pack and you are using the TAdvTreeView you could potentially run into compilation errors and errors when opening the form. Things that have changed between the older TAdvTreeView and the new implementation are:
- TCanvas is now TAdvGraphics
- Drag & Drop support is built in
- FontColor is no longer a separate color but integrated in Font.Color
- Property types are different
- Fill and Stroke is available as styling properties
- Icons/Images can be added via TPicture instead of TGraphic
Pieter Scheldeman (Jul 26, 2019)


TMS FNC Dashboard Pack (Jul 23, 2019) macOS 64 bit support


TMS FNC Chart (Jul 23, 2019) macOS 64 bit support


TMS FNC Blox (Jul 23, 2019) macOS 64 bit support


TMS FNC UI Pack (Jul 23, 2019) macOS 64 bit support


TMS FNC Cloud Pack (Jul 23, 2019) macOS 64 bit support


TMS FNC Core (Jul 23, 2019) macOS 64 bit support


TMS mCL (Jul 23, 2019) macOS 64 bit support


TMS FMX WebOSMaps (Jul 23, 2019) macOS 64 bit support