1. GroupAdv Paint Error
		
		
Every time the window resizes, my groups also resize. However, the previous
border is not erased unless you minimise the window. Any ideas?
Thanks,
 Alex
		
	 
	
		
		2. Re: GroupAdv Paint Error
		
			- Posted by Pete Stoner <stoner.pete at gmail.com>
			Dec 04, 2005
- 
				Last edited Dec 05, 2005			
Alex Chamberlain wrote:
> 
> Every time the window resizes, my groups also resize. However, the previous
> border is not erased unless you minimise the window. Any ideas?
> 
> Thanks,
>  Alex
I also had that problem, there may be another way but I found if I set them
invisible at the start of my resizing code then back on at the end it cleaned up
those leftover borders..
i.e.
procedure WinResize(atom self, atom event, sequence parms)
setVisible( {Group1, Group2}, w32False )
-- resize handling code
setVisible( {Group1, Group2}, w32True )
end procedure
setHandler(MainWin, w32HResize, routine_id("WinResize"))
 
Regards Pete