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

Enabling the button doesn't work


3 replies to this topic

Malini

Malini
  • Members
  • 9 posts

Posted 22 January 2002 - 06:53

I  have a Edit Field which accepts some data.The Next button is to be enabled as soon as the edit field accepts the data.
But the button is enabled only when I click some other control on the UI.Can anyone help me out to solve this.
Thanx in advance

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 22 January 2002 - 15:25

Installer dialogs don't send EditChange messages. You could enable the button and display an error message if it is clicked without filling the edit field. Or create your own user interface (e.g. with InstallShield Developer 7).

Malini

Malini
  • Members
  • 9 posts

Posted 23 January 2002 - 10:35

I have created my own UI using ISWI 2.0.I have to enable the next button only when the edit field is filled.
I have given the condition as EDITPROP<>""
(EDITPROP is the public property of the edit field)

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 23 January 2002 - 19:39

You have created a custom dialog, but it is still displayed by the windows installer engine. What I mean is: create a dialog in a DLL or use an external user interface handler, like the InstallScript in Developer Standard projects.