Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Problem in removing custom dialogbox


2 replies to this topic

talzur

talzur
  • Members
  • 26 posts

Posted 15 June 2005 - 16:37

Hi all,

In my project I have created a custom dialogbox,
after presenting the window to the user I'd like to remove it from screen.
For this to be done I'm using the EndDialog(szDlgName) and
ReleaseDialog(szDlgName) at the end of my custom dialog box script , but this doesn't help in removing the window from screen.
What is the reason for this ?

THANKS

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 17 June 2005 - 10:07

If there's no subsequent dialog replacing your custom dialog, you need to
Disable(DIALOGCACHE);

talzur

talzur
  • Members
  • 26 posts

Posted 20 June 2005 - 11:53

Thanks Stefan,
that was it !!!