Atozed Forums

Full Version: Switching to a calculated link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
During the operation of the program, the text of the link is formed, which you need to direct the user to.

procedure GoToLink;
var
mLink : String;
begin          
          mLink := CreateLink(mParameters);
          ???
end;

Please tell me how to do it?
Hi Sergey,

you want to update the text on the screen directly or just use this to redirect the application to another URL (i.e. change the URL on browser itself)?

If you just want to change the text of the link you just need to set the corresponding property. Are you using an IWLink or what?