J
Julibee
I'm working on a prototype for a system and I'm doing it in Powerpoint (OK,
that might have been my first mistake). It lets me mockup screens easily,
and I can demonstrate the flow, and easily change the order of the screens if
I want to.
I have a combo box on a slide. Based on the value selected by the user
(yes/no) I want other boxes to appear. There are 3 different sets of boxes
and labels that could appear depending on the value, and I've put them all in
the same space on my slide. (saving screen real estate and making it easier
for the client to fill data in is my goal here).
I have used the controls toolbar to put the various boxes on my slide. I
have a Setup button (command button) that loads the combo box values using
AddItem, and sets the various box properties .visible=False and .value="" (or
whatever initial value they should have).
I have a WhateverComboBox_Change() sub that checks the value in a simple If
statement, and when triggered the label and text box properties are set
..visible=true.
When I make a choice from the combo box in Slide Show mode, the labels and
text boxes do appear, but they are not enabled. I have added the property
..enabled=True to the code, but it hasn't fixed it.
They seem to work at some times and not at others. I'm using the same
technique in several places, and I get different results - despite copying
and pasting the code so I know I'm doing it the same way. I seem to have
more trouble on slides where I've used this several times.
that might have been my first mistake). It lets me mockup screens easily,
and I can demonstrate the flow, and easily change the order of the screens if
I want to.
I have a combo box on a slide. Based on the value selected by the user
(yes/no) I want other boxes to appear. There are 3 different sets of boxes
and labels that could appear depending on the value, and I've put them all in
the same space on my slide. (saving screen real estate and making it easier
for the client to fill data in is my goal here).
I have used the controls toolbar to put the various boxes on my slide. I
have a Setup button (command button) that loads the combo box values using
AddItem, and sets the various box properties .visible=False and .value="" (or
whatever initial value they should have).
I have a WhateverComboBox_Change() sub that checks the value in a simple If
statement, and when triggered the label and text box properties are set
..visible=true.
When I make a choice from the combo box in Slide Show mode, the labels and
text boxes do appear, but they are not enabled. I have added the property
..enabled=True to the code, but it hasn't fixed it.
They seem to work at some times and not at others. I'm using the same
technique in several places, and I get different results - despite copying
and pasting the code so I know I'm doing it the same way. I seem to have
more trouble on slides where I've used this several times.