FLCL
FLCL

Reputation: 2514

MFC Dialog Showing Problem

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

Answers (1)

Mark Ransom
Mark Ransom

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

Related Questions