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

Threaded View

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

    Re: VB6 project load errors

    look at your references for the project if there are any checked items related to word or access then you are using early binding. If not then you are not
    Search the code for CreateObject if this is used to refer to word or access then you are using late binding.

    Both types of binding require that the software be installed but early binding also requires a specific version where late binding is more flexable.

    You do not need Access to work with data in an MDB file. You do need access if you are trying to execute access macros or reports in an mdb

    I have never used word for any applications. For printing I either write code to print or use a report in either case it is part of my program an has no requirement for the user to have additional software installed.


    Where/When do you get this error?
    Last edited by DataMiser; May 20th, 2013 at 03:25 PM.
    Always use [code][/code] tags when posting code.

Tags for this Thread

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