ChocJunkie
6th October 2009 15:45 UTC
NSDialog Modify Progress Bar
I'm creating a custom dialog using NSDialog. I've integrated a progress bar in mypage and I would like to use it respectively show a progress.
I've skimmed http://nsis.sourceforge.net/Docs/nsDialogs/Readme.html , but found nothing helpfull.
Does someone now how to modify the progress bar?
Thanks
CJ
820815
6th October 2009 22:10 UTC
;$0 - from 0 to 100
SendMessage $ProgressBar_hwnd ${PBM_SETPOS} $0 ""
ChocJunkie
7th October 2009 07:52 UTC
Thank you :)
I can just use numbers from 1 to 10, but it's better than nothing. :) [Addition: I'm additionaly using MUI2 now and the range changed to 1 to 100.]
Where can I found information to this function and other ones?
MSG
7th October 2009 08:33 UTC
Google is probably the easiest way, but all the information you'll need can be found in http://msdn.microsoft.com/
ChocJunkie
7th October 2009 09:10 UTC
Thank you!! :)