Show memofield in seperate form

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Show memofield in seperate form

    Hi all,

    I have a asp-page that shows all data from one record in my database.
    Every record also has a memo-field but since there's so much text in
    it I wanted to have a button on my form that will open a seperate form
    containing the memo-field. So a user can always decide if he wants to
    view the memo or not.

    In my SQL I use WHERE name= 'name'"
    Do I need that as well to show the memofield in a seperate form?

    Regards,

    MArco
    The Netherlands :-)
    Krechting Guest

  2. Similar Questions and Discussions

    1. how do I trigger an xml_Connector in a seperate form
      I have a movie clip called category_mc within this movie clip upon an event I want to trigger a xml_connector called mlsarea_xml. the main...
    2. Show a DXF file on a form
      "Martin" <martin4nospam@yahoo.co.uk> wrote in message news:<0c0101c3505b$10b41830$a401280a@phx.gbl>... Our MetaDraw component can be used within...
    3. Storing ASP code in a Access mdb memofield and insert it in a asp-page
      "Chris Hohmann" <hohmannATyahooDOTcom> schreef in bericht news:eStRtmfPDHA.2480@tk2msftngp13.phx.gbl...
    4. Show only form to user
      If you just want to hide the database window... Tools | StartUp Uncheck the 'Display Database Window' box. When you want to see the database...
    5. new records will not show up in form
      I have created a form using a query and I want to add new records, and I want them to show up in the form. However, when I add new records they...
  3. #2

    Default Re: Show memofield in seperate form

    "Krechting" <m.krechting@chello.nl> wrote in message
    news:a71c776d.0312260359.42222591@posting.google.c om...
    > Hi all,
    >
    > I have a asp-page that shows all data from one record in my database.
    > Every record also has a memo-field but since there's so much text in
    > it I wanted to have a button on my form that will open a seperate form
    > containing the memo-field. So a user can always decide if he wants to
    > view the memo or not.
    >
    > In my SQL I use WHERE name= 'name'"
    > Do I need that as well to show the memofield in a seperate form?
    >
    > Regards,
    >
    > MArco
    > The Netherlands :-)

    If "name" is a uniwue key to the table the contains "memofield" then yes.


    Have you thought of displaying "memofield" inside a <textarea>?

    It shouldn't take much screen real estate;
    the user can scroll to see all of the data; and
    the user won't have to swicth pages to see related data.


    McKirahan Guest

  4. #3

    Default Re: Show memofield in seperate form

    And for reference here is an example using a textarea:

    <textarea name="CustNote" cols="35" rows="2" wrap="virtual"><%= CustNote
    %></textarea>

    Best regards,
    J. Paul Schmidt, Freelance ASP Web Developer
    [url]http://www.Bullschmidt.com[/url]
    ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Bullschmidt Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139