Making all fields from all records display at one time

Ask a Question related to FileMaker, Design and Development.

  1. #1

    Default Making all fields from all records display at one time

    What I'd like to do is, after inputing data into 2 or more records, is
    have a button you can click on that will display all the fields from all
    the populated records in one scrolling window. The user has to be able
    to copy the text that appears in that window to paste in another program.

    Is this possible? Thanks in advance!
    bxb11 Guest

  2. Similar Questions and Discussions

    1. Making list out of XML file with multiple records
      We are trying to find out a way to solve the following issue, and was wondering if there are ways to do this in Indesign CS: We have an XML file...
    2. Making image fields into a link
      Hello All, I have an image field that I want to make it into a link. The problem is that the Hotspot properties is not shown. Does anyone know...
    3. How to display records from todays date and specifiec time of the day
      Hi all any idea how to display specific record on current date and time of the day ... i did managed to display it for the date and drop it on...
    4. Every time i try to display records on an include page i get repeats of the whole include
      hi guys and ladies, here is my problem and i would be most grateful if any one could shed some light on this please: i have a default.asp page...
    5. datakeyfield and 3 fields making up the PK
      hi In my database I have a table in which 3 fields make up the primary key. I use a datagrid to add, edit/update and delete entries of that table....
  3. #2

    Default Re: Making all fields from all records display at one time

    Your user probably doesn't need to see the big list of al lrecords and
    all fields. You can automate it:

    Create a 'columnar list/report' type of layout (using FMP's built-in
    layout wizard, put all your fields on it and call it 'All Fields'.

    Now, back on your user layout add a button that runs the following script:

    Freeze Window
    Show All Records
    Sort[Restore, No Dialog]
    GoTo Layout [All Fields]
    Copy All Records
    GoTo Layout [Original Layout]
    # And then to go back to the last record created...
    Unsort
    Goto Record [Last]

    The record data is now on theclipboard. The user can go over to the
    other app and paste.


    bxb11 wrote:
    > What I'd like to do is, after inputing data into 2 or more records, is
    > have a button you can click on that will display all the fields from all
    > the populated records in one scrolling window. The user has to be able
    > to copy the text that appears in that window to paste in another program.
    >
    > Is this possible? Thanks in advance!
    --
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Howard Schlossberg (818) 883-2846
    FM Pro Solutions Los Angeles, California
    Associate Member, FileMaker Solutions Alliance

    Howard Schlossberg 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