Search Result

Collapse
2 results in 0.0038 seconds.
Keywords
Members
Tags
runtime error 13
  •  

  • how to solve "runtime error 13: type mismatch"?

    Hello,

    VBA gives an error on the indicated line. "tblparamet ers" is a database which exists.

    Code:
    Option Compare Database
    
    Option Explicit
    
    Sub fill_parameters()
    
    Dim rstfill As Recordset
    Dim DB2 As Database
    
    Set DB2 = CurrentDb
    ====> Set rstfill = DB2.OpenRecordset("tblparameters")
    
    With rstfill
    
    While
    ...
    See more | Go to post

  • rhitam30111985
    started a topic VB6 Run time error '13' Type Mismatch

    VB6 Run time error '13' Type Mismatch

    HI all ,


    I am using Windows 2000 OS for out server . We use a VB tool to deploy all the COM applications. In that , this is a snippet of code that is failing :

    Code:
     
    Option Explicit
    Dim ComAdm As New COMAdmin.COMAdminCatalog
    Set ComAdm = CreateObject("COMAdmin.COMAdminCatalog")
    At this point , the program just throws an exception "Type mismatch" and comes...
    See more | Go to post
Working...