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

Out of disk space dialog


2 replies to this topic

cherukus

cherukus
  • Members
  • 68 posts

Posted 08 March 2005 - 00:16

I am using IS Developer 8.0 Basic MSI.
I am using the following check to determine available disk space:

if (GetDiskSpaceEx(INSTALLDIR, MBYTES) < 100)
then
MessageBox("There is insufficient space");
abort;
endif;

The issue here is, the user wants to see the displayed Error Message on the TOP of any open windows, currently it is getting hidden under other windows.

How do I get this right ???

Thanks !!!

mattgbr

mattgbr
  • Members
  • 19 posts

Posted 08 March 2005 - 14:16

Can you set the form so it has the focus? i think in vbscript you can say 'gotFocus', or even try minimising any other current open windows before you're message is displayed.
Regards,

Matthew Burton

cherukus

cherukus
  • Members
  • 68 posts

Posted 10 March 2005 - 18:20

Can you point to any examples on how to do this. Thanks !!!