Página 1 de 1

how to show a covered control

Publicado: Vie Mar 02, 2012 4:54 pm
por Roberto
How do I show the oPanel1??

Attached files Test4.zip (5.7 KB)Â

how to show a covered control

Publicado: Sab Mar 03, 2012 7:18 pm
por jfgimenez
Roberto,
add this code to your program:
CLASS TControl FROM XControl
METHOD ToFront() INLINE SetWindowPos( ::Handle, HWND_TOP,,,,, nOr(
SWP_NOMOVE, SWP_NOSIZE ) )
ENDCLASS
and now, you may use the method ToFront() on any control. However, be
careful, as we haven't tested it in deep, so it could cause any
undesired behavior.
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

how to show a covered control

Publicado: Mar Mar 06, 2012 1:26 pm
por Roberto
tank you.
I will report if I get any strange behaviour.