> > I ran the above with the window showing and without the win.close, and > the text changed to system font so I know it did something. But if I > rerun the WM_GETFONT messages, the same fonthandle numbers continue to > be returned so possibly there is more to do. > > Regards, > Sheri > I htink that as long as the fonts you are deleting are not being used elsewhere in PowerPro window the above should be OK.
Try assigning the same font to a powerpro button and to the debug window to see what happens as a test. The fact that the getfont returns the same handle is valid. It is very similar to this situation, I think: v = vec.create(...) win.debug(v) v.destroy win.debug(v) the same "handle" will be shown for both debugs, but the vector is gone when the second debug runs.
