2022-06-08 05:24 AM
i use button.setvisible(bool) function but it doesn't happen accordingly. is there an example of how to do it?
Solved! Go to Solution.
2022-06-08 07:22 AM
Hello DPutr.1,
I think you use the function correctly, but maybe you just forget to call the invalidate function after ?
something like:
button1.setVisible(TRUE);
button1.invalidate();
/Osman
2022-06-08 07:22 AM
Hello DPutr.1,
I think you use the function correctly, but maybe you just forget to call the invalidate function after ?
something like:
button1.setVisible(TRUE);
button1.invalidate();
/Osman
2022-06-08 08:48 PM
Hello Oskt,
Thank you for the answer very helpful
2022-06-09 12:16 AM
You're welcome :)