All,
I have an MDI application. I want the user to select from the menu a system
wide option (for example 'Wide').
I handle the message ID_SYSTEM_WIDE in the App class (update .INI etc).
From the App class, how can I iterate through all open documents and all open
views to let them know that this event has taken place. Sort of like
OnWinIniChange() but for my own applications INI file.
Something like:
while(GetNextDoc)
{
while(GetNextView)
{
}
}
TIA
Rob