Results 1 to 4 of 4

Thread: Error 800a0bcd

  1. #1
    Allan Guest

    Error 800a0bcd


    Hello,
    I have went thru several messages from Igor and Frank and wondering if I have an old version? Currently I have Version: 6.2916 - Pro . In message from "Igor Soyfer 2/9/99 9:10:01 AM" Frank mentioned getting ver. 1314f Since my version is 6.2916 I am asuming it is newer so.... do I think it is a problem with my code. So here it is.


    Set MyDb = Server.CreateObject("ASPdb.Pro&#34
    MyDb.dbDSN="joeandal"
    MyDb.dbUnit = 203

    F = Request("tbl&#34
    If F <> &#34;&#34; then
    If Request(&#34;tbl&#34 <> &#34;&#34; then Session(&#34;savedtbl&#34 = Request(&#34;tbl&#34
    If Request(&#34;state&#34 <> &#34;&#34; then Session(&#34;savedstate&#34 = Request(&#34;state&#34
    If Request(&#34;county&#34 <> &#34;&#34; then Session(&#34;savedcounty&#34 = Request(&#34;county&#34
    If Request(&#34;propertiessale&#34 <> &#34;&#34; then Session(&#34;savedpropertiessale&#34 = Request(&#34;propertiessale&#34
    If Request(&#34;propertiesrent&#34 <> &#34;&#34; then Session(&#34;savedpropertiesrent&#34 = Request(&#34;propertiesrent&#34
    MyDb.dbReset(203) &#39;Clear after you save your variables
    End If

    r=&#34;&#39;&#34;
    If Session(&#34;savedpropertiessale&#34 <> &#34;&#34; then
    SQ = &#34;Select * FROM company WHERE [properties/sale]=&#34; & r & Session(&#34;savedpropertiessale&#34 & r & &#34;and approved = Yes&#34;
    Response.write &#34;All listings for &#34; & Session(&#34;savedpropertiessale&#34 & &#34;<BR>&#34;
    Session(&#34;savedpropertiessale&#34 = &#34;&#34;
    else
    If Session(&#34;savedpropertiesrent&#34 <> &#34;&#34; then
    SQ = &#34;Select * FROM company WHERE [properties/rent]=&#34; & r & Session(&#34;savedpropertiesrent&#34 & r & &#34;and approved = Yes&#34;
    Response.write &#34;All listings for &#34; & Session(&#34;savedpropertiesrent&#34 & &#34;<BR>&#34;
    Session(&#34;savedpropertiesrent&#34 = &#34;&#34;
    else
    &#39; SQ = &#34;Select * FROM &#34; & Session(&#34;savedtbl&#34 & &#34; WHERE state=&#34; & r & Session(&#34;savedstate&#34 & r & &#34;and approved = Yes and county=&#34; & r & Session(&#34;savedcounty&#34 & r & &#34; Order by City&#34;
    SQ = &#34;Select * FROM company WHERE state=&#34; & r & Session(&#34;savedstate&#34 & r & &#34;and approved = Yes and county=&#34; & r & Session(&#34;savedcounty&#34 & r & &#34; Order by City&#34;
    end if
    end if

    Mydb.dbSQL = SQ
    response.write SQ

    MyDb.dbMode=&#34;dual-horiz&#34;
    MyDb.dbColor = &#34;White,Blue,LightSkyBlue,Blue&#34;
    MyDb.dbGridTableTag = &#34;BORDER=1&#34;
    MyDb.dbGridDisplayFlds = &#34;2,11,13&#34;
    &#39;MyDb.dbMagicCell = &#34;Price,align=right,format=[currency];email,,<A HREF=&#34;&#34;mailto:#email#&#34;&#34;>#email#;pi cture,,<A HREF=../aia/images/#picture#><IMG SRC=../aia/images/#picture# width=80 height=50 border=0></A>&#34;
    MC = &#34;URL,,<A HREF=&#34;&#34;#URL#&#34;&#34;>#URL#;photo,,<A HREF=images/#photo#><IMG SRC=images/#photo# width=80 height=50 border=0></A>;email,,<A HREF=&#34;&#34;mailto:#email#&#34;&#34;>#email#;Pr ice,align=right,format=[currency]&#34;
    &#39;MC = MC & &#34;;customerid,,<A HREF=&#34;&#34;detailp.asp?tbl=company&state=&#34; & Session(&#34;savedstate&#34 & &#34;&county=&#34; & Session(&#34;savedcounty&#34 & &#34;&customerid=#customerid#&#34;&#34;>#customeri d#&#34;
    MC = MC & &#34;;properties/sale,,<A HREF=&#34;&#34;detailp.asp?tbl=homes&#34;& &#34;&agentfirm=#properties/sale#&#34;&#34;>#properties/sale#&#34;
    MC = MC & &#34;;properties/rent,,<A HREF=&#34;&#34;detailr.asp?tbl=rentals&#34;& &#34;&customerid=#properties/rent#&#34;&#34;>#properties/rent#&#34;
    &#39;county,,<A HREF=&#34;&#34;detailp.asp?tbl=&#34; & Session(&#34;savedtbl&#34 & &#34;&state=&#34; & Session(&#34;savedstate&#34 & &#34;&county=#county#&#34;&#34;>#county# MyDb.dbFormDisplayFlds = &#34;1,2,3,4&#34;
    MyDb.dbMagicCell = MC
    MyDb.dbFormMemo = &#34;8,9&#34;
    MyDb.dbMemoTextSize = -1
    MyDb.dbFormDisplayFlds = &#34;0,1,2,3,4,5,6,7,10,11,12,13,14,15,16,17,18,19 ,20,21,22,23&#34;
    &#39;MyDb.dbFormMemo=&#34;Description&#34; &#39;Show the memo field below the Form
    MyDb.dbNavigationItem = &#34;top,prev,next,bottom,reload&#34;
    &#39;MyDb.dbFilterFlds = &#34;1,2,3,4&#34;
    &#39;MyDb.dbFilterParams = &#34;Help=False&#34;
    &#39;MyDb.dbFilterDropFlds=&#34;3,,Employees,Title ,,,,,Distinct; 4,,Employees,TitleOfCourtesy,,,,,Distinct; City,,Employees,City,,,,,Distinct; Country,,Employees,Country,,,,,Distinct&#34;
    &#39;MyDb.dbCSVName = &#34;myFile.csv&#34;
    &#39;Response.write(&#34;Version: &#34; & Mydb.dbVersion & &#34;<P>&#34

    MyDb.ASPdbPro


    Thanks for your help

    Allan

  2. #2
    Frank Kwong Guest

    Error 800a0bcd (reply)


    Your code -> &#34;MyDb.ASPdbPro&#34; indicates it is an old version. Please contact your sale agent to obtain the latest. If you then still have the problem then we can start the debugging process.


    FK


    ------------
    Allan at 7/9/01 12:35:10 PM


    Hello,
    I have went thru several messages from Igor and Frank and wondering if I have an old version? Currently I have Version: 6.2916 - Pro . In message from &#34;Igor Soyfer 2/9/99 9:10:01 AM&#34; Frank mentioned getting ver. 1314f Since my version is 6.2916 I am asuming it is newer so.... do I think it is a problem with my code. So here it is.


    Set MyDb = Server.CreateObject(&#34;ASPdb.Pro&#34
    MyDb.dbDSN=&#34;joeandal&#34;
    MyDb.dbUnit = 203

    F = Request(&#34;tbl&#34
    If F <> &#34;&#34; then
    If Request(&#34;tbl&#34 <> &#34;&#34; then Session(&#34;savedtbl&#34 = Request(&#34;tbl&#34
    If Request(&#34;state&#34 <> &#34;&#34; then Session(&#34;savedstate&#34 = Request(&#34;state&#34
    If Request(&#34;county&#34 <> &#34;&#34; then Session(&#34;savedcounty&#34 = Request(&#34;county&#34
    If Request(&#34;propertiessale&#34 <> &#34;&#34; then Session(&#34;savedpropertiessale&#34 = Request(&#34;propertiessale&#34
    If Request(&#34;propertiesrent&#34 <> &#34;&#34; then Session(&#34;savedpropertiesrent&#34 = Request(&#34;propertiesrent&#34
    MyDb.dbReset(203) &#39;Clear after you save your variables
    End If

    r=&#34;&#39;&#34;
    If Session(&#34;savedpropertiessale&#34 <> &#34;&#34; then
    SQ = &#34;Select * FROM company WHERE [properties/sale]=&#34; & r & Session(&#34;savedpropertiessale&#34 & r & &#34;and approved = Yes&#34;
    Response.write &#34;All listings for &#34; & Session(&#34;savedpropertiessale&#34 & &#34;<BR>&#34;
    Session(&#34;savedpropertiessale&#34 = &#34;&#34;
    else
    If Session(&#34;savedpropertiesrent&#34 <> &#34;&#34; then
    SQ = &#34;Select * FROM company WHERE [properties/rent]=&#34; & r & Session(&#34;savedpropertiesrent&#34 & r & &#34;and approved = Yes&#34;
    Response.write &#34;All listings for &#34; & Session(&#34;savedpropertiesrent&#34 & &#34;<BR>&#34;
    Session(&#34;savedpropertiesrent&#34 = &#34;&#34;
    else
    &#39; SQ = &#34;Select * FROM &#34; & Session(&#34;savedtbl&#34 & &#34; WHERE state=&#34; & r & Session(&#34;savedstate&#34 & r & &#34;and approved = Yes and county=&#34; & r & Session(&#34;savedcounty&#34 & r & &#34; Order by City&#34;
    SQ = &#34;Select * FROM company WHERE state=&#34; & r & Session(&#34;savedstate&#34 & r & &#34;and approved = Yes and county=&#34; & r & Session(&#34;savedcounty&#34 & r & &#34; Order by City&#34;
    end if
    end if

    Mydb.dbSQL = SQ
    response.write SQ

    MyDb.dbMode=&#34;dual-horiz&#34;
    MyDb.dbColor = &#34;White,Blue,LightSkyBlue,Blue&#34;
    MyDb.dbGridTableTag = &#34;BORDER=1&#34;
    MyDb.dbGridDisplayFlds = &#34;2,11,13&#34;
    &#39;MyDb.dbMagicCell = &#34;Price,align=right,format=[currency];email,,<A HREF=&#34;&#34;mailto:#email#&#34;&#34;>#email#;pi cture,,<A HREF=../aia/images/#picture#><IMG SRC=../aia/images/#picture# width=80 height=50 border=0></A>&#34;
    MC = &#34;URL,,<A HREF=&#34;&#34;#URL#&#34;&#34;>#URL#;photo,,<A HREF=images/#photo#><IMG SRC=images/#photo# width=80 height=50 border=0></A>;email,,<A HREF=&#34;&#34;mailto:#email#&#34;&#34;>#email#;Pr ice,align=right,format=[currency]&#34;
    &#39;MC = MC & &#34;;customerid,,<A HREF=&#34;&#34;detailp.asp?tbl=company&state=&#34; & Session(&#34;savedstate&#34 & &#34;&county=&#34; & Session(&#34;savedcounty&#34 & &#34;&customerid=#customerid#&#34;&#34;>#customeri d#&#34;
    MC = MC & &#34;;properties/sale,,<A HREF=&#34;&#34;detailp.asp?tbl=homes&#34;& &#34;&agentfirm=#properties/sale#&#34;&#34;>#properties/sale#&#34;
    MC = MC & &#34;;properties/rent,,<A HREF=&#34;&#34;detailr.asp?tbl=rentals&#34;& &#34;&customerid=#properties/rent#&#34;&#34;>#properties/rent#&#34;
    &#39;county,,<A HREF=&#34;&#34;detailp.asp?tbl=&#34; & Session(&#34;savedtbl&#34 & &#34;&state=&#34; & Session(&#34;savedstate&#34 & &#34;&county=#county#&#34;&#34;>#county# MyDb.dbFormDisplayFlds = &#34;1,2,3,4&#34;
    MyDb.dbMagicCell = MC
    MyDb.dbFormMemo = &#34;8,9&#34;
    MyDb.dbMemoTextSize = -1
    MyDb.dbFormDisplayFlds = &#34;0,1,2,3,4,5,6,7,10,11,12,13,14,15,16,17,18,19 ,20,21,22,23&#34;
    &#39;MyDb.dbFormMemo=&#34;Description&#34; &#39;Show the memo field below the Form
    MyDb.dbNavigationItem = &#34;top,prev,next,bottom,reload&#34;
    &#39;MyDb.dbFilterFlds = &#34;1,2,3,4&#34;
    &#39;MyDb.dbFilterParams = &#34;Help=False&#34;
    &#39;MyDb.dbFilterDropFlds=&#34;3,,Employees,Title ,,,,,Distinct; 4,,Employees,TitleOfCourtesy,,,,,Distinct; City,,Employees,City,,,,,Distinct; Country,,Employees,Country,,,,,Distinct&#34;
    &#39;MyDb.dbCSVName = &#34;myFile.csv&#34;
    &#39;Response.write(&#34;Version: &#34; & Mydb.dbVersion & &#34;<P>&#34

    MyDb.ASPdbPro


    Thanks for your help

    Allan

  3. #3
    Allan Guest

    Error 800a0bcd (reply)

    Thanks for the reply. What version is ASPDB PRO up to?

    Allan


    ------------
    Frank Kwong at 7/9/01 8:02:57 PM


    Your code -> &#34;MyDb.ASPdbPro&#34; indicates it is an old version. Please contact your sale agent to obtain the latest. If you then still have the problem then we can start the debugging process.


    FK


    ------------
    Allan at 7/9/01 12:35:10 PM


    Hello,
    I have went thru several messages from Igor and Frank and wondering if I have an old version? Currently I have Version: 6.2916 - Pro . In message from &#34;Igor Soyfer 2/9/99 9:10:01 AM&#34; Frank mentioned getting ver. 1314f Since my version is 6.2916 I am asuming it is newer so.... do I think it is a problem with my code. So here it is.


    Set MyDb = Server.CreateObject(&#34;ASPdb.Pro&#34
    MyDb.dbDSN=&#34;joeandal&#34;
    MyDb.dbUnit = 203

    F = Request(&#34;tbl&#34
    If F <> &#34;&#34; then
    If Request(&#34;tbl&#34 <> &#34;&#34; then Session(&#34;savedtbl&#34 = Request(&#34;tbl&#34
    If Request(&#34;state&#34 <> &#34;&#34; then Session(&#34;savedstate&#34 = Request(&#34;state&#34
    If Request(&#34;county&#34 <> &#34;&#34; then Session(&#34;savedcounty&#34 = Request(&#34;county&#34
    If Request(&#34;propertiessale&#34 <> &#34;&#34; then Session(&#34;savedpropertiessale&#34 = Request(&#34;propertiessale&#34
    If Request(&#34;propertiesrent&#34 <> &#34;&#34; then Session(&#34;savedpropertiesrent&#34 = Request(&#34;propertiesrent&#34
    MyDb.dbReset(203) &#39;Clear after you save your variables
    End If

    r=&#34;&#39;&#34;
    If Session(&#34;savedpropertiessale&#34 <> &#34;&#34; then
    SQ = &#34;Select * FROM company WHERE [properties/sale]=&#34; & r & Session(&#34;savedpropertiessale&#34 & r & &#34;and approved = Yes&#34;
    Response.write &#34;All listings for &#34; & Session(&#34;savedpropertiessale&#34 & &#34;<BR>&#34;
    Session(&#34;savedpropertiessale&#34 = &#34;&#34;
    else
    If Session(&#34;savedpropertiesrent&#34 <> &#34;&#34; then
    SQ = &#34;Select * FROM company WHERE [properties/rent]=&#34; & r & Session(&#34;savedpropertiesrent&#34 & r & &#34;and approved = Yes&#34;
    Response.write &#34;All listings for &#34; & Session(&#34;savedpropertiesrent&#34 & &#34;<BR>&#34;
    Session(&#34;savedpropertiesrent&#34 = &#34;&#34;
    else
    &#39; SQ = &#34;Select * FROM &#34; & Session(&#34;savedtbl&#34 & &#34; WHERE state=&#34; & r & Session(&#34;savedstate&#34 & r & &#34;and approved = Yes and county=&#34; & r & Session(&#34;savedcounty&#34 & r & &#34; Order by City&#34;
    SQ = &#34;Select * FROM company WHERE state=&#34; & r & Session(&#34;savedstate&#34 & r & &#34;and approved = Yes and county=&#34; & r & Session(&#34;savedcounty&#34 & r & &#34; Order by City&#34;
    end if
    end if

    Mydb.dbSQL = SQ
    response.write SQ

    MyDb.dbMode=&#34;dual-horiz&#34;
    MyDb.dbColor = &#34;White,Blue,LightSkyBlue,Blue&#34;
    MyDb.dbGridTableTag = &#34;BORDER=1&#34;
    MyDb.dbGridDisplayFlds = &#34;2,11,13&#34;
    &#39;MyDb.dbMagicCell = &#34;Price,align=right,format=[currency];email,,<A HREF=&#34;&#34;mailto:#email#&#34;&#34;>#email#;pi cture,,<A HREF=../aia/images/#picture#><IMG SRC=../aia/images/#picture# width=80 height=50 border=0></A>&#34;
    MC = &#34;URL,,<A HREF=&#34;&#34;#URL#&#34;&#34;>#URL#;photo,,<A HREF=images/#photo#><IMG SRC=images/#photo# width=80 height=50 border=0></A>;email,,<A HREF=&#34;&#34;mailto:#email#&#34;&#34;>#email#;Pr ice,align=right,format=[currency]&#34;
    &#39;MC = MC & &#34;;customerid,,<A HREF=&#34;&#34;detailp.asp?tbl=company&state=&#34; & Session(&#34;savedstate&#34 & &#34;&county=&#34; & Session(&#34;savedcounty&#34 & &#34;&customerid=#customerid#&#34;&#34;>#customeri d#&#34;
    MC = MC & &#34;;properties/sale,,<A HREF=&#34;&#34;detailp.asp?tbl=homes&#34;& &#34;&agentfirm=#properties/sale#&#34;&#34;>#properties/sale#&#34;
    MC = MC & &#34;;properties/rent,,<A HREF=&#34;&#34;detailr.asp?tbl=rentals&#34;& &#34;&customerid=#properties/rent#&#34;&#34;>#properties/rent#&#34;
    &#39;county,,<A HREF=&#34;&#34;detailp.asp?tbl=&#34; & Session(&#34;savedtbl&#34 & &#34;&state=&#34; & Session(&#34;savedstate&#34 & &#34;&county=#county#&#34;&#34;>#county# MyDb.dbFormDisplayFlds = &#34;1,2,3,4&#34;
    MyDb.dbMagicCell = MC
    MyDb.dbFormMemo = &#34;8,9&#34;
    MyDb.dbMemoTextSize = -1
    MyDb.dbFormDisplayFlds = &#34;0,1,2,3,4,5,6,7,10,11,12,13,14,15,16,17,18,19 ,20,21,22,23&#34;
    &#39;MyDb.dbFormMemo=&#34;Description&#34; &#39;Show the memo field below the Form
    MyDb.dbNavigationItem = &#34;top,prev,next,bottom,reload&#34;
    &#39;MyDb.dbFilterFlds = &#34;1,2,3,4&#34;
    &#39;MyDb.dbFilterParams = &#34;Help=False&#34;
    &#39;MyDb.dbFilterDropFlds=&#34;3,,Employees,Title ,,,,,Distinct; 4,,Employees,TitleOfCourtesy,,,,,Distinct; City,,Employees,City,,,,,Distinct; Country,,Employees,Country,,,,,Distinct&#34;
    &#39;MyDb.dbCSVName = &#34;myFile.csv&#34;
    &#39;Response.write(&#34;Version: &#34; & Mydb.dbVersion & &#34;<P>&#34

    MyDb.ASPdbPro


    Thanks for your help

    Allan

  4. #4
    Frank Kwong Guest

    Error 800a0bcd (reply)

    The latest has ASP.db and X.ASPDB. Version is up to July 2001.

    FK


    ------------
    Allan at 7/10/01 10:48:54 AM

    Thanks for the reply. What version is ASPDB PRO up to?

    Allan


    ------------
    Frank Kwong at 7/9/01 8:02:57 PM


    Your code -> &#34;MyDb.ASPdbPro&#34; indicates it is an old version. Please contact your sale agent to obtain the latest. If you then still have the problem then we can start the debugging process.


    FK


    ------------
    Allan at 7/9/01 12:35:10 PM


    Hello,
    I have went thru several messages from Igor and Frank and wondering if I have an old version? Currently I have Version: 6.2916 - Pro . In message from &#34;Igor Soyfer 2/9/99 9:10:01 AM&#34; Frank mentioned getting ver. 1314f Since my version is 6.2916 I am asuming it is newer so.... do I think it is a problem with my code. So here it is.


    Set MyDb = Server.CreateObject(&#34;ASPdb.Pro&#34
    MyDb.dbDSN=&#34;joeandal&#34;
    MyDb.dbUnit = 203

    F = Request(&#34;tbl&#34
    If F <> &#34;&#34; then
    If Request(&#34;tbl&#34 <> &#34;&#34; then Session(&#34;savedtbl&#34 = Request(&#34;tbl&#34
    If Request(&#34;state&#34 <> &#34;&#34; then Session(&#34;savedstate&#34 = Request(&#34;state&#34
    If Request(&#34;county&#34 <> &#34;&#34; then Session(&#34;savedcounty&#34 = Request(&#34;county&#34
    If Request(&#34;propertiessale&#34 <> &#34;&#34; then Session(&#34;savedpropertiessale&#34 = Request(&#34;propertiessale&#34
    If Request(&#34;propertiesrent&#34 <> &#34;&#34; then Session(&#34;savedpropertiesrent&#34 = Request(&#34;propertiesrent&#34
    MyDb.dbReset(203) &#39;Clear after you save your variables
    End If

    r=&#34;&#39;&#34;
    If Session(&#34;savedpropertiessale&#34 <> &#34;&#34; then
    SQ = &#34;Select * FROM company WHERE [properties/sale]=&#34; & r & Session(&#34;savedpropertiessale&#34 & r & &#34;and approved = Yes&#34;
    Response.write &#34;All listings for &#34; & Session(&#34;savedpropertiessale&#34 & &#34;<BR>&#34;
    Session(&#34;savedpropertiessale&#34 = &#34;&#34;
    else
    If Session(&#34;savedpropertiesrent&#34 <> &#34;&#34; then
    SQ = &#34;Select * FROM company WHERE [properties/rent]=&#34; & r & Session(&#34;savedpropertiesrent&#34 & r & &#34;and approved = Yes&#34;
    Response.write &#34;All listings for &#34; & Session(&#34;savedpropertiesrent&#34 & &#34;<BR>&#34;
    Session(&#34;savedpropertiesrent&#34 = &#34;&#34;
    else
    &#39; SQ = &#34;Select * FROM &#34; & Session(&#34;savedtbl&#34 & &#34; WHERE state=&#34; & r & Session(&#34;savedstate&#34 & r & &#34;and approved = Yes and county=&#34; & r & Session(&#34;savedcounty&#34 & r & &#34; Order by City&#34;
    SQ = &#34;Select * FROM company WHERE state=&#34; & r & Session(&#34;savedstate&#34 & r & &#34;and approved = Yes and county=&#34; & r & Session(&#34;savedcounty&#34 & r & &#34; Order by City&#34;
    end if
    end if

    Mydb.dbSQL = SQ
    response.write SQ

    MyDb.dbMode=&#34;dual-horiz&#34;
    MyDb.dbColor = &#34;White,Blue,LightSkyBlue,Blue&#34;
    MyDb.dbGridTableTag = &#34;BORDER=1&#34;
    MyDb.dbGridDisplayFlds = &#34;2,11,13&#34;
    &#39;MyDb.dbMagicCell = &#34;Price,align=right,format=[currency];email,,<A HREF=&#34;&#34;mailto:#email#&#34;&#34;>#email#;pi cture,,<A HREF=../aia/images/#picture#><IMG SRC=../aia/images/#picture# width=80 height=50 border=0></A>&#34;
    MC = &#34;URL,,<A HREF=&#34;&#34;#URL#&#34;&#34;>#URL#;photo,,<A HREF=images/#photo#><IMG SRC=images/#photo# width=80 height=50 border=0></A>;email,,<A HREF=&#34;&#34;mailto:#email#&#34;&#34;>#email#;Pr ice,align=right,format=[currency]&#34;
    &#39;MC = MC & &#34;;customerid,,<A HREF=&#34;&#34;detailp.asp?tbl=company&state=&#34; & Session(&#34;savedstate&#34 & &#34;&county=&#34; & Session(&#34;savedcounty&#34 & &#34;&customerid=#customerid#&#34;&#34;>#customeri d#&#34;
    MC = MC & &#34;;properties/sale,,<A HREF=&#34;&#34;detailp.asp?tbl=homes&#34;& &#34;&agentfirm=#properties/sale#&#34;&#34;>#properties/sale#&#34;
    MC = MC & &#34;;properties/rent,,<A HREF=&#34;&#34;detailr.asp?tbl=rentals&#34;& &#34;&customerid=#properties/rent#&#34;&#34;>#properties/rent#&#34;
    &#39;county,,<A HREF=&#34;&#34;detailp.asp?tbl=&#34; & Session(&#34;savedtbl&#34 & &#34;&state=&#34; & Session(&#34;savedstate&#34 & &#34;&county=#county#&#34;&#34;>#county# MyDb.dbFormDisplayFlds = &#34;1,2,3,4&#34;
    MyDb.dbMagicCell = MC
    MyDb.dbFormMemo = &#34;8,9&#34;
    MyDb.dbMemoTextSize = -1
    MyDb.dbFormDisplayFlds = &#34;0,1,2,3,4,5,6,7,10,11,12,13,14,15,16,17,18,19 ,20,21,22,23&#34;
    &#39;MyDb.dbFormMemo=&#34;Description&#34; &#39;Show the memo field below the Form
    MyDb.dbNavigationItem = &#34;top,prev,next,bottom,reload&#34;
    &#39;MyDb.dbFilterFlds = &#34;1,2,3,4&#34;
    &#39;MyDb.dbFilterParams = &#34;Help=False&#34;
    &#39;MyDb.dbFilterDropFlds=&#34;3,,Employees,Title ,,,,,Distinct; 4,,Employees,TitleOfCourtesy,,,,,Distinct; City,,Employees,City,,,,,Distinct; Country,,Employees,Country,,,,,Distinct&#34;
    &#39;MyDb.dbCSVName = &#34;myFile.csv&#34;
    &#39;Response.write(&#34;Version: &#34; & Mydb.dbVersion & &#34;<P>&#34

    MyDb.ASPdbPro


    Thanks for your help

    Allan

Posting Permissions

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