Records in form scroll out of view

Ask a Question related to Microsoft Access, Design and Development.

  1. #1

    Default Records in form scroll out of view

    This may be something simple, but I am having trouble when
    I enter records in a continuous rows form. The form only
    displays the top row as I enter the information, and the
    previous rows scroll out of view.

    When I use the wizard to design a simple form everything
    works as expected. New rows are added to the bottome of
    the screen and the list expands. My problem The problem
    seems to crop up when I compute fields within the record
    or add any VB code to manipulate the row information.
    This is important to figure out, so any help will be
    apprciated very much!
    Marty Suckstorff Guest

  2. Similar Questions and Discussions

    1. How do you get a list of records to scroll automaticallyinstead of page
      I have a set of records displayed in a list control. The list currently pages through the records and displays two records at a time. I want to...
    2. view records
      paul, this is working fine. but ... In the insert form i already have a submit button so can't have 2 submit button how can solved this in a...
    3. Scroll Row in Table into View?
      Check out this articles, this might help you. http://aspalliance.com/aldotnet/examples/dgautoscroll.aspx...
    4. View current records in web page - Newbie Question
      Hi All I have a small db version 5, that i am capturing data from a web page. I have it wrting to the db succesfully, but i am unable to view the...
    5. Getting a comma separated list of all records from a view.
      What I would like to do is add records from a view to a table based upon user input. What is making it hard is since I can't give an identity field...
  3. #2

    Default Re: Records in form scroll out of view

    Are you showing the form in dialog/popup format? If so, this is a typical
    behavior. One way to get around it is to not use popup/dialog mode. Another
    way is to put a subform on the form, and use the subform to display the
    continuous forms view data. That way you can select the height of the area
    (and thus the number of rows).

    --
    Ken Snell
    <MS ACCESS MVP>

    "Marty Suckstorff" <marttorff@msn.com> wrote in message
    news:070601c34a6e$7fb93cd0$a101280a@phx.gbl...
    > This may be something simple, but I am having trouble when
    > I enter records in a continuous rows form. The form only
    > displays the top row as I enter the information, and the
    > previous rows scroll out of view.
    >
    > When I use the wizard to design a simple form everything
    > works as expected. New rows are added to the bottome of
    > the screen and the list expands. My problem The problem
    > seems to crop up when I compute fields within the record
    > or add any VB code to manipulate the row information.
    > This is important to figure out, so any help will be
    > apprciated very much!

    Ken Snell Guest

  4. #3

    Default Re: Records in form scroll out of view

    On Mon, 14 Jul 2003 18:14:54 -0700, "Marty Suckstorff"
    <marttorff@msn.com> wrote:
    >This may be something simple, but I am having trouble when
    >I enter records in a continuous rows form. The form only
    >displays the top row as I enter the information, and the
    >previous rows scroll out of view.
    Check to be sure that the DataEntry property of the form is False.

    John W. Vinson[MVP]
    Come for live chats every Tuesday and Thursday
    [url]http://go.compuserve.com/msdevapps?loc=us&access=public[/url]
    John Vinson 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