Link to home
Start Free TrialLog in
Avatar of Naeemg
Naeemg

asked on

Internet Explorer Toolbar button

I want to add a button in Internet Explorer Toolbar automaticaly from Visual Basic or Java application.

Function of Button:
By pressing button the path of currently displaying html file in the browser should be get.
Plz help me immediately
Avatar of Arno Koster
Arno Koster
Flag of Netherlands image

<html>
<body>
<FORM NAME="Form1">
   <INPUT TYPE="Button" NAME="Button1" VALUE="Click">
   <SCRIPT FOR="Button1" EVENT="onClick" LANGUAGE="VBScript">
      MsgBox Document.Location      
   </SCRIPT>
</FORM>
</body>
<html>
ASKER CERTIFIED SOLUTION
Avatar of rsriprac
rsriprac

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial