Telegram_2024-03-19T12

<< Click to Display Table of Contents >>

Navigation:  Telegram > 2024 > 03 > 19 >

Telegram_2024-03-19T12

Telegram link

 

2024-03-19T12:37:02

 

Hmm, interesting.. even inside the form itself?

 

Sorry but I want to clear more my point,

 

Does that mean I don't worry about doing awkward things to protect my functions within the form, correct ?

 

Ex.

 

If I have on my form something like

 

if A=12 then do xxxx..

 

 

 

Would that be visible for the user? Or packed somewhere within js files that will run on the user browser ??

 


 

Telegram link

 

2024-03-19T12:40:49

 

No Delphi code will ever be visible to the user. You still need to keep in mind that you're running in a thread. But anything you access local to the form or the session is already basically protected. So unless you're accessing global variables you don't generally need to worry about threading either.