Results 1 to 2 of 2

Thread: EditBookmarkFlds keyword cannot be blank for single/multiple RecordScope.

  1. #1
    Venom Guest

    EditBookmarkFlds keyword cannot be blank for single/multiple RecordScope.

    I get this error message when trying to update, add, or delete a record. This is my code:

    Set MyDb = Server.CreateObject("ASPdb.Pro&#34
    MyDb.dbDBType="Access"
    MyDb.dbDSN = "DBQ=" & Server.Mappath("homes.mdb&#34 & ";Driver={Microsoft Access Driver (*.mdb)};"
    MyDb.dbColor = "2,auto,silver"
    MyDb.dbMode = "both"
    MyDb.dbGridInc = 7
    MyDb.dbGridTableTag = "BORDER=1"
    MyDb.dbSQL = "SELECT * FROM MAIN"
    MyDb.dbImageDir="images/"
    Mydb.dbNavigation="bottom"
    Mydb.dbNavigationIcon="std"
    Mydb.dbNavigationItem="top,bottom,prev,next,ad d,delete,update"
    Mydb.dbGridColSort = False
    MyDb.dbGridIndex = FALSE
    MyDb.dbMagicCell="0,,,index"
    Mydb.dbEditUpdateROFlds = "mls"
    Mydb.dbEditParams = "TableName=main,BookMarkFields=mls+address+cit y+state+zip"
    MyDb.dbStatusBar = True
    MyDb.ASPdbPro

    The grid displays perfectly, so i just need to find out what the EditBookmarksfld is...

  2. #2
    Frank Guest

    EditBookmarkFlds keyword cannot be blank for single/multiple RecordScope. (reply)

    Typo ->

    BookMarkFlds


    FK



    ------------
    Venom at 3/12/00 3:31:09 PM

    I get this error message when trying to update, add, or delete a record. This is my code:

    Set MyDb = Server.CreateObject("ASPdb.Pro&#34
    MyDb.dbDBType="Access"
    MyDb.dbDSN = "DBQ=" & Server.Mappath("homes.mdb&#34 & ";Driver={Microsoft Access Driver (*.mdb)};"
    MyDb.dbColor = "2,auto,silver"
    MyDb.dbMode = "both"
    MyDb.dbGridInc = 7
    MyDb.dbGridTableTag = "BORDER=1"
    MyDb.dbSQL = "SELECT * FROM MAIN"
    MyDb.dbImageDir="images/"
    Mydb.dbNavigation="bottom"
    Mydb.dbNavigationIcon="std"
    Mydb.dbNavigationItem="top,bottom,prev,next,ad d,delete,update"
    Mydb.dbGridColSort = False
    MyDb.dbGridIndex = FALSE
    MyDb.dbMagicCell="0,,,index"
    Mydb.dbEditUpdateROFlds = "mls"
    Mydb.dbEditParams = "TableName=main,BookMarkFields=mls+address+cit y+state+zip"
    MyDb.dbStatusBar = True
    MyDb.ASPdbPro

    The grid displays perfectly, so i just need to find out what the EditBookmarksfld is...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •