Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ttrotter

    Problem with .index

    I believe that zemp is correct. DAO is designed to work with the Jet engine (Access). I would suggest opening an additional recordset using ADO. Example, Set rs = New ADODB.Connection rs.ConnectionString = "driver=" & DATA_DRIVER & ";server=" & DATA_SERVER &...
  2. ttrotter

    Is VB OOP?

    The technical answer here is that VB6 is NOT an OOP language like say JAVA or C++ are. It will not (at least I don't know of a way) to easily handle Polymorphism, TRUE Inheritance, etc. But VB6 does have a considerably shorter learning curve and is wonderful for QUICKLY creating usable...
  3. ttrotter

    RS. Close and Set RS = nothing

    My understanding (for what that is worth) is that when you set RS=NOTHING you not only close the connection to the DB you destroy the recordset object and that is the difference. You will no longer have access to the object, in other words it is not available to be reopened. But I must admit...
  4. ttrotter

    VB.NET Versus C#

    The last two postings are absolutely correct (for the most part). If you are familiar with VB6 then by all means go ahead and learn VB.NET. Your learning curve will be substantially shorter than trying to learn C#. BUT if your a new developer then I would highly recommend the additional effort...
  5. ttrotter

    Unexpected error when deploying application

    WIFILE00003336 is an idetifier for the component that the 'suspect' file belongs to. Open you msi in the console, and expand the msi. You will see the Featres and components. Select the first component, and select General from the List View. In the data View on the Right you will see the...
  6. ttrotter

    Unexpected error when deploying application

    I found this . . . may be it will help "The error 2715 means: The specified File key ('[2]') not found in the File Table. It sounds like you have a Key Path in the msi that references a file, that is not apart of the package. You can try to the install, then when the error comes up...

Part and Inventory Search

Back
Top