Little question about forms

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

  1. #1

    Default Little question about forms

    I'm making a database at home. I take care of my forms, to fit them on the
    screen i.e. when the form is maximised, the information on it (lists,
    subforms, buttons etc) fills up the form.
    On my work, the users have a bigger resolution on their sreens. Because of
    that, there is an empty place on the form.
    Is there a way to make automatically that the form is always filled
    complete?


    Thanks
    Johan


    Johan Guest

  2. Similar Questions and Discussions

    1. forms question
      Hi, I have a form with some fields and a submit button. The submit button posts the results to itself, which are then processed. I have 2...
    2. question about forms
      I have run into a few problems when creating an interactive form in acrobat 7 pro. 1. Calculation fields don't seem to add up totals right away....
    3. question about flash forms
      Hi All, Am fairly new to flash and need to re-code a HTML domain name checking form, to a Flash based version. Can anyone help? This is the...
    4. Forms Authentication Question
      Everything is working in my authentication process except for the fact that I can't retrieve the "UserData" property from the...
    5. asp.net FORMS authentication question
      hi all with forms authentication, how does that work for a site with introduction and tour or maybe some more pages? by using forms...
  3. #2

    Default Re: Little question about forms

    the same as you would do it from within VB, create all the controls and set
    their size and position dependant on the form's size
    for example for control1:

    control1.width = ((form.width / number of controls) -300)
    and
    control1.top = ((abovecontrol.top + control1.height) + 250)
    and control1.left = ((form.left + mostleftcontrol +
    allinbetweencontrols.width) + 200

    this way you could make a form completely dynamic resizable but offcourse
    this is a lot of work (cq typing in code)

    bon chance
    "Johan" <johan.tallieu@pandora.be> wrote in message
    news:j2tSa.22174$F92.2265@afrodite.telenet-ops.be...
    > I'm making a database at home. I take care of my forms, to fit them on the
    > screen i.e. when the form is maximised, the information on it (lists,
    > subforms, buttons etc) fills up the form.
    > On my work, the users have a bigger resolution on their sreens. Because of
    > that, there is an empty place on the form.
    > Is there a way to make automatically that the form is always filled
    > complete?
    >
    >
    > Thanks
    > Johan
    >
    >

    chriske911 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