VC++
-
I have written a VC++ Program. I want it to execute when a clicked on a hyperlilnk. Can anybody tell me how i can do this? :confused: Thaks in advance.:)
-
I have written a VC++ Program. I want it to execute when a clicked on a hyperlilnk. Can anybody tell me how i can do this? :confused: Thaks in advance.:)
Please state your problem more precisely
-
I have written a VC++ Program. I want it to execute when a clicked on a hyperlilnk. Can anybody tell me how i can do this? :confused: Thaks in advance.:)
-
Please state your problem more precisely
I wnat my program to get executed when a click on a hyper lllink in a html file. How can i do this?
-
sruti_p wrote:
I want it to execute when a clicked on a hyperlilnk.
u mean clicking a link in the Internet explorer? nave
Yes.
-
I wnat my program to get executed when a click on a hyper lllink in a html file. How can i do this?
<EXECUTEPROGRAM> MyProgram.exe </EXECUTEPROGRAM>
Look into ActiveX. I am afraid that HTML is of least helpful for your requirement. This has become a browser side scripting question you see. No matter if your program is written in VC++ or C or C#.
-
I have written a VC++ Program. I want it to execute when a clicked on a hyperlilnk. Can anybody tell me how i can do this? :confused: Thaks in advance.:)
sruti_p wrote:
I want it to execute when a clicked on a hyperlilnk. Can anybody tell me how i can do this?
Browsers don't allow you to do that. They simply open up a download box where you can click on
Open
to run it from its current location AFAIK.
Nibu thomas A Developer Programming tips[^] My site[^]
-
I have written a VC++ Program. I want it to execute when a clicked on a hyperlilnk. Can anybody tell me how i can do this? :confused: Thaks in advance.:)
-
I have written a VC++ Program. I want it to execute when a clicked on a hyperlilnk. Can anybody tell me how i can do this? :confused: Thaks in advance.:)
I think it is quite difficult to implement, because that is against security settings of the browser. But there is a lateral way to do that. 1. Create a simple COM dll , and implement a function say Execute() in the dll. 2. In execute function; write the code to start your executable. (use System() or ShellExecute() functions ) 3. In your HTML write some client side scripts to Create the COM object and call the Execute() function. This is my idea to resolve the problem. -- modified at 0:40 Monday 29th May, 2006