CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Sep 1999
    Location
    Sweden
    Posts
    15

    Installing ActiveX-documents

    Imagine the simplest HelloWorld app made out of ActiveX-documents and succesfully installed in a client.

    If I add new functionality to my app, recompile, repack, redeploy, nothing changes when running the app.

    How do I force IE to reinstall new versions of an ActiveX app without having to uninstall it manually from the "Winnt/Downloaded programs"-App/folder, (which BTW my target users don't have access of doing...)




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

    Re: Installing ActiveX-documents

    your OBJECT tag of your HTML page has hopefully a CODEBASE attribute with a version number.
    When you update your AxDoc you should build a new cab file and set a new version number for the CODEBASE attribute. This should instruct IE to download and install the new version.


  3. #3
    Join Date
    Sep 1999
    Location
    Sweden
    Posts
    15

    Re: Installing ActiveX-documents

    Thanx Lothar,

    I tried that prior to asking this forum, but you pointing it out made me see it from a different angle.

    If I change version-number in VB6, i.e. autoincrement, before compiling and packaging, voila, IE recognizes a new version and reinstalls.

    Anyway, it won't help since IE keeps crashing when I install ActX-docs in my environment. Seattle in our hearts :-)

    Regards

    Patrik


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