114 questions
4
votes
2
answers
191
views
Clearing memory in WebApp, after completion
I have a web app written in Delphi 12 using TMS Webcore components.
At logout (which happens by user action, or after idle timeout), I want to clear the memory
for security reasons,
in case there are ...
1
vote
1
answer
117
views
How do you change a SVG Image's Color in TMS WEB Core
I am adding an SVG image to a black background in TMS WEB Core and would like to change the color of the SVG image to White.
I have tried changing color in the properties but there is obviously no ...
0
votes
1
answer
80
views
How can I auto resize the TWebComboBox's width to match the selected option's width in TMS WEB Core?
I've got a TWebComboBox component on my form and every item in it has a different text size.
Currently what I've done as a temporary solution is to just manually check the selected item's text content ...
0
votes
0
answers
136
views
How to detect if a URL has changed in TMS WEB Core?
I have a TMS WEB Core application with code all over the place that changes the URL via the window.history.pushState function.
Is there a way I can detect when the URL has changed?
Let's say for ...
2
votes
0
answers
210
views
How to hash a password in TMS WEB Core?
I am trying to use the TWebSHAHash from my website using Delphi. I tried using what is on the documentation: https://download.tmssoftware.com/doc/tmswebcore/components/twebshahash/, but it won't work.
...
0
votes
1
answer
133
views
How to to clear/delete all controls on a TWebGridPanel in TMS WEB Core?
I've got a TWebGridPanel component that I'm dynamically populating with rows and columns as well as controls within those rows and columns.
My issue is that I need to clear/delete/destroy all controls ...
0
votes
1
answer
132
views
How to dispatch a keyup event on a TJSElement in TMS WEB Core?
I'm busy converting some JavaScript code over to Delphi and I'm trying to dispatch a keyup event on a TJSElement class.
In JavaScript, this is how I have done it:
layTable.querySelector("....
0
votes
0
answers
146
views
TMS AdvWebBrowser not initializing
I have a TMS AdvWebBrowser component. Initially it showed that the WebView2Loader_x86.dll was missing. (This showed on the component when dropping it on a form) I installed the Evergreen, and the ...
1
vote
0
answers
105
views
How to check if my PWA is installed in TMS WEB Core?
I have written a "TMS WEB PWA Application" in Delphi which allows users to install the web app on their devices.
The PWA app works well, I'm able to install it. On Windows, it gives a popup ...
2
votes
0
answers
51
views
Is tms web core pages rendered server side or client side?
I am working with tms web Core, and I am curious about how it handles rendering. Specifically, I want like to know whether tms pages are rendered server-side or client-side.
Can someone clarify this ...
2
votes
1
answer
454
views
Can I use IntraWeb in the Lazarus IDE?
I am currently exploring web development options in the Lazarus IDE.
I know TMS WEB Core is available for Lazarus.
I am wondering if IntraWeb is compatible with the Lazarus IDE. I have used IntraWeb ...
1
vote
1
answer
142
views
How can I load data into the TWebTableControl in TMS WEB Core?
I have a TWebTableControl that I need to load data into, but I do not understand how to do this.
I do not understand the documentation either: https://download.tmssoftware.com/doc/tmswebcore/...
1
vote
0
answers
55
views
How long does the trial version for tms web core last?
I have the trial version of tms web core and I want to know how long this trial version lasts, when will it expire?
The product itself does not tell me and I can't find anything online either.
3
votes
1
answer
111
views
How do I use an SVG image in a webImageControl, tms web core
I am trying to put a phone SVG image into a TWebImageControl in the .pas unit.
I tried adding the image to the TWebImageControl with code that executes on the creation of the application.
PhoneWIC....
0
votes
1
answer
368
views
How to call an async function in TMS WEB Core?
I've got a simple function in Delphi that is marked as an [async] function.
Currently, the function doesn't do anything. It literally just returns a Boolean value of True:
[async]
function ...