473,749 Members | 2,384 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

any way to jump the cursor to a specific field (variable) while inform view?

Is there a way I can direct the cursor to a specific field (variable)
in a form by typing the field name while in form view?

I have a form with many fields, and it would be nice if there were
some method, similar to FIND RECORD (e.g., CTL + F ), where a dialog
box would pop up and let me enter the field name, and then jump the
cursor to that location.

I currently do my edits by locating a record to be changed by ID using
CTL+F and then I visually scan for the field I need to change. It
would be great if there were something like CTL+"V" to take me to the
'variable' I want to edit for that record.

I know that in design view I can use the toolbar dropdown variable
list to do this, but this only seems to work in form design viewl. I
need an easier way to navigate to one field that needs a value to be
corrected in the underlying table for a specific record.

I use the SAS system for some data entry applications, and it has a
keystroke combination, ALT+V+V that does this trick, but that's in
SAS. Sure wish MS-Access had some keystroke shortcut to deliver my
cursor to the exact location I want to edit on a record.

Thanks for any ideas.

-- Bill
Dec 12 '07 #1
3 3467
Oh, forgot to mention, I'm using Access 2003 on Windows XP.

Thanks again,

Bill McKirgan
Dec 12 '07 #2
On Dec 13, 12:17 am, mckbill <Bill.McKir...@ gmail.comwrote:
Is there a way I can direct the cursor to a specific field (variable)
in a form by typing the field name while in form view?

I have a form with many fields, and it would be nice if there were
some method, similar to FIND RECORD (e.g., CTL + F ), where a dialog
box would pop up and let me enter the field name, and then jump the
cursor to that location.

I currently do my edits by locating a record to be changed by ID using
CTL+F and then I visually scan for the field I need to change. It
would be great if there were something like CTL+"V" to take me to the
'variable' I want to edit for that record.

I know that in design view I can use the toolbar dropdown variable
list to do this, but this only seems to work in form design viewl. I
need an easier way to navigate to one field that needs a value to be
corrected in the underlying table for a specific record.

I use the SAS system for some data entry applications, and it has a
keystroke combination, ALT+V+V that does this trick, but that's in
SAS. Sure wish MS-Access had some keystroke shortcut to deliver my
cursor to the exact location I want to edit on a record.

Thanks for any ideas.

-- Bill
There are several ways to do this - one way is to customise your form
view toolbar by adding a "go to field" item. In Access 2003, this
should work:

Open any form in form view and make sure your form view toolbar is
visible.

On the menu, select View/ Toolbars/ Customise.

On the Customise dialog, go to the Commands tab.

Under Categories, select Records.

Under Commands, scroll down until you find "Go to Field".

Drag the "Go To Field" command onto your form view toolbar.

Close the Customise dialog.
Now whenever you have a form open for editing, the toolbar will
include
a dropdown list of fields on that form, just like the one you see in
form design view.
Other approaches worth considering:
Lay out your forms so it's easier to find stuff visually e.g. use
dividing lines, pages, tabs, etc.

Use "&" in your form field labels to create your own "Access key"
shortcuts.

If you know some basic coding - Place an unbound combo box on your
form
whose row source type is "field list" and whose row source is the
same
as the form's row source. Use the combo box's After Update event to
setfocus to the selected field.

Finally, getting off the topic, but if you have very many fields to
search, your data may need to be normalised. Folks who are used to
working with statistical software like SAS tend to structure their
data in a
single flat file type data structure, often with large numbers of
columns. That's not the only way to do it, and it's not really the
right
way to set up your data in a relational database like Access. I'm
making assumptions about what you're doing here though so will leave
it
at that.
Dec 13 '07 #3
Helen,

Thank you for your suggestions and for your comments about data
structure.

I look forward to trying-out your ideas and will report back on how
things go.

As for data structure, I'm guilty of being a flat-file guy. I tend to
use a flat file representation of our data which are entered from
paper forms. I split things by the paper forms, but some of them have
over a hundred variables as they may run 20 or more pages for an
interview.

I have one form that has over 3000 variables and I do all of the data
entry in SAS, but it takes me a lot of time to set something like this
up. On the other hand, where I can keep things under the 255 variable
limit for Access tables I will setup data entry in Access as this
environment is much easier to for me to rapidly develop a simple
double data entry system for one or more sets of our paper data
collection forms.

Thanks again, and kind regards,
Bill McKirgan
Dec 13 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
3826
by: Philip Mette | last post by:
I am begginner at best so I hope someone that is better can help. I have a stored procedure that updates a view that I wrote using 2 cursors.(Kind of a Inner Loop) I wrote it this way Because I couldn't do it using reqular transact SQL. The problem is that this procedure is taking longer and longer to run. Up to 5 hours now! It is anaylizing about 30,000 records. I think partly because we add new records every month. The procedure...
9
8243
by: Gary Holt | last post by:
We have a problem demonstrated by the following HTML document. To see the problem type HV in the first field then use the mouse cursor to click into the Staff code input box. You will find that the cursor has ended up in the prompt field rather than the input. I think it is due the table dynamically resizing when the description is added to the second cell, so where your cursor clicked no longer contains the location of the input box. ...
4
6314
by: Dan | last post by:
Can anyone offer suggestions on how to do this or if it is possible? I have a form that uses a drop down box and 2 text fields. What I am trying to do is have the value of each text box set by the choice from the drop down box. Something like: <form name="populatefrm" id="contactfrm" method="post"
1
2250
by: Thelma Lubkin | last post by:
I have a form that allows a user to choose a specific field value. The form calls a second, datasheet, form using a different field in the selected record as a filter . This second form has a subform that lists information for all values of the field where user has entered a specific value: I'd like to set the cursor of this datasheet subform to the user's selection. How can I do that? thanks, --thelma
1
2502
by: AA Arens | last post by:
I have a button containing the VB command Me.Notes = Me.Notes & Format(Date, "dd-mm-yyyy") to have a date filled in a field. I want it automatically jump to the next field, after the date is inserted. How? By the way, more nicer is that when I start a new record, the date is automatically inserted and the cursor jumps to the next field. So, without a push button.
4
14891
by: david.isaacks | last post by:
Is there a way on a form of making one field the default field such that as soon as you navigate to the form page, the cursor is sitting on that field ready for data to be entered.
4
4676
by: Billy | last post by:
Hi all, I'm building a text file from a database table using the ASP Write Method and would like to position the cursor in a specific column position before writing the fields. As I loop through and write the fields into strings of rows, I want to be able to put field1 in row1/column position1, field2 in row1/column position10,.....etc. I've included the basic code to write a string of text. I understand the process of how to write the...
2
13458
by: juan.gautier | last post by:
Hi, I try to construct a SQL code for a view to select a specific data from a table, this query take the value of the filter from a text box in a visual basic 6.0 form. my problem is when i DECLARE the variable @AMP receive a error message that said "The Declare cursor SQL construct or statement is not supported." What i do wrong? Please help me. i attach the code. DECLARE @AMP int;
0
18037
debasisdas
by: debasisdas | last post by:
RESTRICTIONS ON CURSOR VARIABLES ================================= Currently, cursor variables are subject to the following restrictions: Cannot declare cursor variables in a package spec. CREATE PACKAGE emp_stuff AS TYPE EmpCurTyp IS REF CURSOR RETURN emp%ROWTYPE; emp_cv EmpCurTyp; -- not allowed END emp_stuff;
0
8996
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
8832
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,...
0
9566
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9388
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9333
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
6078
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
4608
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...
2
2791
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2217
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.