OK, I've been looking (honest), and I can see how to enable or disable a control,
but how do you remove or delete a control completely?
Egg on face in advance!
Brian
			
			
			
				Try this
declare import,DestroyWindow(uint hWnd),int
IF CONTROLEXIST(mywin,mycontrol)
   DestroyWindow(GETCONTROLHANDLE(mywin,mycontrol))
ENDIF
			
			
			
				Thanks, Larry,
I think I have used DestroyWindow before, but it never crossed my mind this time
Brian