Reputation: 2514
I create class with base class of CPropertySheet, show this dialog using
d.DoModal()
and it freezes my application. Can I execute my dialog asynchronously?
d.ShowWindow(SW_NORMAL)
doesn't work.
Upvotes: 0
Views: 244
Reputation: 308530
You need to use CPropertySheet::Create to use the dialog asynchronously. There's also some hints at http://support.microsoft.com/kb/146916 .
Upvotes: 2