|
<< Click to Display Table of Contents >> Navigation: Telegram > 2024 > 09 > 04 > Telegram_2024-09-04T03 |
2024-09-04T03:15:12
Hi all,
Please is it possible to refresh an IWlabel when its RawData property is set to true without refreshing the whole page?? If yes how would I do that ??
2024-09-04T03:16:29
You should be able to do it in any async event if you set the text to something else
2024-09-04T03:16:35
it will just refresh the label
2024-09-04T03:18:14
class function TIWAppInfo.GetFileInfo(const aFileName: string; aFileInfo: TFileInfo): string;
in unit IW.Common.AppInfo
2024-09-04T03:18:54
The first parameter is the full name of the executable. The second parameter is the info you want. It can be:
TFileInfo = (fiCompanyName, fiFileDescription, fiFileVersion, fiIntName,
fiLegalCopyright, fiLegalTradmark, fiOrigFilename, fiProductName,
fiProductVersion, fiComments);
2024-09-04T03:19:00
Do u mean something like this? It's not updating
2024-09-04T03:20:10
So in order to get the file version, you must do:
version := TIWAppInfo.GetFileInfo(TIWAppInfo.GetAppFullFileName, fiFileVersion);
2024-09-04T03:20:27
can you provide a simple test case?
2024-09-04T03:20:54
Sure
2024-09-04T03:30:38
It's working perfectly in case simple I just prepared, however, its not working within the project.. let me dig deeper to see what the real problem is, thanks again for the heads-up
2024-09-04T03:40:02
Nope it's working too.. its wired, never mind, I'll see what's the problem and update for general knowledge