hmm forgot that the editor in rich text mode understands html tags...
beneath the click here link I've put the following code
Main Topics
Browse All TopicsMy VB.Net app creates and tracks sales orders. It has the facility to send *internal* emails regarding sales order status.
When an email is sent by my app to someone internal I'd like to have a hyperlink within the email that says something along the lines of "Click here to view the order". When someone clicks the hyperlink I'd like my app to launch and open the relevant order.
Let's say an order number is 1234, I'd like to use a hyperlink like the attached code:
This feature will only be required internally, the app is installed to each client so file associations and permission/security changes wouldn't be a problem.
Thanks for any ideas!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: illusioPosted on 2009-01-22 at 05:28:55ID: 23439067
There is a little, very fun trick for that.
When your application gets installed on a pc add some registry key to HKEY_CLASSES_ROOT.
In fact you specifiy your own URL type...
From that point on you can use sth like "myapp://1234" or click here to launch your program.
The "myapp://1234" will be given as argument to your program if you set up the regkey correctly.
To find out what kinda keys you need to set, just take a look at the "http" and "ftp" keys.
Basically you need:
+ myapp
(default) URL:my application url
+ shell
+ open
+ command
(default) path_to_your_application "%1"
For as far as I remember that is all you need. It's almost two years since I last did that so I hope I didn't forget something.