activate a TsWebLabel programmatically?

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #33655
    Catz
    Participant

    How can I activate a TsWebLabel programmatically?

    I wish to allow users to doubleclick on a list of websites to launch their browser. Currently I have the TsWebLabel.URL property updated when the user clicks an item in the list. They then have to click the label itself to launch their browser.

    Any ideas anyone?

    #42131
    Support
    Keymaster

    Maybe will be better to use a code like this :

    CODE
    ShellExecute(Application.Handle, 'open', PChar(sWebLabel1.URL), nil, nil, ord(soDefault));

    uses ShellAPI;

    #42146
    Catz
    Participant

    QUOTE (Support @ Apr 7 2010, 11:18 AM)
    Maybe will be better to use a code like this :

    CODE
    ShellExecute(Application.Handle, 'open', PChar(sWebLabel1.URL), nil, nil, ord(soDefault));

    uses ShellAPI;

    Thanks a lot, that works fine.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.