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 » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Another question on Access 2000 Tab setting



 
 
Thread Tools Display Modes
  #1  
Old August 12th, 2005, 05:15 AM
Abay
external usenet poster
 
Posts: n/a
Default Another question on Access 2000 Tab setting

I have a master detail type of multi form and have all the field" tab index
and no" properties set correctly as far as I can see. Yet when I get to the
end of the Master form, I have to press the tab key four time before it goes
to the first field (Settings: Tab Stop = yes, Tab Index = 0) in the Detail
form.

Any help would be much appreciated.

Abay


  #2  
Old August 12th, 2005, 05:31 PM
Ed Robichaud
external usenet poster
 
Posts: n/a
Default

Setting the Tab Stop property of the whole TabControl object will turn the
tab stop on/off for all pages (tabs). Don't know why yours is working, but
a work-around would be to use a "[MyFirstControl].SetFocus" statement in
the OnExit event of the last control on your main form.
-Ed

"Abay" wrote in message
...
I have a master detail type of multi form and have all the field" tab index
and no" properties set correctly as far as I can see. Yet when I get to
the end of the Master form, I have to press the tab key four time before it
goes to the first field (Settings: Tab Stop = yes, Tab Index = 0) in the
Detail form.

Any help would be much appreciated.

Abay




  #3  
Old August 13th, 2005, 04:19 AM
Abay
external usenet poster
 
Posts: n/a
Default


Thank you Ed for your reply .. and now to show my complete ignorance ... I
have tried every combination that I know of to reference the field "Model"
on my subform. with no success. The subform is called
"FCldetail_subform" and the field is called "Model"

I am a really a newbie having taught myself a little of Access97 (before
installing the 2000 version) and the best reference I have is VB for
Accsss97 step by step .. its not bad but really only an introduction. I
don't get to use Access nearly as much as I would like, thus my queries here
from time to time. I really appreciate all the help I have received, and
feel bad that I haven't figured this one out

This is the code for the "on exit" event of the last field in the Master
Form.

Private Sub Contact_fax_Exit(Cancel As Integer)

[Cldetail_subform.Model].Setfocus
[FCldetail_subform][Model].Setfocus

End Sub

I have tried other combinations with no luck. Any help would of course be
much appreciated.

Abay
"Ed Robichaud" wrote in message
...
Setting the Tab Stop property of the whole TabControl object will turn the
tab stop on/off for all pages (tabs). Don't know why yours is working,
but a work-around would be to use a "[MyFirstControl].SetFocus" statement
in the OnExit event of the last control on your main form.
-Ed

"Abay" wrote in message
...
I have a master detail type of multi form and have all the field" tab
index and no" properties set correctly as far as I can see. Yet when I
get to the end of the Master form, I have to press the tab key four time
before it goes to the first field (Settings: Tab Stop = yes, Tab Index =
0) in the Detail form.

Any help would be much appreciated.

Abay






  #4  
Old August 14th, 2005, 03:25 AM
Ed Robichaud
external usenet poster
 
Posts: n/a
Default

Here is a reference for correct syntax with subform and their controls ( I
refer to it frequently)
http://www.mvps.org/access/forms/frm0031.htm

It covers all situations, so you should be able to get the particular name
reference you need.
-Ed

"Abay" wrote in message
...

Thank you Ed for your reply .. and now to show my complete ignorance ... I
have tried every combination that I know of to reference the field
"Model" on my subform. with no success. The subform is called
"FCldetail_subform" and the field is called "Model"

I am a really a newbie having taught myself a little of Access97 (before
installing the 2000 version) and the best reference I have is VB for
Accsss97 step by step .. its not bad but really only an introduction. I
don't get to use Access nearly as much as I would like, thus my queries
here from time to time. I really appreciate all the help I have received,
and feel bad that I haven't figured this one out

This is the code for the "on exit" event of the last field in the Master
Form.

Private Sub Contact_fax_Exit(Cancel As Integer)

[Cldetail_subform.Model].Setfocus
[FCldetail_subform][Model].Setfocus

End Sub

I have tried other combinations with no luck. Any help would of course be
much appreciated.

Abay
"Ed Robichaud" wrote in message
...
Setting the Tab Stop property of the whole TabControl object will turn
the tab stop on/off for all pages (tabs). Don't know why yours is
working, but a work-around would be to use a "[MyFirstControl].SetFocus"
statement in the OnExit event of the last control on your main form.
-Ed

"Abay" wrote in message
...
I have a master detail type of multi form and have all the field" tab
index and no" properties set correctly as far as I can see. Yet when I
get to the end of the Master form, I have to press the tab key four time
before it goes to the first field (Settings: Tab Stop = yes, Tab Index =
0) in the Detail form.

Any help would be much appreciated.

Abay








  #5  
Old August 14th, 2005, 05:33 PM
Abay
external usenet poster
 
Posts: n/a
Default

Thank you again .. I'll try that .. abay


"Ed Robichaud" wrote in message
...
Here is a reference for correct syntax with subform and their controls
( I refer to it frequently)
http://www.mvps.org/access/forms/frm0031.htm

It covers all situations, so you should be able to get the particular name
reference you need.
-Ed

"Abay" wrote in message
...

Thank you Ed for your reply .. and now to show my complete ignorance ...
I have tried every combination that I know of to reference the field
"Model" on my subform. with no success. The subform is called
"FCldetail_subform" and the field is called "Model"

I am a really a newbie having taught myself a little of Access97 (before
installing the 2000 version) and the best reference I have is VB for
Accsss97 step by step .. its not bad but really only an introduction. I
don't get to use Access nearly as much as I would like, thus my queries
here from time to time. I really appreciate all the help I have
received, and feel bad that I haven't figured this one out

This is the code for the "on exit" event of the last field in the Master
Form.

Private Sub Contact_fax_Exit(Cancel As Integer)

[Cldetail_subform.Model].Setfocus
[FCldetail_subform][Model].Setfocus

End Sub

I have tried other combinations with no luck. Any help would of course
be much appreciated.

Abay
"Ed Robichaud" wrote in message
...
Setting the Tab Stop property of the whole TabControl object will turn
the tab stop on/off for all pages (tabs). Don't know why yours is
working, but a work-around would be to use a
"[MyFirstControl].SetFocus" statement in the OnExit event of the last
control on your main form.
-Ed

"Abay" wrote in message
...
I have a master detail type of multi form and have all the field" tab
index and no" properties set correctly as far as I can see. Yet when I
get to the end of the Master form, I have to press the tab key four time
before it goes to the first field (Settings: Tab Stop = yes, Tab Index =
0) in the Detail form.

Any help would be much appreciated.

Abay










 




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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Access 2000 Combo Box Question DianaS General Discussion 4 July 20th, 2005 03:08 PM
Access 2000 question lemonysnicket73 General Discussion 1 April 9th, 2005 09:26 AM
Access 2000 -vs- Access 2003? Mark General Discussion 5 November 30th, 2004 06:36 AM
Access XP Compared to Access 2003 Mardene Leahu New Users 1 October 1st, 2004 05:11 AM
Access 2003 RK General Discussion 12 June 14th, 2004 10:16 AM


All times are GMT +1. The time now is 04:38 AM.


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