473,396 Members | 1,914 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Tab form

Hi Everyone,

Just discover the Tab form which I would like to use but can't see where I
would put in a conditional selection.

I want items be grouped and thinking of using Tab Form, so I would have one
tab which is for Person a, another tab which is for Person B, another one
for person C etc.

All the contents to be showed on each Tab is same except the name of the
person who does the job. As the data for all tabs are from one single table.
I have tried to put event procedure When click to select the person's name
but it doesn't work. Where have I gone wrong ?

Many thanks,

Rach
Jan 15 '07 #1
8 1775
That is not what a tab control is for. A tab is for grouping controls not
records. What happens if you have 50 persons? What about 300 persons? What
will you do when you add another person?

Jeff
"Smiley" <Ra**@akita.co.ukwrote in message
news:eo*******************@news.demon.co.uk...
Hi Everyone,

Just discover the Tab form which I would like to use but can't see where I
would put in a conditional selection.

I want items be grouped and thinking of using Tab Form, so I would have
one tab which is for Person a, another tab which is for Person B, another
one for person C etc.

All the contents to be showed on each Tab is same except the name of the
person who does the job. As the data for all tabs are from one single
table. I have tried to put event procedure When click to select the
person's name but it doesn't work. Where have I gone wrong ?

Many thanks,

Rach

Jan 15 '07 #2
Hi Jeff,

Thanks for pointing out how tab control is used.

Any idea how I would achieve the result that I want ?

Many thanks,

"Jeff Smith" <No****@not.this.addresswrote in message
news:45********@clear.net.nz...
That is not what a tab control is for. A tab is for grouping controls not
records. What happens if you have 50 persons? What about 300 persons? What
will you do when you add another person?

Jeff
"Smiley" <Ra**@akita.co.ukwrote in message
news:eo*******************@news.demon.co.uk...
>Hi Everyone,

Just discover the Tab form which I would like to use but can't see where
I would put in a conditional selection.

I want items be grouped and thinking of using Tab Form, so I would have
one tab which is for Person a, another tab which is for Person B, another
one for person C etc.

All the contents to be showed on each Tab is same except the name of the
person who does the job. As the data for all tabs are from one single
table. I have tried to put event procedure When click to select the
person's name but it doesn't work. Where have I gone wrong ?

Many thanks,

Rach


Jan 15 '07 #3
"Smiley" <Ra**@akita.co.ukwrote in message
news:eo*******************@news.demon.co.uk...
Thanks for pointing out how tab control is used.
Any idea how I would achieve the result that I want ?
Yes, that is what Continuous Forms View is designed to show.

Create a shallow form with one line or a few lines per record, then in the
Format tab of the Property Sheet for the Form, look for Default View, and
set it to Continuous Forms.

You can code so that double-clicking, or clicking on a Command Button, on a
line will use the unique identifier for that Record to open a Single-Form
View Form (could be a Popup Dialog if you'd like) showing the details of the
selected Record.

Larry Linson
Microsoft Access MVP
Jan 15 '07 #4
Is there a tidier way which I would have it all on one screen. I only got a
few people and only a few item of each. I want to see everyone's on one
screen, so I got this idea to use tab control. Any other way I would view
all on one screen or more or less on one screen ?

Regards
"Larry Linson" <bo*****@localhost.notwrote in message
news:ecRqh.6464$Gj5.1660@trnddc01...
"Smiley" <Ra**@akita.co.ukwrote in message
news:eo*******************@news.demon.co.uk...
Thanks for pointing out how tab control is used.
Any idea how I would achieve the result that I want ?

Yes, that is what Continuous Forms View is designed to show.

Create a shallow form with one line or a few lines per record, then in the
Format tab of the Property Sheet for the Form, look for Default View, and
set it to Continuous Forms.

You can code so that double-clicking, or clicking on a Command Button, on
a line will use the unique identifier for that Record to open a
Single-Form View Form (could be a Popup Dialog if you'd like) showing the
details of the selected Record.

Larry Linson
Microsoft Access MVP

Jan 16 '07 #5
"Smiley" <Ra**@akita.co.ukwrote
Is there a tidier way which I would have it all on one screen. I only got
a
few people and only a few item of each. I want to see everyone's on one
screen, so I got this idea to use tab control. Any other way I would view
all on one screen or more or less on one screen ?
If there are few enough, instead of using the continuous forms view to
select, you can include all the fields, see the details, and update directly
from the continuous forms view. It is scrollable, so although not everything
may be visible at all times, it really fits the definition of one screen
better than a Tab Control does.

I don't see any difference, in fact, between "multiple screens" and
"multiple pages" of a Tab Control.

Larry Linson
Microsoft Access MVP

Jan 16 '07 #6
Hi Larry,

If I put it in one page, anyway I would achieve like the conditional
formating as in Excel, so I would associate each person with a colour. If
so, please give me some idea where to begin. I am very new to this.

Many thanks,

Rach

"Larry Linson" <bo*****@localhost.notwrote in message
news:vm8rh.4338$9B6.2871@trnddc07...
"Smiley" <Ra**@akita.co.ukwrote
Is there a tidier way which I would have it all on one screen. I only
got
a
few people and only a few item of each. I want to see everyone's on one
screen, so I got this idea to use tab control. Any other way I would
view
all on one screen or more or less on one screen ?

If there are few enough, instead of using the continuous forms view to
select, you can include all the fields, see the details, and update
directly from the continuous forms view. It is scrollable, so although not
everything may be visible at all times, it really fits the definition of
one screen better than a Tab Control does.

I don't see any difference, in fact, between "multiple screens" and
"multiple pages" of a Tab Control.

Larry Linson
Microsoft Access MVP

Jan 18 '07 #7
"Smiley" <Ra**@akita.co.ukwrote
If I put it in one page, anyway I would achieve like the conditional
formating as in Excel, so I would associate each person with a colour. If
so, please give me some idea where to begin. I am very new to this.
Right-click the Control in Design View of the Report, and choose Conditional
Formatting. That will provide you the conditional formatting that Access
supports.

Just a comment: a database is not a spreadsheet. It was likely a design
assumption for Access that users would be handling more records than would
be convenient to assign each record a separate, different color. Because,
while Access can easily handle a few records in a table, its real value is
handling hundreds, or thousands, or even millions of records.

Larry Linson
Microsoft Access MVP
Jan 22 '07 #8
Hi Larry,

Thank you for the advice and comment.

I have tried it but not achieving. It would be due to something which I have
not set properly. Will bash on.

Have a good day,

rach
"Larry Linson" <bo*****@localhost.notwrote in message
news:JdZsh.436$FN1.199@trnddc08...
"Smiley" <Ra**@akita.co.ukwrote
If I put it in one page, anyway I would achieve like the conditional
formating as in Excel, so I would associate each person with a colour.
If
so, please give me some idea where to begin. I am very new to this.

Right-click the Control in Design View of the Report, and choose
Conditional Formatting. That will provide you the conditional formatting
that Access supports.

Just a comment: a database is not a spreadsheet. It was likely a design
assumption for Access that users would be handling more records than would
be convenient to assign each record a separate, different color. Because,
while Access can easily handle a few records in a table, its real value is
handling hundreds, or thousands, or even millions of records.

Larry Linson
Microsoft Access MVP

Jan 23 '07 #9

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

Similar topics

3
by: John | last post by:
Dear all, It been more than 3 days I am trying to debug this program, I interpret it using activePerl and it is giving (perl -wc code_process.pl) no error syntax but when I put it online, change...
5
by: Richard Cornford | last post by:
I am interested in hearing opinions on the semantic meaning of FORM (elements) in HTML. I have to start of apologising because this question arose in a context that is not applicable to the...
4
by: Targa | last post by:
Trying to total some price fields in a form but doesnt work when all the referenced form fields dont exisit. This is for an invoice - pulled prom a database and the form doesnt always contain the...
25
by: Lyn | last post by:
Hi, I am working on a genealogy form. The only table (so far) lists everybody in the family, one record per person. Each record has an autonum ID. The parent form (frmMainForm) displays the...
19
by: Raposa Velha | last post by:
Hello to all! Does any of you want to comment the approach I implement for instantiating a form? A description and an example follow. Cheers, RV jmclopesAThotmail.com replace the AT with the...
11
by: Jozef | last post by:
I have some old code that I use from the Access 95 Developers handbook. The code works very well, with the exception that it doesn't seem to recognize wide screens, and sizes tab controls so that...
5
by: RAJ | last post by:
hi plz tell me how to know "how window is going to close"... i have to right code for X button of forms... plz telll me thanks bye
6
by: Gary Miller | last post by:
Does anyone know how to detect a modeless form on closing by the form that invoked the modeless form? form.Show();
4
by: Alex Sibilev | last post by:
Hello, I have a really weird problem I've been trying to solve it without any luck for the last couple of hours :( I'm writing a "conference board" application (quite similar to ASP.NET...
5
by: ortaias | last post by:
I have a form which calls up a second form for purposes of data entry. When closing the data entry form and returning to the main form, things don't work as expected. When I return to the main...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
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,...
0
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,...
0
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...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.