|
Forum home »
Delegate support and help forum »
Microsoft Access Training and help » ms access training - I woul like to know more about connecting relationship?
ms access training - I woul like to know more about connecting relationship?
The UK's most regular instructor-led training courses.
Training information: ms access training
· Microsoft.access.courses
· Microsoft Access Training uk See also
· microsoft access training
· access vba courses
· access database course Resolved · Low Priority · Version Standard
I woul like to know more about connecting relationship?
by - delegate Jeannie [2 posts] (2007 Jul 20 Fri, 09:52) Reply
I could not find the way to joint the two or three relating deta to be joint together.
RE: I woul like to know more about connecting relationship?
Using SQL you can achieve this.
Use a SELECT QUERY to select the data from the different tables and use the UNION command tojoin them together.
So, it looks like this:
SELECT [Table1.field1],[Table1.field2],[Table1.field3],
FROM Table1
UNION
SELECT [Table2.field1],[Table2.field2],[Table3.field3],
FROM Table2
Field 1, 2, and 3 must be the same data type
Related articles
· Learn about Subqueries in Access Courses
· Reasons to Consider Microsoft Access Training
· Why a Microsoft Access Course Could Change the Way You Do Business
· Discover the Secrets within Your Business through Microsoft Access Training
· Do You Have Trouble Understanding Databases? Consider a One-on-One Access Course
| Access tip:
Create a custom Close button on a Form
By default, Forms that you create in Access have a full set of control buttons, that is, a title bar with Minimize, Maximize and Close buttons in the top right-hand corner and a Control Menu in the top left-hand corner.
Sometimes Access needs to follow certain procedures or events as users close a Form (such as automatically opening another Form perhaps). So it is often a good habit to create a custom Close button on a Form for everyone to use, rather than the standard closing cross.
To create a custom Close button:
1) In Form Design View, draw a Command Button onto the Form.
2) Use the Command Button Wizard to select Form Operations under Categories, and Close Form under Actions.
3) Choose Finish.
Access then creates the button and code to close the form for you. You can add any extra code that needs to run as the Form closes to the same Close procedure.
However, the creation of a custom Close button is pointless if the closing X in the top right-hand corner of the Form remains active. To make the closing X inactive, open the Form Properties box then on the Format tab set the Close Button setting to No. This will grey out the closing X leaving it visible, but inactive.
View all Access hints and tips |
|