Click here to Skip to main content
15,918,976 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can i open a HTML document direct from VB6 desktop application which kept in htp server?
Posted
Comments
bbirajdar 20-Jul-12 2:44am    
what is htp server?

1 solution

In VB6, there is the "Shell" command to start an application. I do not know its details. Maybe you have to use the full command line to it, e.g.
VB
Shell("""C:\Program Files (x86)\Internet Explorer\iexplore.exe"" http://www.google.com/", vbNormal)

maybe the URL alone could do:
VB
Shell("http://www.google.com/", vbNormal)

Just try it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900