Subject |
Re: variable in text on a form |
From |
Heinz Kesting <Nobody@Nowhere.com> |
Date |
Fri, 8 Mar 2019 00:16:11 +0100 |
Newsgroups |
dbase.getting-started |
Hi Charlie,
> Is there a way to call a variable into a text component on a form? In a form I am trying to send this message: 'The count is ' _app.cnt'.'
>
Try
form.yourText.text = 'The count is ' + _app.cnt + ' .'
which should result in a string like
'The count is 999 .'
Hope this helps.
Kind regards, Heinz
|
|