Results 1 to 15 of 15

Thread: pubblish application in vb 6.0 on the web....

  1. #1

    Thread Starter
    PowerPoster
    Join Date
    Mar 2005
    Posts
    2,934

    pubblish application in vb 6.0 on the web....

    For test i user vb.net an di have see is possible to distribute on web an application via wizard pubblish...
    Is possible with application maked in VB 6.0?
    I have found this article, is a good way, or other suggestion?

    http://msdn.microsoft.com/library/de...datVB6apps.asp

    tks

  2. #2
    Junior Member
    Join Date
    Jun 2006
    Posts
    21

    Re: pubblish application in vb 6.0 on the web....

    You would use Active X....figure it out.

  3. #3

    Thread Starter
    PowerPoster
    Join Date
    Mar 2005
    Posts
    2,934

    Re: pubblish application in vb 6.0 on the web....

    Quote Originally Posted by KieferHagin
    You would use Active X....figure it out.
    Tks...KieferHagin, but not completly understand...Activex?

  4. #4
    PowerPoster
    Join Date
    May 2006
    Posts
    2,988

    Re: pubblish application in vb 6.0 on the web....

    You want to have a vb6 type app in a web page?

    If so you need to create it as an ActiveX Control ..
    But note, this will only work in IE and also only if the visitor accepts the security risk.

    See this basic example on how to create an ActiveX (same as in VB6)
    http://www.4guysfromrolla.com/webtech/091698-1.shtml

  5. #5
    Junior Member
    Join Date
    Jun 2006
    Posts
    21

    Re: pubblish application in vb 6.0 on the web....

    Sorry for my bland answer, I was tired and about to leave.

  6. #6

    Thread Starter
    PowerPoster
    Join Date
    Mar 2005
    Posts
    2,934

    Re: pubblish application in vb 6.0 on the web....

    Quote Originally Posted by rory
    You want to have a vb6 type app in a web page?

    If so you need to create it as an ActiveX Control ..
    But note, this will only work in IE and also only if the visitor accepts the security risk.

    See this basic example on how to create an ActiveX (same as in VB6)
    http://www.4guysfromrolla.com/webtech/091698-1.shtml
    hI Rory, many tks...
    But a dont i understand completly the make the project in example... Peraph for you is very simple to make for me the example refred in link you posted...
    I repeat only the little project...
    If you have a patience for me:-)....
    Tks Sal.

  7. #7
    PowerPoster
    Join Date
    Feb 2006
    Location
    East of NYC, USA
    Posts
    5,691

    Re: pubblish application in vb 6.0 on the web....

    There's at least one installation package program that can package your VB6 application to be distributed from the Web - InstallShield. I don't know what others are available. If you don't want to use something like that you'll have to write your own Web app to distribute your VB6 app.
    The most difficult part of developing a program is understanding the problem.
    The second most difficult part is deciding how you're going to solve the problem.
    Actually writing the program (translating your solution into some computer language) is the easiest part.

    Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.

    Please Help Us To Save Ana

  8. #8
    PowerPoster
    Join Date
    Apr 2005
    Location
    Debug.Print
    Posts
    3,885

    Re: pubblish application in vb 6.0 on the web....

    Quote Originally Posted by Al42
    There's at least one installation package program that can package your VB6 application to be distributed from the Web - InstallShield. I don't know what others are available. If you don't want to use something like that you'll have to write your own Web app to distribute your VB6 app.
    i think the guys in the wrong forum because he said he is using .NET and he is in VB6 forum

  9. #9
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: pubblish application in vb 6.0 on the web....

    Quote Originally Posted by BrailleSchool
    i think the guys in the wrong forum because he said he is using .NET and he is in VB6 forum
    He is in the right place. His question is about a VB6 application.
    Quote Originally Posted by luca90
    For test i user vb.net an di have see is possible to distribute on web an application via wizard pubblish...
    Is possible with application maked in VB 6.0?
    I have found this article, is a good way, or other suggestion?

    http://msdn.microsoft.com/library/de...datVB6apps.asp

    tks
    I, on the other hand, have no idea why if you wish to publish your application on the web that you would develop it in VB6.

  10. #10
    PowerPoster
    Join Date
    Feb 2006
    Location
    East of NYC, USA
    Posts
    5,691

    Re: pubblish application in vb 6.0 on the web....

    Publishing and the app itself have nothing to do with one another, Hack. Would you have a problem with a novel in Spanish published on green paper, as opposed to one in English published on green paper? He wants to distribute it by having the user click on a Web link and having the app install itself on the user's computer. What difference does it make what language the app was written in? (Well, okay, .net can do it semi-internally and VB6 can't. But InstallShield has a product that installs any app from the Web.)
    The most difficult part of developing a program is understanding the problem.
    The second most difficult part is deciding how you're going to solve the problem.
    Actually writing the program (translating your solution into some computer language) is the easiest part.

    Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.

    Please Help Us To Save Ana

  11. #11
    PowerPoster
    Join Date
    Apr 2005
    Location
    Debug.Print
    Posts
    3,885

    Re: pubblish application in vb 6.0 on the web....

    Quote Originally Posted by Al42
    Publishing and the app itself have nothing to do with one another, Hack. Would you have a problem with a novel in Spanish published on green paper, as opposed to one in English published on green paper? He wants to distribute it by having the user click on a Web link and having the app install itself on the user's computer. What difference does it make what language the app was written in? (Well, okay, .net can do it semi-internally and VB6 can't. But InstallShield has a product that installs any app from the Web.)
    but youd have to pay for InstallShield I would expect.

  12. #12
    PowerPoster
    Join Date
    Feb 2006
    Location
    East of NYC, USA
    Posts
    5,691

    Re: pubblish application in vb 6.0 on the web....

    Yes. As I said, I don't know whether there's any other product, free, shareware or commercial, that would do the job, I just know that InstallShield does have such a product. I would assume that they're not the only ones who have made anything like that available, since it's not that complicated a program.
    The most difficult part of developing a program is understanding the problem.
    The second most difficult part is deciding how you're going to solve the problem.
    Actually writing the program (translating your solution into some computer language) is the easiest part.

    Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.

    Please Help Us To Save Ana

  13. #13
    PowerPoster
    Join Date
    May 2006
    Posts
    2,988

    Re: pubblish application in vb 6.0 on the web....

    Quote Originally Posted by luca90
    hI Rory, many tks...
    But a dont i understand completly the make the project in example... Peraph for you is very simple to make for me the example refred in link you posted...
    I repeat only the little project...
    If you have a patience for me:-)....
    Tks Sal.
    You create it as an ActiveX Control instead of an Exe project.

    Then you use Package & Depolyment wizard to create it into a cab file, and it gives you the object ID to embed it into your web sites HTML .. easy as 123 once you get past the ActiveX control creation part. .. the Cab file is downloaded when the user visits the web page and installs the neccassary support files, then runs the app. This only works in IE by the way.

  14. #14
    PowerPoster
    Join Date
    Feb 2006
    Location
    East of NYC, USA
    Posts
    5,691

    Re: pubblish application in vb 6.0 on the web....

    I think you're talking about developing code that runs as part of the web page (client-side) and luca90 was talking about distributing an exe project by having it install from the web.
    The most difficult part of developing a program is understanding the problem.
    The second most difficult part is deciding how you're going to solve the problem.
    Actually writing the program (translating your solution into some computer language) is the easiest part.

    Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.

    Please Help Us To Save Ana

  15. #15
    PowerPoster
    Join Date
    May 2006
    Posts
    2,988

    Re: pubblish application in vb 6.0 on the web....

    If thats the case then just upload the Setup file and put a link to it ...

    Otherwise if the browser uses embedded code to install a file on the user's PC that will always be client side; Example being an ActiveX Control Cab File. Server side is only able to install on the Server's PC/s.

    He could use Inno to create the 1 single Setup.exe file and when they click on the hyperlink it download's the file then runs the setup ... otherwise with P&D he'd have to zip them up or like mentioned before, create an ActiveX Cab file..
    Last edited by rory; Aug 3rd, 2006 at 04:09 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width