[Resolved] Hyperlink in listbox
Hi,
I searched the site and found a link to vb-world (hyperlink in richtextbox), but I think the site is down. Could anyone help?
What I actually want to do is something like the Rules Wizard in Outlook 2000. The rules is in a checked listbox, and the selected rule's description is in another listbox (used Spy++ to find out). In this second listbox, the rules are summarized, and the user could change certain variables by clicking on them (like a hyperlink). That's what I want. I want to build THAT listbox.
Thanx
[RESOLVED] Hyperlink in listbox
Joacim,
You are absolutely right. Thanks for all the input guys.
Re: [Resolved] Hyperlink in listbox
hey Joacim, i tried your code but when i tried clicking on the Hypertext, nothing happened! :confused:
Re: [Resolved] Hyperlink in listbox
No, nothing except that the HyperlinkClick event is fired. You have to write code in this event to determent what should be done. Did you test the attached demo application?
Re: [Resolved] Hyperlink in listbox
Quote:
Originally Posted by Joacim Andersson
No, nothing except that the HyperlinkClick event is fired. You have to write code in this event to determent what should be done. Did you test the attached demo application?
no, i tried the .vbg file.
tried the Demo.vbp file and it generated an error could not create reference : "c:\...\HT Ctrl.vbp". how can i do that?
Re: [Resolved] Hyperlink in listbox
You must save all the files in the same directory and open the *.vbg file, you can not run the Demo.vbp alone, atleast not if you haven't compiled the HTCtrl.vbp project to an OCX.
Re: [Resolved] Hyperlink in listbox
R0ach noticed a bug in my control posted above, so I've updated the code to fix that. The new demo also shows one way of implementing ToolTips when the mouse hovers one of the hyperlinks. I've updated my origional post with the new code (post #13 above).