Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Putting an app on the web 2

Status
Not open for further replies.

NeilFrank

Programmer
Mar 12, 2000
167
CA
I've got a little standalone VB 6.0 app that I'd like to be able to access from the web.

Is this possible?
 
Do you mean run it in a browser over the internet from any computer?

- Andy
___________________________________________________________________
If you think nobody cares you're alive, try missing a couple of mortgage payments
 
I think you're only chance is to change your program into an ActiveX control, which you can embed in a web page. Note that the security settings on most people's browsers will not let you automatically install an ActiveX control - at the very least they will have to click OK on a couple of messages warning them of the possible dire consequences of installing an unknown control.

The other question is whether your code could run on "any" machine. For example, does it connect to a local database server with a particular name, or expect a certain file to exist at a certain location?
 
>I think you're only chance is to change your program into an ActiveX control,

I think I'd rather go for an ActiveX document - and if you've got VB6 Enterprise it icludes a migration wizard (under add-ins) for converting an existing project.

The documentation gives the impression that you can only successfully host these off IIS, but this page purposrts to show how you can host on a Unix/Linux web server such as Apache

 
ActiveX Document - I never really got into that - I thought Microsoft had basically abandoned that concept.
 
>I thought Microsoft had basically abandoned that concept

Sure, but they've abandoned VB6 as well - but loads of us still use it ...

IE8 still happily hosts ActiveX documents
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top