Is there a way to check if a control has a certain property?
I'm going to need to enumerate all the controls in an application to change the font properties, and I need to ensure that they all have .font.propertyname so I don't run into any errors.
I would simply just use SendMessage with WM_SETFONT (I think that's the message, not sure without looking), but of course certain controls don't have hWnd properties, so that won't work either.
Perhaps there's an easier way to do an application wide font change?
Any help or ideas would be greatly appreciated. Thanks in advance.
I'm going to need to enumerate all the controls in an application to change the font properties, and I need to ensure that they all have .font.propertyname so I don't run into any errors.
I would simply just use SendMessage with WM_SETFONT (I think that's the message, not sure without looking), but of course certain controls don't have hWnd properties, so that won't work either.
Perhaps there's an easier way to do an application wide font change?
Any help or ideas would be greatly appreciated. Thanks in advance.