Im working on Localization of my installer.
my page flow is as follows.
1.welcome
2.license
3.custom page. ( i have created my own directory page)
4.custom page..
5...
...
8.finish page
Issue:
Im using the following code
FindWindow $HWND "#32770" "" $HWNDPARENT
GetDlgItem $R4 $HWND 1207
SendMessage $R4 ${WM_SETTEXT} 1 "STR:$(HELLO)" 1.The above code works fine when i dont include license page.2.The above code doesnt work if i have license page before my custom page.
I removed my license page and introduced welcome page again and tested it. It works fine.
i guess the issue is in identifying the parent window.
Suggestion please.. Thanks in advance.