PC Review


Reply
Thread Tools Rate Thread

Access 2000 - Hidden record counter and open to new record

 
 
Kostika
Guest
Posts: n/a
 
      18th Aug 2004
Basic DB. Nothing fancy. Got two questions.

First, is there a way to automatically have the DB open to a new
record?

Second, is there a way to hide the Records listing that shows at the
bottom left corner of the form?

THanks

~Kostika
 
Reply With Quote
 
 
 
 
Van T. Dinh
Guest
Posts: n/a
 
      18th Aug 2004
Database is a container so it has Tables, Queries, Forms, Reports, etc ...
and it doesn't have Records. Only Tables do or Forms that are bound to
Tables. If you are talking abound the bound StartUp Form, you can use:

DoCmd.GoToRecord , , acNewRec

in the Form_Open Event to make the NewRecord the current Record.

To remove the Navigation Bar from the Form, set the Navigation Buttons to
No/False in the design of the Form.

--
HTH
Van T. Dinh
MVP (Access)



"Kostika" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Basic DB. Nothing fancy. Got two questions.
>
> First, is there a way to automatically have the DB open to a new
> record?
>
> Second, is there a way to hide the Records listing that shows at the
> bottom left corner of the form?
>
> THanks
>
> ~Kostika



 
Reply With Quote
 
Kostika
Guest
Posts: n/a
 
      20th Aug 2004
I meant Form. And tables don't have records, Forms do. I found a much
easier way to do what you just mentioned below though.

So much for that MVP.

~Kos

"Van T. Dinh" <(E-Mail Removed)> wrote in message news:<(E-Mail Removed)>...
> Database is a container so it has Tables, Queries, Forms, Reports, etc ...
> and it doesn't have Records. Only Tables do or Forms that are bound to
> Tables. If you are talking abound the bound StartUp Form, you can use:
>
> DoCmd.GoToRecord , , acNewRec
>
> in the Form_Open Event to make the NewRecord the current Record.
>
> To remove the Navigation Bar from the Form, set the Navigation Buttons to
> No/False in the design of the Form.
>
> --
> HTH
> Van T. Dinh
> MVP (Access)
>
>
>
> "Kostika" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Basic DB. Nothing fancy. Got two questions.
> >
> > First, is there a way to automatically have the DB open to a new
> > record?
> >
> > Second, is there a way to hide the Records listing that shows at the
> > bottom left corner of the form?
> >
> > THanks
> >
> > ~Kostika

 
Reply With Quote
 
Van T. Dinh
Guest
Posts: n/a
 
      21st Aug 2004
You obviously haven't heard of unbound Forms?

What do you think Tables have? Perhaps, you need to read an *introductory*
Access book.

--
HTH
Van T. Dinh
MVP (Access)



"Kostika" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I meant Form. And tables don't have records, Forms do. I found a much
> easier way to do what you just mentioned below though.
>
> So much for that MVP.
>
> ~Kos
>



 
Reply With Quote
 
Stephen Lebans
Guest
Posts: n/a
 
      21st Aug 2004
Prove it Kostika. What is your much easier method than:

DoCmd.GoToRecord , , acNewRec
and
Turning off the NavigationButtons property.


This I gotta see...
--

Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.


"Kostika" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I meant Form. And tables don't have records, Forms do. I found a much
> easier way to do what you just mentioned below though.
>
> So much for that MVP.
>
> ~Kos
>
> "Van T. Dinh" <(E-Mail Removed)> wrote in

message news:<(E-Mail Removed)>...
> > Database is a container so it has Tables, Queries, Forms, Reports,

etc ...
> > and it doesn't have Records. Only Tables do or Forms that are bound

to
> > Tables. If you are talking abound the bound StartUp Form, you can

use:
> >
> > DoCmd.GoToRecord , , acNewRec
> >
> > in the Form_Open Event to make the NewRecord the current Record.
> >
> > To remove the Navigation Bar from the Form, set the Navigation

Buttons to
> > No/False in the design of the Form.
> >
> > --
> > HTH
> > Van T. Dinh
> > MVP (Access)
> >
> >
> >
> > "Kostika" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> > > Basic DB. Nothing fancy. Got two questions.
> > >
> > > First, is there a way to automatically have the DB open to a new
> > > record?
> > >
> > > Second, is there a way to hide the Records listing that shows at

the
> > > bottom left corner of the form?
> > >
> > > THanks
> > >
> > > ~Kostika


 
Reply With Quote
 
Kostika
Guest
Posts: n/a
 
      23rd Aug 2004
Easy. Use the macro builder to create a macro that does open new
record. Then put it in the On Open for the form's properties.

Much easier than screwing with VB script.

And I did what you had suggested for the nav buttons. I jsut figured
it out myself before I got a response to my post.

~Kos

"Stephen Lebans" <ForEmailGotoMy.WebSite.-(E-Mail Removed)> wrote in message news:<uXw$s#(E-Mail Removed)>...
> Prove it Kostika. What is your much easier method than:
>
> DoCmd.GoToRecord , , acNewRec
> and
> Turning off the NavigationButtons property.
>
>
> This I gotta see...
> --
>
> Stephen Lebans
> http://www.lebans.com
> Access Code, Tips and Tricks
> Please respond only to the newsgroups so everyone can benefit.
>
>
> "Kostika" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > I meant Form. And tables don't have records, Forms do. I found a much
> > easier way to do what you just mentioned below though.
> >
> > So much for that MVP.
> >
> > ~Kos
> >
> > "Van T. Dinh" <(E-Mail Removed)> wrote in

> message news:<(E-Mail Removed)>...
> > > Database is a container so it has Tables, Queries, Forms, Reports,

> etc ...
> > > and it doesn't have Records. Only Tables do or Forms that are bound

> to
> > > Tables. If you are talking abound the bound StartUp Form, you can

> use:
> > >
> > > DoCmd.GoToRecord , , acNewRec
> > >
> > > in the Form_Open Event to make the NewRecord the current Record.
> > >
> > > To remove the Navigation Bar from the Form, set the Navigation

> Buttons to
> > > No/False in the design of the Form.
> > >
> > > --
> > > HTH
> > > Van T. Dinh
> > > MVP (Access)
> > >
> > >
> > >
> > > "Kostika" <(E-Mail Removed)> wrote in message
> > > news:(E-Mail Removed)...
> > > > Basic DB. Nothing fancy. Got two questions.
> > > >
> > > > First, is there a way to automatically have the DB open to a new
> > > > record?
> > > >
> > > > Second, is there a way to hide the Records listing that shows at

> the
> > > > bottom left corner of the form?
> > > >
> > > > THanks
> > > >
> > > > ~Kostika

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Record counter in Access Sam Microsoft Access 4 14th Nov 2008 08:47 AM
Open Access 2000 mdb to a specific form / record =?Utf-8?B?Q2h1Y2s=?= Microsoft Access 0 14th Aug 2007 02:28 AM
Record counter in access forms mf_sina Microsoft Access Forms 2 23rd Jan 2006 01:53 PM
have data access page open with new record or blank record. =?Utf-8?B?ZHJvc2UyMTEy?= Microsoft Access 1 28th Oct 2005 03:28 PM
Open record in another access db based on record in current access =?Utf-8?B?U2hhd25h?= Microsoft Access External Data 1 20th Dec 2004 10:05 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:13 PM.