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

  1. #1

    Default Simple Commands

    Hello,

    1. How do I determine the number of records in a query I
    perform in a textbox on one form that has a subform (the
    subform is the form i want the # of records)

    2. How do I make a command button to click on a button to
    open a new form that sends variables over. Ie: click on a
    record and it opens a new form that gives all the details.

    Thanks in advance,

    Melissa
    Melissa Guest

  2. Similar Questions and Discussions

    1. Need Simple Answer to Simple Contribute/Firefox question
      Hello all; I've tried the Adobe help in CS3, tech support, phone support, this forum, other forums, Mozilla, and nowhere can I get a straight...
    2. ssi commands in DW
      :confused; I'm a newbee trying to take over a Web site that just sort of grew over the years with sucession of developers. First, it works! ...
    3. Key commands
      I have very much utilized InDesigns ability to customize key commands (mine pretty much mimic Quarks since I'm already familiar with them) but I...
    4. Commands under FW MX 2004
      Hello, Something puzzled me in FW MX 2004 is the extension management. According to the Extension Manager I have lots of Extensions installed but...
    5. Linux commands
      I am new to Linux, just installed Debian 3.0r1 to and including the basic setup. The OS appears in text mode, and I could not get further than...
  3. #2

    Default RE: Simple Commands

    Melissa,

    1. How do I determine the number of records in a query I
    perform in a textbox on one form that has a subform (the
    subform is the form i want the # of records)
    >> use me.recordsetclone.recordcount
    2. How do I make a command button to click on a button to
    open a new form that sends variables over. Ie: click on a
    record and it opens a new form that gives all the details.
    >> in the onclick event of the after the docmd.openform
    command you can assign values to text fields on the newly
    opened form.
    Example:
    Docmd.OpenForm "myForm"
    Forms!myForm!myText1 = me.Text1 'Where me if the
    current form

    - - -Dean


    Dean 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