about data source???

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

  1. #1

    Default about data source???

    I have an access database developed. I have added a new
    table to link to the original developed table. Then I want
    to change my original form and add a new bounded text
    control field so that I can edit data in the new form.
    I need to change the data source for the form in order to
    add the new field but if so I will miss my origial data
    source. Is that I need to create another query and use
    this as the data source. But if so, my original data will
    all be lost?? How can I solve the problem??????
    jims Guest

  2. Similar Questions and Discussions

    1. XML Data Source
      I am thinking of creating an online application using an XML file as it's primary data source. The XML file on the web server will be refreshed via...
    2. Transfering data from outside source
      Not sure if this is the right forum for this but, I have a client that wants his groups data to transfer over from his site on to hidden fields on...
    3. Data Source Not Found
      I'm drawing a blank on this...hope someone can help. I'm quite accustomed to working on local CF & dB servers, but now have my personal site on a...
    4. Data source name too long (asp)
      I am using asp and I am trying to set up a custom connection string using the Dreamweaver menus. I have entered the following into the Connection...
    5. moving data from one data source to another
      I'm trying to move data from one data source to another. I don't want to loop - because it will kill performance. A simple Select into or Insert...
  3. #2

    Default about data source???

    Create a new data source for the form using a query. In
    the query, link the two tables and inclued the required
    fields from each table.

    Hope this helps.

    >-----Original Message-----
    >I have an access database developed. I have added a new
    >table to link to the original developed table. Then I
    want
    >to change my original form and add a new bounded text
    >control field so that I can edit data in the new form.
    >I need to change the data source for the form in order to
    >add the new field but if so I will miss my origial data
    >source. Is that I need to create another query and use
    >this as the data source. But if so, my original data will
    >all be lost?? How can I solve the problem??????
    >.
    >
    ET Sherman Guest

  4. #3

    Default Re: about data source???

    On Mon, 21 Jul 2003 21:19:21 -0700, "jims" <hylam@csis.hku.hk> wrote:
    >I have an access database developed. I have added a new
    >table to link to the original developed table. Then I want
    >to change my original form and add a new bounded text
    >control field so that I can edit data in the new form.
    I'm not sure what you mean here. Do you have one form, or two? YOu say
    you want to "add a new bounded text control" - that would let you
    update a single *field*, but typically a table has multiple fields.
    >I need to change the data source for the form in order to
    >add the new field but if so I will miss my origial data
    >source. Is that I need to create another query and use
    >this as the data source. But if so, my original data will
    >all be lost?? How can I solve the problem??????
    The data resides in your Tables. The queries and Forms are simply
    tools to work with that data. Changing the Recordsource property of
    your Form to a new Query will not affect the data in the tables.

    Typically one would use a Form/Subform arrangement to update data in
    two tables; the "one" side table of the one to many relationship would
    be the recordsource for the main form, the "many" side table would be
    used on the subform, and the linking fields would be used as the
    Master/Child Link Fields of the subform control.


    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