Connecting Tech Pros Worldwide Help | Site Map

Help needed in adding records

  #1  
Old April 14th, 2006, 07:35 PM
Ron
Guest
 
Posts: n/a
Hi all,

I've got a frmCustomer form (designed via access 2000 form wizard) that uses
a qryCustomerName query (also designed by query wizard) ordered by customer
last name, first name, mi. Of course, it adds records to the end of the
dataset rather than putting new entries into alpha order. And, there they
sit until I leave the form and re-enter it.

Is there a way to input the new record so that once it's entered it pops it
into alpha order, without having to leave the form and re-enter it, or
clicking a key to re-query (and thus put the user back to the beginning of
the file)?

TIA
ron


  #2  
Old April 14th, 2006, 11:55 PM
Jana
Guest
 
Posts: n/a

re: Help needed in adding records


Ron:

You can add this line to the code of the AfterInsert event of the Form:

Me.Requery

Note: This will take the user back to the first record of the data
set.

HTH,
Jana

  #3  
Old April 15th, 2006, 07:35 PM
Ron
Guest
 
Posts: n/a

re: Help needed in adding records


Hi Jana,

Thanks for trying to help. As I indicated though, for other reasons, it's
REALLY cumbersome to have the user save the record and then pop back to the
first record in the query rather than still be at the record they just
added. VERY cludgy.

As with other attributes that seem to make Access almost useless, I'll try
and figure out a way around this problem as well. The way that Access seems
to work right out of the box, I might have found it easier to keep track of
records with an IBM typewriter.

Again, thanks for trying to help.
ron

"Jana" <Bauer.Jana@gmail.com> wrote in message
news:1145054839.358106.317170@i39g2000cwa.googlegr oups.com...[color=blue]
> Ron:
>
> You can add this line to the code of the AfterInsert event of the Form:
>
> Me.Requery
>
> Note: This will take the user back to the first record of the data
> set.
>
> HTH,
> Jana
>[/color]


  #4  
Old April 16th, 2006, 05:15 AM
Larry Linson
Guest
 
Posts: n/a

re: Help needed in adding records


"Ron" <ronSPAMBLOCKERwest777@earthlink.com> wrote
[color=blue]
> I've got a frmCustomer form (designed via access 2000 form wizard) that
> uses a qryCustomerName query (also designed by query wizard) ordered by
> customer last name, first name, mi. Of course, it adds records to the end
> of the dataset rather than putting new entries into alpha order. And,
> there they sit until I leave the form and re-enter it.[/color]

Yes, indeed, "of couse," is the operative phrase. Relational Tables (which
is what Access tables are) are, by definition, UNordered. You have to use a
Query that Sorts them when you want to make use of the Tables, such as
display the information to humans.

Larry Linson

[color=blue]
> Is there a way to input the new record so that once it's entered it pops[/color]
it[color=blue]
> into alpha order, without having to leave the form and re-enter it, or
> clicking a key to re-query (and thus put the user back to the beginning[/color]
of[color=blue]
> the file)?[/color]
[color=blue]
>[/color]


  #5  
Old April 17th, 2006, 05:55 PM
Ron
Guest
 
Posts: n/a

re: Help needed in adding records


Thanks for helping me find a solution that seems to be working.

I used your requery, but before I did, I made a variable equal to the
customer number assigned to the new customer. I requery, then use
FindRecord to pop back to the appropriate record.

varCustNo = Me.CustomerNumber
Requery
DoCmd.GoToControl "CustomerNumber"
DoCmd.FindRecord varCustNo, , False, , False, acCurrent

May not be elegant, but it seems to work. I'll continue to play with it.

Thanks, Jana!
ron

"Jana" <Bauer.Jana@gmail.com> wrote in message
news:1145054839.358106.317170@i39g2000cwa.googlegr oups.com...[color=blue]
> Ron:
>
> You can add this line to the code of the AfterInsert event of the Form:
>
> Me.Requery
>
> Note: This will take the user back to the first record of the data
> set.
>
> HTH,
> Jana
>[/color]


Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help! problem adding records to subform Paul T. Rong answers 0 November 13th, 2005 04:24 AM
Help needed with databases + asp problem Rob Forey -- The Man With No Nails answers 5 November 13th, 2005 02:08 AM
Help Needed in file handling Abhas answers 3 July 23rd, 2005 07:23 AM
java help needed abcd answers 0 July 17th, 2005 11:12 PM