Re: Access Database as source for Editor Problems

  •  07-20-2006, 9:56 PM

    Re: Access Database as source for Editor Problems

    don't you hate that - just worked it out.
     
    need
     

    Imports System.Data

    Imports System.Data.OleDb
     
    and change the line
     
    Editor1.Setting("CuteEditorFileStorageType") = Type.GetType(AccessFileStorage).AssemblyQualifiedName
     
    to
     
    Editor1.Setting("CuteEditorFileStorageType") = Type.GetType("AccessFileStorage").AssemblyQualifiedName
     
    note the "" around AccessFileStorage
     
    In saying this it's not yet tested so I may be back, just no more errors on the Studio.Net 2005 aspx.vb
     
    Paul
View Complete Thread