A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Setting Up & Running Reports
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Would like to see NEW Form.



 
 
Thread Tools Display Modes
  #1  
Old September 6th, 2009, 09:23 AM posted to microsoft.public.access.reports
sweetummy
external usenet poster
 
Posts: 20
Default Would like to see NEW Form.

hi,
I have created database with 100 's of records..
When opened it shows my first record every time .

I would like to see a new form to append to all those records..

Eg: 100 records saved in database and i exited from access.

after opening it show me 101 record to enter.....

  #2  
Old September 6th, 2009, 02:17 PM posted to microsoft.public.access.reports
Allen Browne
external usenet poster
 
Posts: 11,706
Default Would like to see NEW Form.

A simple solution is to set the form's Data Entry property to Yes. Then
Access won't load the existing records, so you will be at a new record each
time you open the form.

If you want to load the old records so the user can step back to them
(navigation buttons), put this code into the form's Load event procedu

Private Sub Form_Load()
It Not Me.NewRecord Then
RunCommand acCmdRecordsGotoNew
End If
End Sub

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.


"sweetummy" wrote in message
...
hi,
I have created database with 100 's of records..
When opened it shows my first record every time .

I would like to see a new form to append to all those records..

Eg: 100 records saved in database and i exited from access.

after opening it show me 101 record to enter.....

  #3  
Old September 12th, 2009, 06:36 PM posted to microsoft.public.access.reports
sweetummy
external usenet poster
 
Posts: 20
Default Would like to see NEW Form.

Thank you very much browne.. and you have given me a bonus of
(Thousand tips) website..
allenbrowne.....
 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:49 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.