- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
All you need to do is supply a button, that when pressed, opens your browser with the link displayed as text on the button. So if your hyper -link is, for example "http://www.microsoft.com", you can change the text on the button to show this then, when the button is pressed it needs to activate a call-back routine that can issue the text in system command (use SYSTEM or SYSTEMQQ)
' iexplore "http://www.microsoft.com" '
(note the underlining in the above has been added by the messageboard software)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you both for helpful sugestions which solved my problem. The callback codes I used for the button control are
iret = ShellExecute(ghwndMain,NULL, "http://www.microsoft.com", NULL, NULL, SW_SHOWNORMAL)
which works well directly without any trouble. I have tried
iret = SYSTEM('iexplore "http://www.microsoft.com "')
whichdid not work.By running this, the program tried to open a console window, and then failed to open it. Maybesome window parameters need to be set by some extra codes before running this.
Shawn

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page