Many time during the installation of an application which requires database access - we may ask for database authentication details on the installation/setup screens.
If we have a requirement of changing one of the text fields to a password field - how do we achieve that?
The textboxes available on setup forms - they do not offer any attribute other than Name, Property...
We need to use Orca and change the field 'Attribute' of the control you want to modify. The new value of 'attribute' should be '2097159'. (by default it is 7).
If you are using the "WiRunSQL.vbs" and updating it in a post-build event then the query is:
"UPDATE `Control` SET `Control`.`Attributes`='2097159' where `Control`.`Control`='Edit4'"
('Edit4' is the name of control)
IMP: In SQL queries for MSI it is important to use ` and not ' to specify the column names.
EDIT: We could also have used transforms to update the MSI. Transforms can be created using Orca and applied using "msitran" tool.
No comments:
Post a Comment
Note: only a member of this blog may post a comment.