I'm trying to modify system state(creating credentials) using values entered by used on dialog before install dialog. Since I'm going to modify system I need to run my code in deferred custom action. But my problem is passing parameters from edit boxes to custom action. How Can I do this?
Asked
Active
Viewed 285 times
2 Answers
0
deferred action didn`t allow you the access session variables. and you will not able to call deferred custom actions before Install dialog.
I think you want to perform some action on button click. so you have to use custom actions of immediate type where u can easily access the your installer properties and modify it.

Arslan Naeem
- 86
- 1
- 8
0
My problem was in visibility of variables. The solution was to make them public(use upper case names) and use them in immediate custom action)

Edward
- 304
- 2
- 16