473,657 Members | 3,041 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Getting Rid of Blank Record showing in Continuous Form

4 New Member
How do I get rid of the blank form that attach to the current form when you start to enter data into a continuous form? I want the blank form to only appear after they click on the ADD Record button and not automatically.

I have tried to play around with allow addition and data entry and put them in before insert, after insert, on current but yield disappointing result. My initial setting where I set allowedit, addition, deletion and data entry = true works well under On form Open event but when i start to enter data... the annoying blank form just pops up and worst of all, start responding to Option group selection.

It does work when you set allow addition = false in After Insert event but it means I have to endure the annoying blank form until I click on save.

I'm using Access 2003.

Please help.
Jun 7 '07 #1
3 8343
missinglinq
3,532 Recognized Expert Specialist
Hate to tell you, but I think as long as you're in Allow Additions = True mode you're always going to have that extra blank line waiting. If it's that annoying to you, then what I'd do is set Allow Additions to False for your continuous form then do is:

Have your Add Record button open up a small singleview form for entering the new record

Have the Navigation box for that form turned off

Have a Save button that you user has to click on when done, saving the record, requerying your record source then returning to your continuous form.
Jun 7 '07 #2
Harry2007
4 New Member
Hate to tell you, but I think as long as you're in Allow Additions = True mode you're always going to have that extra blank line waiting. If it's that annoying to you, then what I'd do is set Allow Additions to False for your continuous form then do is:

Have your Add Record button open up a small singleview form for entering the new record

Have the Navigation box for that form turned off

Have a Save button that you user has to click on when done, saving the record, requerying your record source then returning to your continuous form.

Thank you for your reply. :)

I have done that and actually set it using code assigned to AfterUpdate on my first control. The effect... the whole form turned blank. I have again tried to set the default view using code but Access only allowed such setting in design view and not during runtime. Mad!

Yes, the add, save, delete and even a Done button were in place, no navigation box but I'll try your idea of popping up another form for data entry. Worst of all, i'll just revert back to single form. Microsoft guys...if you are reading this... please take note...

Good day. Clear blue sky here in Kuching, Sarawak, Malaysia.
Jun 7 '07 #3
missinglinq
3,532 Recognized Expert Specialist
Sorry, forgot to say your single view form needs to be bound to the same query/table as your first table is.
Jun 8 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

3
9360
by: B | last post by:
I know there are several ways to speed up combo boxes and form loading. Most of the solutions leave rowsource of the combo box blank and set the rowsource to a saved query or an SQL with a where clause after users typed in one or several letters/digits. My problem is as follows Most of the time I need to display form in continuous format, that means the combo box will appear in each record. For example I have a form to let users view...
1
1826
by: Marcia | last post by:
I have a combobox for types of music and a combobox for artists. The rowsource query for the artists combobox associates artists with different types of music. In the query I use the name of the type of music combobox to limit the list of artists when a type of music is first selected. This works well in a single form but I'm having trouble in a continuous form. In a continuous form, when I select a type of music, in all the records where...
1
2961
by: chfran | last post by:
I have a form (continuous) that show me data from a table (not a query). I can only modify and move between the data of the first record. I cannot move to the 2nd, 3rd, or 85th record, only the first. I don't know if I've turned on something unintentionally or what. Any insights? chfran
1
5902
by: Catriona | last post by:
I am developing an Access application where users insert bill records for an electricity account by clicking on a new button. The required workflow is 1) New button clicked 2) New record appears with some field populated per defaults for account and some based on previous records - eg dates 3) Save button clicked 4) Record validated and saved if it passes validation. I have three issues as follows
3
3925
by: ApexData | last post by:
I am using a continuous form for display purposes. Above this form, a single record is displayed so that when the user presses my NewButton they can enter a NewRecord which gets added to the continuous form that displays below. Under the NewButton I have these lines of code: Me.AllowAdditions = True DoCmd.GoToRecord , , acNewRec
9
7120
by: OllyJ | last post by:
Hi guys, I have a continuous form and one field is Day / Night, where a 'D' or 'N' is contained to represent each. Is it possible to write code for the 'on current' of the form to ensure a box contained within the specific record is one colour for those records with 'D' and another for those with 'N'? I used for...each...next statement from the help and adapted it to suit my form, but it changed the colour of ALL of the boxes depending...
8
9907
by: jimrand | last post by:
Hi Using Access 2007, I have a form created that uses a combo box to select records from an underlying table. I want the user to be able to create a new record with absolutely no pre-set data in it to allow them to key in the new data themselves. I am really stuck as to how to do this. I have added a cmd button to the form and have tried using the following code that I picked up from here: Private Sub cmdNew_Click() ...
2
4443
by: Steve | last post by:
I have a continuous form showing Product Code and Product Name. Product Code is five digits and is sequential. I have a textbox in the form header. What is the code to scroll the continuous form so that as I type in the the first two or three numbers of the product code in the textbox, the first product code record appears at the top of the form. I would like the continuous form to act like a combox with auto expand. Thanks!
8
2070
by: Dan2kx | last post by:
New question.... I have my continous form constructed of data from a query, i want to select records to edit (See thread) using unbound tickboxes, how can i link these? Thanks (again), Dan
0
8384
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8302
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8499
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7314
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5630
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4150
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1937
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1601
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.