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

How does Properties work?


2 replies to this topic

stegerwald

stegerwald
  • Members
  • 7 posts

Posted 12 May 2005 - 08:30

Hi,

i use Visual Studio 2003 to build my setup.

I have a checkbox page with 2 checkboxes

To test the values i have a textbox page that
follows the checkbox page to display
the selection.

I did the following:

On the Checkbox Page:
Checkbox1Property set to TESTPROPERTY

On the Textbox Page:
Edit1Value set to [TESTPROPERTY]

I thought I will see the selected value in the
textbox?

Is there any other way to "Debug" the properties?

Thanks for any help
Frank


_nick_

_nick_
  • Members
  • 34 posts

Posted 12 May 2005 - 14:33

See http://msdn.microsof...up/controls.asp for information on Checkbox controls.

Basically checkboxes can only be used to do the following things:
AddLocal ControlEvent, AddSource ControlEvent, Remove ControlEvent, DoAction ControlEvent, or SetProperty ControlEvent

I would recommend setting a property, and then conditioning the contents of the edit box on value of that property.


Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 13 May 2005 - 08:28

If you want to associate the property with an edit box, don't put it in square brackets.