Access Made Easy. Form Controls.

Size: px
Start display at page:

Download "Access Made Easy. Form Controls."

Transcription

1 Access Made Easy Form Controls 06

2 This guide was prepared for AccessAllInOne.com by: Robert Austin This is one of a series of guides pertaining to the use of Microsoft Access. AXLSolutions 2012 All rights reserved. No part of this work may be reproduced in any form, or by any means, without permission in writing.

3 Contents Form Controls... 3 Form Designer Ribbon... 4 Form Tools... 4 Property Sheet... 4 Fields Sheet... 4 Controls Form Object... 5 Controls Text Boxes... 5 Controls Labels... 8 Controls Buttons... 9 Controls List Boxes Controls Combobox Using queries as a row source Controls Tab Controls Attachments Control Image Control Check-Box, Option and Toggle Buttons Controls Frame or Option Group Controls Hyperlink Controls Wizard Questions Answers... 29

4 Form Controls In this unit we will focus on the controls with which we populate our forms. We will take another look at the form designer and discover where the controls are located, how to change their properties with the Property Sheet and how to bind controls to the record source. This unit will be more practical than previous units to encourage you to get a good feel and understanding of controls and their uses. Form Views Form Controls Figure 6.1 Form Tools Figure 6.2 Figure 6.3 Figure 6.4

5 To get us started, the four main objects you will be using are in figure 6.1, 6.2, 6.3 and 6.4. Form Designer Ribbon The centre of the form ribbon (figure 6.1) contains all the form controls you need to develop Access Applications. The Form View section lets you choose between Form View, Developer View, Layout View, and Datasheet View. Form View displays the form in run-time. Controls are bound to the Form Object Record Source and can modify, add or delete data. Layout View allows controls to be rearranged and helps with creating pleasing interfaces. Controls from the Field List can be dropped onto the form and control properties can be altered, but Events cannot be added or edited and data cannot be changed. Design View gives you full control over the form. Controls can be added, removed, shifted around and have their properties altered. Controls are not bound to the record source in design view but indicate the field they will try to use when in layout and form view. Form Tools The tool you will interact with the most is the Property Sheet. Property Sheet Property Sheet figure 6.3 displays all the properties of the form control currently selected. The cursor in the figure 6.3 is highlighting the control StudentID. This combo box will change to the control currently selected. Alternatively you can open the dropdown menu and select a control from the list. Properties are grouped into four sections: Format houses every field associated with control presentation. Data houses every field associated with the control s data, e.g. Record Source. Events contains every event to which the controls react. Other other settings that don t fit into any of the above. All an unordered list of properties. Fields Sheet Add Existing Fields figure 6.2 If the Form Object has a Record Source set, the Fields Sheet will provide all the fields available to the form from the Record Source Recordset. These can be dragged onto the form in Design or Layout View. In addition to the Fields Sheet will be those of tables that are directly related to the forms record source. Figure 6.4 show tbldepartment and tblsuppliers are related tables and their fields are available behind the + sign.

6 Controls Form Object To get us started developing forms, we will create a new blank form and connect it to a table. Please open up Consumables.accdb. Open the database in administrative mode by holding shift when opening the accdb file. Mouse over the Create Ribbon and click the Form Design button. Save the form as frmdevform1. The form object is unbound and is not connected to any source of data. Press F4 to view the property sheet. Click on the Data tab and select the tbldepartment table for the Record Source. This action has set the Form Object s recordset to tbldepartment (figure 6.5). Click on Add Existing Fields in the Tools group of the Design Tab and we can see in the Field List that all tbldepartment fields are available to the form. Figure 6.5 Figure 6.6 Now we ll add some controls to let us edit the table. Controls Text Boxes Text boxes are by far the most useful control at our disposal. They allow almost any data type to be edited and can also perform validation and input masks to assist developers in ensuring users enter only valid data. Add the Text Box control to the form by first clicking the Text Box then drawing out a text box on the form area. You should now have an unbound Text Box and it s label Text0:

7 Figure 6.7 shows the process you will go through as you add the text box to the form. Figure 6.7 All controls that are painted onto the form in this manner will be Unbound. Unbound controls will not contain any data retrieved from the form s recordset (which should now be set to tbldepartment). Binding controls to record source fields With the text box selected as figure 6.7, go to the property sheet, click on Data tab and set the Control Source to Department. Then in the Other tab change the Name to txtdept. The text box will now have the field name it is connected to as text in the box. The Name field is that control s name. The Text0: to the left is a label. Most controls when they are created have a label associated with them; they will move around the form with their parent object. Highlight the text box. Set the Control Source to Department.

8 Change the name of the text box to txtdept. Figure 6.8 Now change to Form View, figure 6.1 and the text box will have tbldepartment data in it. You can use the form s navigation buttons (or the left and right arrow keys) to cycle through the records of the tbldepartment table. Warning! This control is live! If you make a change to the data in the control it will be saved to the database. Figure 6.9

9 Locking Controls To prevent any alteration of data through a control, i.e. to make it Read-Only, change the form back into Design or Layout Mode, bring up the property sheet, click the Data tab and change the Locked property to Yes (figure 6.10). Figure 6.10 Disabling controls Just locking a control doesn t stop a user from selecting the text nor changing the focus to the control (changing the focus to the control whilst locked can be useful for allowing copy-paste operations). If we would like a control to simply display data but not allow copy-paste nor allow the control to have focus, we can change the Enabled property to No on the control. On your form, select the text box and change the Enabled property to No (enabled is just above Locked in figure 6.10). Save. Switch the form to Form View and try to click into the control. What we have made here is a textbox that changes as we cycle through the tbldepartment records but cannot be updated, deleted or receive the focus. Controls Labels Labels provide instruction or notice to the user that does not change. Form headings, footer remarks, labels for controls, useful hints to the user. They don t actually contain any data but do react to some events. Click on the label of the txtdept control. Select the Format tab on the Property Sheet. The first property is Caption.

10 Control Captions Labels, Buttons and some other controls have a property called Caption. This is the text that you wish the control to display. Usually this property is only available for those controls that do not bind to data. Change the text in the label to Department Name. The text in the label will be updated immediately but you will need to resize it and change its position to line up with the text box. Figure 6.11 The little circles in figure 6.11 mark out all you need to move the controls independently of one another; otherwise any movement of a control or its label will result in both moving together. Formatting controls Labels and all other controls possess a lot of options with regards to their format, style, border style, 3D effect etc. Select the label once more, click on the Format tab on the property sheet and move down to the background colour property; change the colours to whatever you like and make sure the Back Style property is set to normal. You can also change the border style to 1pt and alter its colour. Font formats are also available below that. Labels, aside from giving static visual information do not do anything. If we want actions to be performed we have to use buttons. Controls Buttons Buttons are solely for the use of executing actions. You may change their format and style just like you can with labels and text boxes but buttons have a short set of concise events associated with them. Click the Button control in the Controls Ribbon and draw a button onto your form (figure 6.12). The button is given a default caption of Command followed by a number. Click on the format tab of the properties window and change the caption to Display MsgBox.

11 Figure 6.12 Change the Name of the control to cmddisplaymsgbox then click on the Events Tab. We have prefixed the name of the control with cmd because it s a command button control. 1 Adding Events The events tab at the very top has the OnClick event. Click the ellipsis circle in red and when you see figure 6.14, highlight Code Builder and click OK. Figure 6.13 Figure We use 3 letter short-hand versions of the controls to make identification easier. Text boxes use the txt prefix, labels the lbl prefix, option buttons the opt prefix, etc.

12 In the code window type the MsgBox code to look like figure 6.15, click save and close the code window. Change the form to Form View and click the button and figure 6.16 should display. Figure 6.15 Figure 6.16 Other events are coded the same way. Note: This is the first time you will have used any VBA on this course. We dedicate an entire unit to VBA later on in this course. Controls List Boxes List boxes, along with combo boxes, provide a method for displaying lists of data and making use of selected data. You can configure list boxes to allow one or multiple select items within to be selected. We will setup the control to list all departments and allow one to be selected, but first we have to change the form a little. Open your form and delete all the controls. In the Controls Ribbon click the List Box icon and draw a new listbox onto your form. Now, select the Form Object and change the Record Source to tblconsumables. Change the control source and row source properties to match Figure Now put the form into Form View and your control will be populated with numbers (Figure 6.18)! Why is that?

13 Figure 6.17 Figure 6.18 Setup list boxes and combo box with columns List boxes and combo boxes fetch their data themselves and have their own recordset object, but they are not very clever at displaying it. Under the Data tab the Row Source property specifies the location of that data or specifies a query or SQL statement from which the data comes. At the moment we have the row source set to tbldepartment and so the list box will only read one value (DepartmentID) without being formatted. In order to display the values we want to see we need to change the Row Source to tbldepartment. Change the form to layout or design view and then click on the ellipsis in the row source property Figure 6.19 What we need to do is setup the list box or combo control to display column 2 Department and store the value of column 1 DepartmentID. We have already set the control s Control Source property to Department, so when a user selects a row in the list box, that row s value will be saved into the Department field of the parent form. Beneath that property is another called Bound Column which will already be set to column 1 ( DepartmentID). Now we just need to display columns 2 and 3 and hide column 1.

14 Hiding the bound column Open the Format tab and the first couple of properties allow us to do just that. Column Count sets the number of columns that are visible in the List box or Combo box. Set it to 3. Under Column Widths enter 0;3;2 (Figure 6.21), and that s the trick! Column 1 is hidden by having no width, whilst columns 2 and 3 are set to be visible. Figure 6.21 Now flick the form back to Form View and you ll see only columns 2 and 3 in figure 6.18! In a Combo Box we will design our own query and display those results. Default Values All controls that can be linked to a Control Source can be set to a default value. This is identical in behaviour to the default value property in tables. The Default value in controls may be set completely differently to that of the underlying field. Enabling and disabling controls An interesting feature of bound controls is that they can be disabled. This is interesting for two reasons; firstly, they give the user the knowledge that the content cannot be changed useful for primary keys and other non-changeable data but they can also be enabled when a specific action has been completed for example having clicked another button or selected a control from a radio option. On double click event We ll demonstrate the on double-click event as well as the enabling and disabling of a control.

15 Highlight the list box and change its name to lbxdepartments. Add a new command button to the form. In Other, change its name to cmdtoggleenabled. In Events enter On Dbl Click and click the ellipsis, select code if asked. Private Sub cmdtoggleenabled_dblclick(cancel As Integer) lbxdepartments.enabled = Not lbxdepartments.enabled End Sub In the code window enter the above text. Save, flip back to the form, change it to Form View and double click the button. The little piece of code we entered above changes the Enabled property to its opposite. Double click the button and the list box control will toggle between enabled and disabled. Controls Combobox Combobox controls are very much like List boxes in operation and features except that comboboxes select only one row and display their lists when clicked. Using queries as a row source Open a new form and save it. Click the combo box control icon in the controls ribbon, draw the new control onto the form and press F4 to bring up the control s property sheet, flip to Data and click the ellipsis of the Row Source property. You will be asked if you want to use the query editor (figure 6.19). Click Yes. Figure 6.23 In the query window we will ask for all consumable records to be returned together with their SupplierID and Supplier name.

16 Add the two tables tblsuppliers and tblconsumables. The relationship shown in figure 6.23 will automatically be placed. Drag down the SupplierID and the Supplier fields from tblsupplier, and drag down the ConsumableName field from tblconsumable table. Now, counter to reason, click the big Close button, top right of the ribbon. You will receive a long message; click Yes you just agreed to Access turning your query into an SQL statement and have that SQL statement saved into your combo box s Row Source property. Alternatively we could save the query as an object in itself, but we don t need to do that for this exercise. When you are done, right click the Row Source property and Zoom, and it should look something light figure In the List box section we used the table tbldepartment and relied on that table s structure to choose the position of the primary key field (DepartmentID). Here in our query we chose for ourselves the first field to be SupplierID and the description fields to follow. Now we must setup the combobox to bind to the correct column and display the correct data. Still under the data property tab, ensure Bound Column is set to 1. Under the Format tab, Column Count should be 3. Column widths should be 0;3;2 again. Now change to Form View and you will see our query results displayed in the dropdown of the box. Figure 6.24

17 Unbound Controls You may have noticed we did not set the combo box to bind to a field. This is perfectly acceptable and still allows the control to perform exactly as expected. The only thing that doesn t happen, is the value the user selects is not placed into a table but kept for itself. Sometimes this is exactly the behaviour we want. For example, open the Teaching Institute Software System and you will be presented with frmemployeelogin. The combobox does not link to a table and hides itself to be used later in the application. Controls Tab If you are not in the Teaching Institute system please open it up as we will be referring to it going forward. The tab control is a container that contains other controls. We ve seen them used in settings, preferences, multi-tasks and other places; Access gives you the option to use them too. As figure 2.26 shows the context menu allows you to insert pages, delete pages and reorder these pages at will. In this section we will add some controls to each page, check the unique features of controls and learn more about access form controls in general. Firstly, tabs do not bind to anything, they only contain other controls which may bind and react to a very short list of events. We will recreate the above tab and include an attachment object just to show off and demonstrate tab and attachments. Figure 6.26

18 Adding controls to tabs Create a new form and save it as frmtesttab. Click the Tab control in the Controls group of the Design tab, draw a 4 by 4 tab onto the form and pages 1 and 2 will have already been created for you. Right-click somewhere on the tab control and select Page Order. Change the page order such that page 2 is first. Click ok when done and select page one. Click the Format tab of the property sheet and enter the text Last for the Caption property; change page 2 to First. Highlight the first page again and click on a command button. Draw the small command button into the Tab (try to do it without looking at figure 2.27). Change its caption to 3. Change its name to btn3 and add the following code to the onclick event: MsgBox "Button " & Me.ActiveControl.Caption & " was clicked", vbcritical Open the Last tab and add another two buttons to perform a similar operation as btn3 and copy in the same line of code to their Event Procedure make sure to use the Layout View to align the two buttons (figure 6.28). Figure 6.27 Figure 6.28 In Form View, when clicking buttons 1 and 2 you should receive a similar message to button 3, except it should say 1 or 2. There is only one control that Access does not allow into a Tab Control, and that s another Tab Control. Now we can get more adventurous. In the next section we ll add an attachment field to a new tab. Controls Attachments Attachments are a new data type introduced in Access 2007 to provide us with an ability to insert files into a database. Unlike hyperlinks which link to outside objects the attachment control actually imports files into an Access database which means Access never loses consistency nor has to maintain files outside its control something that is a problem with hyperlinks.

19 The Teaching Institute Software System has implemented an attachment field in tblstudents and has included some mug shots so we can get started immediately with using attachments. The Attachment control is a paperclip and is added to the form in the same way as other controls. As a way of continuation of the Tab Control exercise, add an attachment control into the Last page of the tab control. Name the attachment control attpicture and change its label caption to Picture. Use the Layout View to position it and its label into the same configuration as figure Figure 2.29 The attachment control at the moment does nothing. Even in Form View any manipulation of the control is futile. Unlike less complicated controls, the attachment control can only have the value of an underlying table field of data type attachment. That being the case we will link up attpicture to the student table s attachment field to make it operational. Enter your form into design mode once more and select the Form Object. Change the Record Source to tblstudents and update attpicture s Control Source to Field1. Save and view the Form in layout mode. The form will have navigation buttons enabled by default, so navigate back and forth through the recordset to test whether the attachment control updates. If you are not seeing any picture, check the Control Source again and then check Display As is set to Image/Icon in the Format property sheet.

20 Note: The attachment object breaks a lot of rules in Relational Database terms; for one, that single field can have many values so is a repeating group but the extra functionality it offers seems to outweigh the costs. The difficulty with adding such functionality into an Access file is that the file will bloat terribly. The Attachment data type does handle files quite well a 100kb picture will only take up an extra ~100kb of file space the downside however is that you as a developer have to take user expectations into account and expect the unexpected. For example, one house building company may have 20 building sites, each site having its own database entry. Safety assessments can be grouped together so that 1 pdf document pertains to multiple sites. A user will naturally think that the 4mb safety assessment file needs to be attached to each site and so your access database file just bloated by 80mb in the space of 2 minutes! At that rate your accdb will reach its maximum file limit in about 50 minutes! More planning on your part as a developer can help minimise this bloat, but also educating your users to the correct use of your application is a must, especially when using attachment data types in an Access database file. Adding files to attachment data types Figure 2.30 Access provides the functionality required to manipulate attachments. Double click a bound attachment object and it will display the attachment dialog box figure Here we can add, remove, open and save our attachments. Control Image The image control has been rendered impotent in recent incarnations of Access. It was used to store images and was a wrapper object for images stored as OLE objects in a table. The attachment data type handles images better and provides all the

21 necessary functionality to maintain images without the bloating caused by an OLE Object. But we can still use the image control to display static pictures with a minimum of fuss. Adding an image to a form To add an image to a form or tab, select the image icon and draw the image frame. Open the property sheet for the image object and then the Format sheet. There are a couple of properties which are unique to image controls. Picture (none) is the default value but click the ellipsis and this is the principle method of loading an image into an image control. Picture tiling if the image is not large enough to fill the image frame, setting this option to Yes will tile the image to fill the whole image control. Size mode Zoom will change the size of the image so that it fits into the image control and can be seen in its entirety, maintaining aspect ratio. Stretch fills the image with the picture regardless of aspect ratio. Clip places the image at its normal size and shape into the image and any overhead is simply not displayed. Picture alignment determines where the image is painted in relation to. Picture type determines if the picture is saved into the form or linked. The image control does react to some events click, dbl click, mouse up/down/move.

22 Control Check-Box, Option and Toggle Buttons A check box, an option button and a toggle button are the same type of controls with different symbolic meaning, but for want of finding a distinction, their shape is the only material difference. All three controls offer three different states which represent the two possible states of a Boolean data type and the two possible states of a database field; that is, Yes, On, or True; No, Off, or False; and, Null 2 Triple state controls, bound and unbound behaviour These controls have a property called Triple State on their Data tab with which you can set whether the control allows it. However, triple state behaviour depends on the underlying bound field s own ability to be in a Null state or not. For Unbound controls the triple state is entirely possible in any situation. For a Bound control the ability to be in a Null state is determined by the ability of the Bound field, regardless of whether triple state is set or not 3. Adding controls from the Fields List Let s put all three controls into action by using the Active field of the tblteachers table. Perform the following actions: Open a new form and save it as frmteacherstest. Set the Form Object s recordset to tblteachers. Open the Fields List and drag TeacherID, LastName, FirstName, Active onto the form. 2 A Null is not a value but an understanding that a value is missing. Null is a property of a field not a data type. 3 Setting the triple state to yes when the underlying field does not allow Null states can cause issues with your controls, so unless Null is a desirable state you should not use triple state.

23 Now add a toggle button just under the Active control, triple state set to no. Now add an option just underneath the toggle, triple state set to no. Change the toggle button s Control Source to match that of the Active control. Change the option Control Source to match that of the toggle button. Open the form in Form View. Tick and untick the Active control. That these controls are linking to the same field is true and that they behave in exactly the same way is obvious, but they all have their own semantic meaning which is best felt when used in combination with the Frame control, which is discussed in more detail below. Of the three, the toggle button has one property that differs from the check box and option; toggle buttons have captions. Controls Frame or Option Group The purpose of a frame control is to provide a visual group of alternative answers to a single question. The frame itself may be bound to a Control Source. Inside the frame one can place toggle buttons, check boxes and options of any mix. Each control is given its own value, called an option value. The frame takes on the value of the control that is currently selected. That value may only be an integer number. This can best be seen in action. Rather than making a new form we are going to change an existing form of the Teaching Institute System. Changing an existing form Open the form frmclassview in Form View. Figure 6.31 The item we are going to change is the Location combo box. This was chosen because there are only four locations in the tbllocations table at present and we can

24 easily alter the form to allow for these four alternatives. 4 You should be a dab hand with forms now so the instructions will be brief and concise. Open the form in deign view. Stretch the Detail section of the record down a about another third. Draw on a Frame control in the space given. Add four toggle buttons into the frame control. Select the data tab in the property sheet. Make sure each control has its own Option Value. Highlight the frame control and set its Control Source to LocationID. Open the table tbllocations. Bounce between tbllocations and frmclassview and update the caption of each toggle button to read Room and the corresponding ClassRoom field. Change the Frame s label to read Location. Change the form to Form View. At the end of this you should have a form that looks something like figure Experiment with the frame by changing the Location combo box and conversely tick on the toggle buttons to see them update each other. Change the form to design view Add an additional four checkboxes and label and assign them the same values as the toggles Add additional option buttons and also label and assign them the same values. If all goes to plan when you now put the form into Form View you will have figire Do the same experiements by clicking check boxes, options, toggles and changing the combo box. You will probably notice they don t all update at the same time but do eventually update. This is a bug in Access but nothing to worry about. There are practically no situations you would ever want to do this in real life except as a leanring exercise. Figure The number of controls inside the frame control is not dynamic. If a new location is added to tbllocation we would need to change the form to allow for the new location, so this isn t an ideal situation to use option control but the end meets our needs.

25 Figure 6.33 Controls Hyperlink There is no hyperlink control, per se, but there is a hyperlink data type in Access tables. To implement the hyperlink we use the text box control. Under the formatting tab midway down there are two properties - Is Hyperlink, Display As Hyperlink. If you have a field that is of type hyperlink you can set any text box up using these two properties. A hyperlink field is automatically executed when clicked. The text is interpreted as a HTTP request but prefixing the URL with another protocol (i.e. FTP, Telnet, HTTPS) is allowed. Access doesn t perform the application launch. Rather Access informs the operating system to perform the execution of the URL. However access does prefix URLs with HTTP, if a protocol is not provided and thus news.bbc.co.uk is passed for execution as Controls Wizard The control wizard is actually an activation button for a host of wizards that assist with creating controls. In particular the wizards help with frames, comboboxes, list boxes and buttons.

26 If you have got this far in the unit you may be asking, why didn t you say so? The Controls Wizard can be very useful but having a thorough understanding of the controls and playing with various controls and their settings is the only real way to appreciate their abilities. Now you have gone through this unit, you will be far more familiar with the controls wizard than otherwise. Even if you haven t understood everything, you now have an excellent foundation to help use wizards effectively. Over time you will probably have forgotten that wizards even exist and get annoyed that they keep popping up.

27 Questions 1) Which of the following does the Fields List contain a. Fields with all tables in the database. b. Fields of the Form Object Record Source. c. Fields of related tables. d. Fields available in queries. e. Fields used in a form. 2) In the property sheet which of the following are not tabs a. Structure overview. b. Tables list. c. All. d. Parties. e. Other. 3) Which of the following does the tools ribbon not contain a. Reminder control. b. Calendar control. c. Toggle control. d. Bing search control. e. Frame control 4) Text boxes can represent which data formats a. Numbers. b. Text. c. Telephone numbers. d. Hyperlinks. e. Pictures. f. Attachments. 5) Layout view allows you to do what? a. Alter the names of controls. b. Change the position of text boxes. c. Delete associated labels. d. Disable and enable controls. e. Change the Control Source. 6) Events may be added with which of the following? a. Execution Builder. b. Control Builder. c. Code Builder. d. Macro Builder. e. Exception Builder. 7) True or false? List boxes: a. Have their own recordsets. b. Edit data in the Control Source. c. Can hide columns. d. May be enabled and disabled. e. May be filtered

28 8) Which of the following are triple state controls a. Text boxes. b. Check boxes. c. Woggle buttons. d. Sub forms. e. Attachment controls. 9) Combo boxes share which qualities with List Boxes? a. The ability to select multiple items at a time. b. The ability to be part of an option group. c. The ability to display attachments. d. The ability to contain SQL or queries. e. The ability to have their own recordset objects. 10) Tab controls may contain which controls? a. Buttons. b. Hyperlinks. c. Tabs. d. Options. e. Frames. 11) Attachment controls allow you to perform which tasks a. Adding files to a database. b. Save files outside of a database. c. Save controls under one field. d. Store any files in a single field. e. Keep tabs and forms organised. 12) Attachment fields can cause issues because: a. They are very inefficient at storing files. b. They may contain the same files multiple times. c. Operating system file restrictions disallow file attachments. d. Maximum accdb file size may be reached quickly. e. They can contain very large objects. 13) Control Sources of some objects may contain queries. Which ones? a. Check boxes. b. Text boxes. c. Unbound object frames. d. Combo boxes. e. List boxes. 14) Image controls are like label controls. Why? 15) What are control captions? 16) Which events are valid control events? a. On click. b. On mouse squeeze. c. On open. d. On Tap. e. On mouse move.

29 17) Which wizards would you like to have known about at the beginning of the unit? a. Table wizard. b. Query wizard. c. Macro wizard. d. Control wizard. e. Report wizard. 18) Control associated labels do not have events. True or false? 19) Text boxes can be made to look like labels and act like text boxes. True or false? 20) Two controls in a frame control may have the same name. True or false?

30 Answers 1) (b), (c), (d) if a query is used as the record source) 2) (a), (b), (d) 3) (a), (b if no active controls used), (d) 4) (a), (b), (c), (d) 5) (a), (b), (c), (d), (e) 6) (c), (d) 7) see below a. true b. true c. true d. true e. false 8) (b) 9) (d), (e) 10) (a), (b), (d), (e) 11) (a), (b), (d) 12) (b), (d), (e) 13) (d), (e) 14) They are not used anymore for storing picture in tables as ole object. Attachments have surpassed them. 15) They are labels associated with controls. 16) (a), (e) 17) (d) 18) True 19) True 20) False

Access Made Easy. Forms.

Access Made Easy. Forms. Access Made Easy Forms 05 www.accessallinone.com This guide was prepared for AccessAllInOne.com by: Robert Austin This is one of a series of guides pertaining to the use of Microsoft Access. AXLSolutions

More information

Contents. Creating Forms

Contents. Creating Forms Access 2007 Forms Contents Creating Forms... 3 Creating a new form 3 Design view and Form view 5 Creating a user-defined form 5 Changing the look of your form... 6 Layout View 6 Design View 6 Moving and

More information

Access Forms Masterclass 5 Create Dynamic Titles for Your Forms

Access Forms Masterclass 5 Create Dynamic Titles for Your Forms Access Forms Masterclass 5 Create Dynamic Titles for Your Forms Published: 13 September 2018 Author: Martin Green Screenshots: Access 2016, Windows 10 For Access Versions: 2007, 2010, 2013, 2016 Add a

More information

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the use

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word... 1 Get Organized... 1 Create the

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

CPM-200 User Guide For Lighthouse for MAX

CPM-200 User Guide For Lighthouse for MAX CPM-200 User Guide For Lighthouse for MAX Contents Page Number Opening the software 2 Altering the page size & Orientation 3-4 Inserting Text 5 Editing Text 6 Inserting Graphics 7-8 Changing the Colour

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access USING MICROSOFT ACCESS 1 Interfaces 2 Basic Macros 2 Exercise 1. Creating a Test Macro 2 Exercise 2. Creating a Macro with Multiple Steps 3 Exercise 3. Using Sub Macros 5 Expressions

More information

Access: Using Forms for Data Entry and Editing

Access: Using Forms for Data Entry and Editing Access: Using Forms for Data Entry and Editing Viewing and Entering Data with Forms A form is the most convenient layout for entering, changing, and viewing records from a database table or query and are

More information

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3 Quick Start Guide - Contents Opening Word... 1 Locating Big Lottery Fund Templates... 2 The Word 2013 Screen... 3 Things You Might Be Looking For... 4 What s New On The Ribbon... 5 The Quick Access Toolbar...

More information

Microsoft Excel XP. Intermediate

Microsoft Excel XP. Intermediate Microsoft Excel XP Intermediate Jonathan Thomas March 2006 Contents Lesson 1: Headers and Footers...1 Lesson 2: Inserting, Viewing and Deleting Cell Comments...2 Options...2 Lesson 3: Printing Comments...3

More information

Intermediate Microsoft Access 2010

Intermediate Microsoft Access 2010 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet & MS Access database Create Relationships Create a Form with a Subform Create Action Queries Create Command Buttons Create a Switchboard

More information

Computer Nashua Public Library Advanced Microsoft Word 2010

Computer Nashua Public Library Advanced Microsoft Word 2010 WordArt WordArt gives your letters special effects. You can change the formatting, direction, and texture of your text by adding Word Art. When you click the WordArt icon on the Insert tab, you will see

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources These basic resources aim to keep things simple and avoid HTML and CSS completely, whilst helping familiarise students with what can be a daunting interface. The final websites will not demonstrate best

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

Advanced Microsoft Word 2010

Advanced Microsoft Word 2010 Advanced Microsoft Word 2010 WordArt WordArt gives your letters special effects. You can change the formatting, direction, and texture of your text by adding WordArt. When you click the WordArt icon on

More information

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR REPORT... 3 DECIDE WHICH DATA TO PUT IN EACH REPORT SECTION...

More information

Microsoft Access Lesson 3: Creating Reports

Microsoft Access Lesson 3: Creating Reports Microsoft Access Lesson 3: Creating Reports In the previous lesson the information you retrieved from a database always was in the form of a table. This may be all you need if you are the only person using

More information

USING MICROSOFT ACCESS 2013 Guided Project 7-1

USING MICROSOFT ACCESS 2013 Guided Project 7-1 Guided Project 7-1 For this project, you enhance the functionality of a database for a friend s music collection. You use Design view to create a main form and a subform, and customize the form to add

More information

Interactive Powerpoint. Jessica Stenzel Hunter Singleton

Interactive Powerpoint. Jessica Stenzel Hunter Singleton Interactive Powerpoint Jessica Stenzel Hunter Singleton Table of Contents iii Table of Contents Table of Contents... iii Introduction... 1 Basics of Powerpoint... 3 How to Insert Shapes... 3 How to Insert

More information

Instructions for Using the Databases

Instructions for Using the Databases Appendix D Instructions for Using the Databases Two sets of databases have been created for you if you choose to use the Documenting Our Work forms. One set is in Access and one set is in Excel. They are

More information

Forms/Distribution Acrobat X Professional. Using the Forms Wizard

Forms/Distribution Acrobat X Professional. Using the Forms Wizard Forms/Distribution Acrobat X Professional Acrobat is becoming a standard tool for people and businesses to use in order to replicate forms and have them available electronically. If a form is converted

More information

Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0. University of Sheffield

Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0. University of Sheffield Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0 University of Sheffield PART 1 1.1 Getting Started 1. Log on to the computer with your usual username

More information

Let s Make a Front Panel using FrontCAD

Let s Make a Front Panel using FrontCAD Let s Make a Front Panel using FrontCAD By Jim Patchell FrontCad is meant to be a simple, easy to use CAD program for creating front panel designs and artwork. It is a free, open source program, with the

More information

Creating a Website with Publisher 2016

Creating a Website with Publisher 2016 Creating a Website with Publisher 2016 Getting Started University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2017 KSU Division of University Information

More information

SharePoint SITE OWNER TRAINING

SharePoint SITE OWNER TRAINING SharePoint SITE OWNER TRAINING Contents Customizing Your Site... 3 Editing Links...4 Give the site a new look...5 Changing Title, Description, or Logo...6 Remove the Getting Started Icons...6 Adding Apps

More information

Office Access. Intermediate

Office Access. Intermediate Office 2007 Access Intermediate May 2010 Contents INTRODUCTION... 1 DATABASE CONCEPTS... 3 WHAT IS A DATABASE?... 3 DATABASE OBJECTS... 3 WHAT IS A PRIMARY KEY?... 4 WHAT IS A FOREIGN KEY?... 4 WHAT IS

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface CHAPTER 1 Finding Your Way in the Inventor Interface COPYRIGHTED MATERIAL Understanding Inventor s interface behavior Opening existing files Creating new files Modifying the look and feel of Inventor Managing

More information

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41 Table of Contents Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 Office Button... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 8 Making

More information

John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA Introduction to

John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA Introduction to John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA 19341 610.280.2666 ccljtc@ccls.org Introduction to Microsoft Access 2007 Introduction to Microsoft Access What is Microsoft Access? Access

More information

Printing Envelopes in Microsoft Word

Printing Envelopes in Microsoft Word Printing Envelopes in Microsoft Word P 730 / 1 Stop Addressing Envelopes by Hand Let Word Print Them for You! One of the most common uses of Microsoft Word is for writing letters. With very little effort

More information

Adding content to your Blackboard 9.1 class

Adding content to your Blackboard 9.1 class Adding content to your Blackboard 9.1 class There are quite a few options listed when you click the Build Content button in your class, but you ll probably only use a couple of them most of the time. Note

More information

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5 Table of Contents ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5 TOPIC 1A: SORT A LIST... 6 Sort a list in A-Z or Z-A Order... 6 TOPIC 1B: RENUMBER A LIST... 7 Renumber a List

More information

Interactive Tourist Map

Interactive Tourist Map Adobe Edge Animate Tutorial Mouse Events Interactive Tourist Map Lesson 1 Set up your project This lesson aims to teach you how to: Import images Set up the stage Place and size images Draw shapes Make

More information

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

More information

Microsoft Access XP (2002) Switchboards & Macros

Microsoft Access XP (2002) Switchboards & Macros Microsoft Access XP (2002) Switchboards & Macros Group/Summary Operations Creating a Switchboard Creating Macro Buttons From Wizards Creating Macros Manually Using the Condition Column Start Up Parameters

More information

A Step-by-step guide to creating a Professional PowerPoint Presentation

A Step-by-step guide to creating a Professional PowerPoint Presentation Quick introduction to Microsoft PowerPoint A Step-by-step guide to creating a Professional PowerPoint Presentation Created by Cruse Control creative services Tel +44 (0) 1923 842 295 training@crusecontrol.com

More information

Database Design Lab: MS Access Queries

Database Design Lab: MS Access Queries Database Design Lab: MS Access Queries 1. Download lab6.accdb and rename it to lab7.accdb. 2. Create a simple query named qryauthor that has a Name attribute (i.e. Firstname Lastname ). a) Open lab6.accdb.

More information

ReggieNet: Content Organization Workshop. Facilitators: Mayuko Nakamura (mnakamu), Charles Bristow (cebrist) & Linda Summers (lsummer)

ReggieNet: Content Organization Workshop. Facilitators: Mayuko Nakamura (mnakamu), Charles Bristow (cebrist) & Linda Summers (lsummer) ReggieNet: Content Organization Workshop Facilitators: Mayuko Nakamura (mnakamu), Charles Bristow (cebrist) & Linda Summers (lsummer) Content Organization Overview There are many ways to organize content

More information

Karlen Communications Track Changes and Comments in Word. Karen McCall, M.Ed.

Karlen Communications Track Changes and Comments in Word. Karen McCall, M.Ed. Karlen Communications Track Changes and Comments in Word Karen McCall, M.Ed. Table of Contents Introduction... 3 Track Changes... 3 Track Changes Options... 4 The Revisions Pane... 10 Accepting and Rejecting

More information

Microsoft Access 2010

Microsoft Access 2010 2013\2014 Microsoft Access 2010 Tamer Farkouh M i c r o s o f t A c c e s s 2 0 1 0 P a g e 1 Definitions Microsoft Access 2010 What is a database? A database is defined as an organized collection of data

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

More information

Chapter 1. Getting to Know Illustrator

Chapter 1. Getting to Know Illustrator Chapter 1 Getting to Know Illustrator Exploring the Illustrator Workspace The arrangement of windows and panels that you see on your monitor is called the workspace. The Illustrator workspace features

More information

Access made easy. The Access Object.

Access made easy. The Access Object. Access made easy. The Access Object 01 www.accessallinone.com This guide was prepared for AccessAllInOne.com by: Robert Austin This is one of a series of guides pertaining to the use of Microsoft Access.

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

More information

Chapter 4 at a Glance

Chapter 4 at a Glance Create a form by using a wizard, page 84 Refine form properties, page 86 Refine form layout, page 92 Add controls to a form, page 95 Use Visual Basic for Applications to enter data in a form, page 100

More information

SEE GRADING CRITERIA AT THE BOTTOM. Database Tables Lookup Wizard Relationships Forms Queries Reports

SEE GRADING CRITERIA AT THE BOTTOM. Database Tables Lookup Wizard Relationships Forms Queries Reports Microsoft Office 2007 PDF Picture Tutorial Series Databases Tables, Forms, Queries, Lookup Wizard, Relationships August 2010 by Floyd Jay Winters and Julie Manchester winterf@scf.edu SEE GRADING CRITERIA

More information

MICROSOFT WORD 2010 Quick Reference Guide

MICROSOFT WORD 2010 Quick Reference Guide MICROSOFT WORD 2010 Quick Reference Guide Word Processing What is Word Processing? How is Word 2010 different from previous versions? Using a computer program, such as Microsoft Word, to create and edit

More information

Center for Faculty Development and Support Making Documents Accessible

Center for Faculty Development and Support Making Documents Accessible Center for Faculty Development and Support Making Documents Accessible in Word 2007 Tutorial CONTENTS Create a New Document and Set Up a Document Map... 3 Apply Styles... 4 Modify Styles... 5 Use Table

More information

Forms for Android Version Manual. Revision Date 12/7/2013. HanDBase is a Registered Trademark of DDH Software, Inc.

Forms for Android Version Manual. Revision Date 12/7/2013. HanDBase is a Registered Trademark of DDH Software, Inc. Forms for Android Version 4.6.300 Manual Revision Date 12/7/2013 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned

More information

Tables in Microsoft Word

Tables in Microsoft Word Tables in Microsoft Word In this lesson we re going to create and work with Tables in Microsoft Word. Tables are used to improve the organisation and presentation of data in your documents. If you haven

More information

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 1. Open Microsoft Word 2007. Word will start up as a blank document. 2. Change the margins by clicking the Page Layout tab and clicking

More information

Learn more about Pages, Keynote & Numbers

Learn more about Pages, Keynote & Numbers Learn more about Pages, Keynote & Numbers HCPS Instructional Technology May 2012 Adapted from Apple Help Guides CHAPTER ONE: PAGES Part 1: Get to Know Pages Opening and Creating Documents Opening a Pages

More information

SharpSchool Website Training Guide

SharpSchool Website Training Guide SharpSchool Website Training Guide This is a guide to help you get started on your SharpSchool website. SharpSchool sites will take the place of MyTeacherZone sites beginning July 1, 2013. Contents of

More information

ORGANIZING YOUR ARTWORK WITH LAYERS

ORGANIZING YOUR ARTWORK WITH LAYERS 9 ORGANIZING YOUR ARTWORK WITH LAYERS Lesson overview In this lesson, you ll learn how to do the following: Work with the Layers panel. Create, rearrange, and lock layers and sublayers. Move objects between

More information

Introduction to Excel 2013

Introduction to Excel 2013 Introduction to Excel 2013 Copyright 2014, Software Application Training, West Chester University. A member of the Pennsylvania State Systems of Higher Education. No portion of this document may be reproduced

More information

Chapter 4: Single Table Form Lab

Chapter 4: Single Table Form Lab Chapter 4: Single Table Form Lab Learning Objectives This chapter provides practice with creating forms for individual tables in Access 2003. After this chapter, you should have acquired the knowledge

More information

Introduction to Windows

Introduction to Windows Introduction to Windows Naturally, if you have downloaded this document, you will already be to some extent anyway familiar with Windows. If so you can skip the first couple of pages and move on to the

More information

Creating a Title Block & Border Using Chief Architect. Architectural Design & Residential Construction Penncrest High School

Creating a Title Block & Border Using Chief Architect. Architectural Design & Residential Construction Penncrest High School Creating a Title Block & Border Using Chief Architect Architectural Design & Residential Construction Penncrest High School 2017-2018 Select New Layout to begin designing your Title Block. Note: Once the

More information

FACULTY AND STAFF COMPUTER FOOTHILL-DE ANZA. Office Graphics

FACULTY AND STAFF COMPUTER FOOTHILL-DE ANZA. Office Graphics FACULTY AND STAFF COMPUTER TRAINING @ FOOTHILL-DE ANZA Office 2001 Graphics Microsoft Clip Art Introduction Office 2001 wants to be the application that does everything, including Windows! When it comes

More information

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved.

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved. Master web design skills with Microsoft FrontPage 98. This step-by-step guide uses over 40 full color close-up screen shots to clearly explain the fast and easy way to design a web site. Use edteck s QuickGuide

More information

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. *

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. * Microsoft Access II 1.) Opening a Saved Database Open the Music database saved on your computer s hard drive. *I added more songs and records to the Songs and Artist tables. Click the Options button next

More information

In this lesson, you ll learn how to:

In this lesson, you ll learn how to: LESSON 5: ADVANCED DRAWING TECHNIQUES OBJECTIVES In this lesson, you ll learn how to: apply gradient fills modify graphics by smoothing, straightening, and optimizing understand the difference between

More information

Center for Faculty Development and Support Creating Powerful and Accessible Presentation

Center for Faculty Development and Support Creating Powerful and Accessible Presentation Creating Powerful and Accessible Presentation PowerPoint 2007 Windows Tutorial Contents Create a New Document... 3 Navigate in the Normal View (default view)... 3 Input and Manipulate Text in a Slide...

More information

Intermediate Microsoft Word 2010

Intermediate Microsoft Word 2010 Intermediate Microsoft Word 2010 USING PICTURES... PAGE 02! Inserting Pictures/The Insert Tab! Picture Tools/Format Tab! Resizing Images! Using the Arrange Tools! Positioning! Wrapping Text! Using the

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2013

DOING MORE WITH WORD: MICROSOFT OFFICE 2013 DOING MORE WITH WORD: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Getting started with PowerPoint 2010

Getting started with PowerPoint 2010 To start PowerPoint, select Start/All Programs/Microsoft Office/Microsoft PowerPoint 2010. PowerPoint opens to a new presentation. A presentation consists of one or more slides. The window has three parts,

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Understanding Word Processing

Understanding Word Processing Understanding Word Processing 3.0 Introduction In this chapter you are going to learn how to create a simple memo or note or a complex and complicated multi column business document using word processing

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Get Organized... 1 Create the Home Page... 1 Save the Home Page as a Word Document...

More information

Electronic Portfolios in the Classroom

Electronic Portfolios in the Classroom Electronic Portfolios in the Classroom What are portfolios? Electronic Portfolios are a creative means of organizing, summarizing, and sharing artifacts, information, and ideas about teaching and/or learning,

More information

Basic Intro to ETO Results

Basic Intro to ETO Results Basic Intro to ETO Results Who is the intended audience? Registrants of the 8 hour ETO Results Orientation (this training is a prerequisite) Anyone who wants to learn more but is not ready to attend the

More information

Working with PDF s. To open a recent file on the Start screen, double click on the file name.

Working with PDF s. To open a recent file on the Start screen, double click on the file name. Working with PDF s Acrobat DC Start Screen (Home Tab) When Acrobat opens, the Acrobat Start screen (Home Tab) populates displaying a list of recently opened files. The search feature on the top of the

More information

Microsoft Word 2010 Basics

Microsoft Word 2010 Basics 1 Starting Word 2010 with XP Click the Start Button, All Programs, Microsoft Office, Microsoft Word 2010 Starting Word 2010 with 07 Click the Microsoft Office Button with the Windows flag logo Start Button,

More information

Using Flash Animation Basics

Using Flash Animation Basics Using Flash Contents Using Flash... 1 Animation Basics... 1 Exercise 1. Creating a Symbol... 2 Exercise 2. Working with Layers... 4 Exercise 3. Using the Timeline... 6 Exercise 4. Previewing an animation...

More information

Printerface Users Guide for UniPrint customers (revision 1) Logging into Printerface

Printerface Users Guide for UniPrint customers (revision 1) Logging into Printerface Printerface Users Guide for UniPrint customers (revision 1) Logging into Printerface To get the most out of Printerface, it is essential to have a user account. Go to uniprint.uwa.edu.au and select the

More information

Microsoft Office Word 2016 for Mac

Microsoft Office Word 2016 for Mac Microsoft Office Word 2016 for Mac Formatting Your Document University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2016 KSU Division of University Information

More information

Microsoft Word 2011 Tutorial

Microsoft Word 2011 Tutorial Microsoft Word 2011 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Microsoft Windows SharePoint Services

Microsoft Windows SharePoint Services Microsoft Windows SharePoint Services SITE ADMIN USER TRAINING 1 Introduction What is Microsoft Windows SharePoint Services? Windows SharePoint Services (referred to generically as SharePoint) is a tool

More information

Wordpress Training Manual

Wordpress Training Manual The Dashboard... 2 If this is your first time logging in:... 2 How do I change my password or email address?... 3 Search Engine Optimization (SEO)... 4 SEO for Pages... 4 SEO for Images... 5 Managing Pages...

More information

Interface. 2. Interface Adobe InDesign CS2 H O T

Interface. 2. Interface Adobe InDesign CS2 H O T 2. Interface Adobe InDesign CS2 H O T 2 Interface The Welcome Screen Interface Overview The Toolbox Toolbox Fly-Out Menus InDesign Palettes Collapsing and Grouping Palettes Moving and Resizing Docked or

More information

Stamina Software Pty Ltd. TRAINING MANUAL Viságe Reporter

Stamina Software Pty Ltd. TRAINING MANUAL Viságe Reporter Stamina Software Pty Ltd TRAINING MANUAL Viságe Reporter Version: 2 21 st January 2009 Contents Introduction...1 Assumed Knowledge...1 Pre Planning...1 Report Designer Location...2 Report Designer Screen

More information

Academic Word Processing with Word 2003

Academic Word Processing with Word 2003 Academic Word Processing with Word 2003 Doc 5.133 Ver 1 John Matthews May 2005 Central Computing Services Prerequisites This document assumes that you are familiar with the use of a computer keyboard and

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

This chapter is intended to take you through the basic steps of using the Visual Basic

This chapter is intended to take you through the basic steps of using the Visual Basic CHAPTER 1 The Basics This chapter is intended to take you through the basic steps of using the Visual Basic Editor window and writing a simple piece of VBA code. It will show you how to use the Visual

More information

Taskbar: Working with Several Windows at Once

Taskbar: Working with Several Windows at Once Taskbar: Working with Several Windows at Once Your Best Friend at the Bottom of the Screen How to Make the Most of Your Taskbar The taskbar is the wide bar that stretches across the bottom of your screen,

More information

Manual Vba Access 2010 Close Form Without Saving Record

Manual Vba Access 2010 Close Form Without Saving Record Manual Vba Access 2010 Close Form Without Saving Record I have an Access 2010 database which is using a form frmtimekeeper to keep Then when the database is closed the close sub writes to that same record

More information

Graphing Interface Overview

Graphing Interface Overview Graphing Interface Overview Note: This document is a reference for using JFree Charts. JFree Charts is m-power s legacy graphing solution, and has been deprecated. JFree Charts have been replace with Fusion

More information

Learning to use the drawing tools

Learning to use the drawing tools Create a blank slide This module was developed for Office 2000 and 2001, but although there are cosmetic changes in the appearance of some of the tools, the basic functionality is the same in Powerpoint

More information

Computer Science 110. NOTES: module 8

Computer Science 110. NOTES: module 8 Computer Science 110 NAME: NOTES: module 8 Introducing Objects As we have seen, when a Visual Basic application runs, it displays a screen that is similar to the Windows-style screens. When we create a

More information

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule MAKING TABLES WITH WORD BASIC INSTRUCTIONS Setting the Page Orientation Once in word, decide if you want your paper to print vertically (the normal way, called portrait) or horizontally (called landscape)

More information

Microsoft Access XP (2002) - Forms. Navigation Wizards Custom Forms Combo Boxes Calculations in Forms Pictures Multitable Input Summary Operations

Microsoft Access XP (2002) - Forms. Navigation Wizards Custom Forms Combo Boxes Calculations in Forms Pictures Multitable Input Summary Operations Microsoft Access XP (2002) - Forms Navigation Wizards Custom Forms Combo Boxes Calculations in Forms Pictures Multitable Input Summary Operations Table of Contents Exercise File Needed... 3 INTRODUCTION

More information

Teach Yourself Microsoft PowerPoint Topic 3: Photo Albums, Slide Sections & Action Buttons

Teach Yourself Microsoft PowerPoint Topic 3: Photo Albums, Slide Sections & Action Buttons Teach Yourself Microsoft PowerPoint Topic 3: Photo Albums, Slide Sections & Action Buttons http://www.gerrykruyer.com Last week you were introduced to Microsoft PowerPoint slide animation and printing

More information

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5)

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Section 5 AGENDA

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2007

DOING MORE WITH WORD: MICROSOFT OFFICE 2007 DOING MORE WITH WORD: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Teach Yourself Microsoft Word Topic 10 - Margins, Indents and Tabs

Teach Yourself Microsoft Word Topic 10 - Margins, Indents and Tabs http://www.gerrykruyer.com Teach Yourself Microsoft Word Topic 10 - Margins, Indents and Tabs In the previous Level 2 MS Word course: Topic 8 you covered columns, text boxes and tables as well as look

More information

Word for Research Writing I: Text and Structure

Word for Research Writing I: Text and Structure Word for Research Writing I: Text and Structure Last updated: 10/2017 Shari Hill Sweet dteditor@nd.edu or 631-7545 1. The Graduate School Template...1 1.1 Document structure... 1 1.1.1 Beware of Section

More information

Teach Yourself Microsoft PowerPoint Topic 4: Slide Master, Comments and Save Options

Teach Yourself Microsoft PowerPoint Topic 4: Slide Master, Comments and Save Options Teach Yourself Microsoft PowerPoint Topic 4: Slide Master, Comments and Save Options http://www.gerrykruyer.com This week you will work with slide masters, add comments, find out how to save your presentations

More information