Jump to content

Bde-inst


Guest Tschoonsz
 Share

Recommended Posts

Guest Tschoonsz

Hi,

I use autoit for automatic installation of the BDE in inno-setup-installer.

I use a script that should close the warning that appears when the disk-space on the disk where BDE is installed is more than 2 GB. In this case BDE-installation gives a message saying "...there is not enough disk...". I want this message not to be seen by the user, the installation is also working if autoit sends ENTER to this message. I use the following script but it didn´t work under W-XP. The warning and also the dialog appears.

Is there anybody who can help me?

This is the script:

HideAutoItWin, On

Run, minireg.exe bdeinst.dll

WinWaitActive, Borland Database Engine Installation/Upgrade

Send, {ENTER}

Gosub, checkem

Exit

checkem:

;check for the existence of the not-enough-disk-space warning

IfWinActive, Warning,, Send, {ENTER}

;check for the directory-does-not-exist,-create-it? dialog

IfWinActive, Confirm,, Send, {ENTER}

;see if we're done yet

IfWinExist, Borland Database Engine Installation/Upgrade, Goto, checkem

Return

Thx

Tschoonsz

Edited by Tschoonsz
Link to comment
Share on other sites

  • Developers

Do these to windows have the focus when they popup ??

If not you could test if the window exists , then activate it and send ENTER...

IfWinExist, Warning,,WinActive, Warning
IfWinExist, Warning,,Send, {ENTER}

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...