CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 11 of 11

Thread: VB Error

  1. #1
    Join Date
    Aug 2013
    Posts
    4

    VB Error

    Hello, i dont know if it is the right place to post this thread.
    If anyone can help me, i am trying to run a VB application but i get an error 429 Activex component cant create an object.
    If anyone have an idea.. Thank you in advance.

  2. #2
    Join Date
    Jul 2005
    Posts
    1,083

    Re: VB Error

    To execute an application in windows, this has to be installed using an installation package
    In this package are all the neccesary data files, reports, libraries and ActiveX controls so the application can be executed

    Give more details about your problem
    -did you develop the application?
    JG


    ... If your problem is fixed don't forget to mark your threads as resolved using the Thread Tools menu ...

  3. #3
    Join Date
    Aug 2013
    Posts
    4

    Re: VB Error

    There is no other way to install manual whatever it needs ? I have a VB application on a computer and we want to install it to another...but we dont have an installation package only the files from the program files.
    I have the application installed on a computer i can transfer like a "manual" the files that i need?

  4. #4
    Join Date
    Aug 2013
    Posts
    4

    Re: VB Error

    No i m not the developer.. i wat just to install this application from a computer to another. But the files that they have i dont think that are enough..as you say we need the installation package

  5. #5
    Join Date
    Jul 2005
    Posts
    1,083

    Re: VB Error

    You could do it manually, but it will be a long and tedious work...
    ...use some programs that display the libraries used by the working app
    ...copy each file or files
    ...register the dlls and the ocxs in the new pc
    ...test
    ...etc
    ...and if it is a protected application then it would not work
    JG


    ... If your problem is fixed don't forget to mark your threads as resolved using the Thread Tools menu ...

  6. #6
    Join Date
    Aug 2013
    Posts
    4

    Re: VB Error

    but how i will find which dll and ocxs needs the application?
    it is an application that runs on a server and it has also an application for the client. I dont know if this helps.

  7. #7
    Join Date
    Jul 2005
    Posts
    1,083

    Re: VB Error

    but how i will find which dll and ocxs needs the application?
    There are programs , like http://www.dependencywalker.com/
    but as I posted earlier... it's a long and tedious work !
    JG


    ... If your problem is fixed don't forget to mark your threads as resolved using the Thread Tools menu ...

  8. #8
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,283

    Re: VB Error

    Why don't you want to make a decent installer?

  9. #9
    Join Date
    Jul 2005
    Posts
    1,083

    Re: VB Error

    Quote Originally Posted by HanneSThEGreaT View Post
    Why don't you want to make a decent installer?
    See post #3
    He doesn't has the installation package, he wants to copy an app from one pc to another
    JG


    ... If your problem is fixed don't forget to mark your threads as resolved using the Thread Tools menu ...

  10. #10
    Join Date
    Jul 2008
    Location
    WV
    Posts
    5,362

    Re: VB Error

    If memory serves when an ocx or dll is missing the error message tells you the name of the missing file so it is a matter of reading the message, locating that file, copy it to the target system, register if needed and repeat for each file that it complains about with luck it is only one file but could be 10 or more.

    As a general rule you just should not do this. Somehow that program was installed on the pc it is on now which means there should be an installer that installs it properly and that is what should be used to install it on the target pc rather than a copy paste
    Always use [code][/code] tags when posting code.

  11. #11
    Join Date
    Jul 2005
    Posts
    1,083

    Re: VB Error

    Also...
    The problem get bigger when there are dependencies...
    this is when a dll or an ocx need others files to work
    JG


    ... If your problem is fixed don't forget to mark your threads as resolved using the Thread Tools menu ...

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