First, please post back with a description of what you are trying to
accomplish with your application in real-world terms.
Most likely you'll receive suggestions about changing your approach
but that will help you achieve your real-world goals. The first clue
that this might be so is that you are trying to copy data from one
place in your application to another place in the same application.
In the context of a relational database that just isn't the way to go.
However, you can display your data in many different ways if your
schema is correct.
Welcome to the wonderful world of Access. You can do lots of great
things with it if you're willing to put in the time and effort.
You'll find many of the concepts new. Some seem incomprehensible. Be
comforted by the awareness that the Access learning curve is long and
steep..
While you'll find friendly and courteous and FREE help in all of the
Access newsgroups, a couple of great newsgroups for those just getting
started are:
microsoft.public.access.gettingstarted
microsoft.public.access.tablesdesign
An incredibly useful site is
www.mvps.org/access It is full of Access
lore and useful to developers at all levels.
HTH
--
-Larry-
--
"Palazo" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I'm having some problems with the following:
>
> I have two tables:
>
> Table ICD9 contains the following fields:
>
> ICDNumber
> ICDDesc
>
> Table DxList contains the following fields:
> IDNumber
> EpisodeNumber
> ICDDx
>
> I have a main form with two subforms in it.
>
> Subform DxList is set up as continuous forms
> Subform ICD9 is setup as DATASHEET for the default view
>
> What I would like to do is have the user be able to select a record
> from the ICD9 subform and then hit a button to copy the current
record
> to a new record in the DxLIST subform.
> Once this is done, the user can then scroll through the ICD9 subform
> and should be able to select another record and copy it to a new
record
> in the dxlist subform.
>
> In other words, the user should be able to populate the dxlist
subform
> with user selected records from the ICD9 subform.
>
> Can anybody help?
>