Simple control/window question
- Posted by Mike777 <anon4321 at gma?l.com> Jan 09, 2008
- 634 views
Using W32Lib I move a label control successfully. However, it appears to be making a copy. That is, the old label is still visible on the screen, as well as the newly positioned text. sequence posit posit = getPosition(lblMyLabel) setCtlPosition(lblMyLabel,posit[1],posit[2]-88) The label moves up 88 pixels, but the original label still is displayed. I tried refreshing the main window, but that didn't work. Is there something else I should be repainting? Thanks Mike