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

Show a Table?



 
 
Thread Tools Display Modes
  #1  
Old December 29th, 2004, 09:44 PM
Bob
external usenet poster
 
Posts: n/a
Default Show a Table?



--
After searching Google.groups.com and finding no answer, Bob Vance asked:

I have a made a command button to print a table how do I go about getting a
button to SHOW a table?

Thanks in advance.........Bob Vance


  #2  
Old December 29th, 2004, 10:03 PM
Ken Snell [MVP]
external usenet poster
 
Posts: n/a
Default

One typically does not "show" a table to a user of the database (tables
should be "reached" only by the developer and by forms and by queries).
Instead, one "shows" a query's results (in a form) that uses the table as
its data source.
--

Ken Snell
MS ACCESS MVP


"Bob" wrote in message ...


--
After searching Google.groups.com and finding no answer, Bob Vance asked:

I have a made a command button to print a table how do I go about getting
a button to SHOW a table?

Thanks in advance.........Bob Vance



  #3  
Old December 29th, 2004, 10:06 PM
Bob
external usenet poster
 
Posts: n/a
Default

Seems strange I can shortcut to print it but cant shortcut to see it.....TIA
Bob

"Ken Snell [MVP]" wrote in message
...
One typically does not "show" a table to a user of the database (tables
should be "reached" only by the developer and by forms and by queries).
Instead, one "shows" a query's results (in a form) that uses the table as
its data source.
--

Ken Snell
MS ACCESS MVP


"Bob" wrote in message ...


--
After searching Google.groups.com and finding no answer, Bob Vance asked:

I have a made a command button to print a table how do I go about getting
a button to SHOW a table?

Thanks in advance.........Bob Vance





  #4  
Old December 29th, 2004, 11:22 PM
John Vinson
external usenet poster
 
Posts: n/a
Default

On Thu, 30 Dec 2004 11:40:02 +1300, "Bob" wrote:

And I can put a shortcut to the table on my desktop but cant put one on my
main access screen TIA Bob


You are apparently misunderstanding the whole purpose of Tables.

Tables are repositories for storing data. That's ALL that they are.

They're not designed for presentation or editing of data; one should
use a Form to do that.

They're not designed for printing; one should use a Report for that
purpose.

They're not documents, like a Word document or a spreadsheet. An
Access screen typically does not have shortcuts on it; the Database
window has a Tables tab which lists the tables, if you need to open a
table for development purposes. But for routine interaction with the
data there is usually no good reason to open a Table datasheet AT ALL.

John W. Vinson[MVP]
  #5  
Old December 29th, 2004, 11:59 PM
Bob
external usenet poster
 
Posts: n/a
Default

I have a Charge ID, Description, Amount, eg:
ARC---Auckland Racing Club---$20
WRC----Wellington Racing Club---$50
VCBWD----Vet Care Bot & Worm Drench
Just would be easy if I could check my Charge ID if I wasnt sure what it
was..........TIA Bob

"John Vinson" wrote in message
...
On Thu, 30 Dec 2004 11:40:02 +1300, "Bob" wrote:

And I can put a shortcut to the table on my desktop but cant put one on my
main access screen TIA Bob


You are apparently misunderstanding the whole purpose of Tables.

Tables are repositories for storing data. That's ALL that they are.

They're not designed for presentation or editing of data; one should
use a Form to do that.

They're not designed for printing; one should use a Report for that
purpose.

They're not documents, like a Word document or a spreadsheet. An
Access screen typically does not have shortcuts on it; the Database
window has a Tables tab which lists the tables, if you need to open a
table for development purposes. But for routine interaction with the
data there is usually no good reason to open a Table datasheet AT ALL.

John W. Vinson[MVP]



  #6  
Old December 30th, 2004, 12:33 AM
external usenet poster
 
Posts: n/a
Default

Set the button to open a subform called seetable.

Design that subform to include the data fields you want to see.

Then set that subform to datasheet view mode.

That's about as close as you'll get to what you want to do.

Though I'm betting there are other ways to do lookups and display what
you want from that button.

A lookup based on the primary key perhaps?

You can always use a dropdown combo field to display data in a
spreadsheet style also.




  #7  
Old December 30th, 2004, 01:03 AM
Bob
external usenet poster
 
Posts: n/a
Default

Sorry cant find Sub Form?..TIA Bob

wrote in message
...
Set the button to open a subform called seetable.

Design that subform to include the data fields you want to see.

Then set that subform to datasheet view mode.

That's about as close as you'll get to what you want to do.

Though I'm betting there are other ways to do lookups and display what
you want from that button.

A lookup based on the primary key perhaps?

You can always use a dropdown combo field to display data in a
spreadsheet style also.






  #8  
Old December 30th, 2004, 01:11 AM
John Vinson
external usenet poster
 
Posts: n/a
Default

On Thu, 30 Dec 2004 12:59:04 +1300, "Bob" wrote:

I have a Charge ID, Description, Amount, eg:
ARC---Auckland Racing Club---$20
WRC----Wellington Racing Club---$50
VCBWD----Vet Care Bot & Worm Drench
Just would be easy if I could check my Charge ID if I wasnt sure what it
was..........TIA Bob


Create a Combo Box on your form, based on this table; use the Wizard,
and accept its offer to hide the ID. That way the computer will see
the Charge ID, you'll see the Description, and you'll both be happier!

John W. Vinson[MVP]
  #9  
Old December 30th, 2004, 01:49 AM
Bob
external usenet poster
 
Posts: n/a
Default

Ive created a form of my table and it looks like how I would like to see it
but cant open it like i have it in forms..Sorry couldnt find how to get
Combo Box from the wizard...Thanks Bob

"John Vinson" wrote in message
...
On Thu, 30 Dec 2004 12:59:04 +1300, "Bob" wrote:

I have a Charge ID, Description, Amount, eg:
ARC---Auckland Racing Club---$20
WRC----Wellington Racing Club---$50
VCBWD----Vet Care Bot & Worm Drench
Just would be easy if I could check my Charge ID if I wasnt sure what it
was..........TIA Bob


Create a Combo Box on your form, based on this table; use the Wizard,
and accept its offer to hide the ID. That way the computer will see
the Charge ID, you'll see the Description, and you'll both be happier!

John W. Vinson[MVP]



  #10  
Old December 30th, 2004, 02:27 AM
John Vinson
external usenet poster
 
Posts: n/a
Default

On Thu, 30 Dec 2004 14:49:56 +1300, "Bob" wrote:

Ive created a form of my table and it looks like how I would like to see it
but cant open it like i have it in forms..Sorry couldnt find how to get
Combo Box from the wizard...Thanks Bob


I do not understand. "can't open it like I have it in forms" means
nothing to me.

John W. Vinson[MVP]
 




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
transpose john Using Forms 1 November 24th, 2004 06:16 PM
Duplicate data Rob Green Database Design 3 November 7th, 2004 03:08 AM
How do I chart part of data but show all data in data table? CAngel Powerpoint 2 October 22nd, 2004 11:13 PM
Autonumber Ally H. General Discussion 7 August 27th, 2004 04:51 PM
resize table from A4 size to A5 ims New Users 3 June 9th, 2004 01:05 AM


All times are GMT +1. The time now is 04:55 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.