Telegram_2024-09-04T03

<< Click to Display Table of Contents >>

Navigation:  Telegram > 2024 > 09 > 04 >

Telegram_2024-09-04T03

Telegram link

 

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 ??

 


 

Telegram link

 

2024-09-04T03:16:29

 

You should be able to do it in any async event if you set the text to something else

 


 

Telegram link

 

2024-09-04T03:16:35

 

it will just refresh the label

 


 

Telegram link

 

2024-09-04T03:18:14

 

class function TIWAppInfo.GetFileInfo(const aFileName: string; aFileInfo: TFileInfo): string;

 

in unit IW.Common.AppInfo

 


 

Telegram link

 

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);

 


 

Telegram link

 

2024-09-04T03:19:00

 

Do u mean something like this? It's not updating

 


 

Telegram link

 

2024-09-04T03:20:10

 

So in order to get the file version, you must do:

 

version := TIWAppInfo.GetFileInfo(TIWAppInfo.GetAppFullFileName, fiFileVersion);

 


 

Telegram link

 

2024-09-04T03:20:27

 

can you provide a simple test case?

 


 

Telegram link

 

2024-09-04T03:20:54

 

Sure

 


 

Telegram link

 

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

 


 

Telegram link

 

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