Results 1 to 2 of 2

Thread: Help with editing memo field

  1. #1
    Indra Guest

    Help with editing memo field


    I am trying to add memo field as editable and keep getting this error:

    "Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. "




  2. #2
    John Guest

    Help with editing memo field (reply)


    Hi Indra,

    Must be something with your field names, types, etc. Here's my std. Northwind test file that works with the memo field "Notes". Try it out. Make your code match, or whittle it down to these few lines to find the problem.

    Thanks,
    John


    <%
    Set X= Server.CreateObject(&#34;ASP.DB&#34
    X.dbUnit = &#34;999&#34;
    X.dbEditFlds = &#34;(;,[]|~)LastName, FirstName, Notes&#34;
    X.dbEditParams = &#34;(;,)TableName=Employees, BookMarkFlds=EmployeeID&#34;
    X.dbFormDisplayFlds = &#34;-1&#34;
    X.dbFormMemo = &#34;10 x 50,Notes&#34;
    X.dbGridDisplayFlds = &#34;EmployeeID, LastName, FirstName&#34;
    X.dbDSN = &#34;DSN=nwind&#34;
    X.dbNavigationItem = &#34;Top,Prev,Next,Bottom,Edit,Update,Delete,Add&# 34;
    X.dbSQL = &#34;SELECT EmployeeID,LastName,FirstName,Notes FROM Employees&#34;
    X.ASPdb
    %>


    ------------
    Indra at 2/26/2002 8:24:59 PM


    I am trying to add memo field as editable and keep getting this error:

    &#34;Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. &#34;




Posting Permissions

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