I think I might have an answer for you. As far as I can remember, netscape
doesn't use VBScript, hence it won't work. Try and see if you can port your
code to EcmaScript (what netscape call JavaScript), and that should be
compatable with both IE, and Navigator.
HTH
Quote:
>Hi There !
>My application is Visual Basic 5.0 based.
>I am having problem while launching application from Netscape .
>It is working well under IE browser with following code.
><SCRIPT LANGUAGE="VBScript">
><!--
>Sub oppdf(pdflnk)
> Dim Success
> Success=VBSObject.DoShell("c:\mt\mehul.exe" & " " & pdflnk ,1)
>End Sub
>-->
></SCRIPT>
><A HREF= oppdf("$$doc.pdfd")><IMG SRC="pdficons.gif" BORDER="0"
>></a>
>But netscape doesn't like this code.
>Anyone who has deal with this kind of problem please help me.
>My Question is :
>1> Is there any way I can launch application from Netscape ?
>2> I am passing parameter to application from netscape page.
>Thanks
>MT.