cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
liubaoli
Level 2

How to change the text of the second line of progress bar in SetStatus dialog

We can change the message of the top line of the progress bar by function SetStatusWindow(), but how to change the message of the second line of the progress bar?
Labels (1)
0 Kudos
(1) Reply
MiltonNet
Level 4

Try sending message using INSTALLMESSAGE_ACTIONSTART.
For example:

hActionRec = MsiCreateRecord(3);
MsiRecordSetString( hActionRec, 2, "Hello on second line");
nResult = MsiProcessMessage(ISMSI_HANDLE, INSTALLMESSAGE_ACTIONSTART, hActionRec);
0 Kudos