CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8
  1. #1
    Join Date
    Dec 1999
    Posts
    7

    installation file

    Hi,
    I have a project in Visual Basic 4.0 which I developed earlier. But now I have only Visual Basic 6.0 studio available. Can I make the installation file of old project in VB 6.0. Will it work in 486 machine..OR what should I do?.
    Thanks,
    Ashish


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: installation file

    only recently I had to upgrade a VB 4 (16 bit) app to VB 6.
    Basically, it worked without any major problems.
    You should be able to simply load your VB 4 project file into VB 6.
    Problems might occur with third -party controls, and, if you port from the 16-bit version all API calls need to be modified.


  3. #3
    Join Date
    Dec 1999
    Posts
    7

    Re: installation file

    Thank for your suggestion, but please tell me did in VB6 I have (16bit) dll available.
    Ashish.


  4. #4
    Join Date
    Jan 2000
    Location
    Olen, Belgium
    Posts
    2,477

    Re: installation file

    Regarding the 16bit dll, I'm not sure, but i suppose this won't be a problem. The other thing about the vb6 program working on a 486, it depends.

    a) You must have a 32bit platform (like win95/98/NT, not win3.x)
    b) You must have the vb6 runtimes installed on the machine, but they can be included in the installation package. This however, makes you 50K application, an installation file of a few megs

    Tom Cannaerts
    [email protected]

    The best way to escape a problem, is to solve it.
    Tom Cannaerts
    email: [email protected]
    www.tom.be (dutch site)

  5. #5
    Join Date
    May 1999
    Posts
    3,332

    Re: installation file

    >...http://softwareqs/Regeln/sp.htm

    Sorry, but I have NO idea what you are asking for.


  6. #6
    Join Date
    May 1999
    Posts
    3,332

    Re: installation file

    sorry my last post was even more confusing (wrong contents of clipboard).
    What I meant was:
    >...please tell me did in VB6 I have (16bit) dll available

    That's what I didn't understand...


  7. #7
    Join Date
    Jan 2000
    Location
    Olen, Belgium
    Posts
    2,477

    Re: installation file

    I believe he means wheter it's possible to use a 16bit dll in VB6

    Tom Cannaerts
    [email protected]

    The best way to escape a problem, is to solve it.
    Tom Cannaerts
    email: [email protected]
    www.tom.be (dutch site)

  8. #8
    Join Date
    May 1999
    Posts
    3,332

    Re: installation file

    if that's true, the only way that I can think of using a 16 bit dll from a vb6 app is:
    - create a 16Bit OLE server that uses the DLL (i.e. contains the Declare statements).
    Create that thing in VB 4 16 bit
    - use that OLE server in your VB 6 app via automation.

    There might be other ways (thunking=). May be someone else can shed some light on this.


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

Featured