I'm trying to set the caption of a link/hyperlink control (the one provided by InstallOptions). The following does not work:
I have verified that the control handle is correct by using..
SendMessage <handle to the control> ${WM_SETTEXT} 0 "STR:http://whatever.net/"
It disappears just fine.ShowWindow <handle> 0
Note that for the specific application, I cannot modify the .ini file before the dialog is displayed - the caption of the link would be modified when the user presses a button (which does some fancy things and the appropriate caption is chosen from its results) on the same dialog as this link control.
I'm probably missing something obvious - I'm just hoping that the obvious is -not- "You cannot do that".
Thanks in advance for any insights 🙂