Using Combo Boxes in a Form

From NeoWiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 18:53, 12 October 2007 (edit)
Lorinda (Talk | contribs)
(Creating the Combo Box - add notes about default text and formatting text)
← Previous diff
Revision as of 22:02, 12 October 2007 (edit) (undo)
Lorinda (Talk | contribs)
(add replace with method for combo boxes; clarify/correct some other items)
Next diff →
Line 9: Line 9:
===Preparing the Form for the Combo Box=== ===Preparing the Form for the Combo Box===
-These steps are only necessary for forms created using the Form Wizard. If you are creating a form in design view, skip directly to [[Using Combo Boxes in a Form#Creating the Combo Box|Creating the Combo Box]]+These steps are only necessary for forms created using the Form Wizard. If you are creating a form in design view, skip directly to the second step of [[Using Combo Boxes in a Form#Creating the Combo Box|Creating a Combo Box by Drawing a New Control]]
#Open the database document #Open the database document
#Click on the {{prefName|Forms}} icon in the left column #Click on the {{prefName|Forms}} icon in the left column
Line 16: Line 16:
#The Label and the (blank) text box have been grouped in order to proceed, they must be ungrouped: Under the {{Menu|Format}} Menu, choose {{Menu|Group}} and then {{Menu|Ungroup}}. #The Label and the (blank) text box have been grouped in order to proceed, they must be ungrouped: Under the {{Menu|Format}} Menu, choose {{Menu|Group}} and then {{Menu|Ungroup}}.
#Click elsewhere on the form #Click elsewhere on the form
-#Click on the blank text box under the words '''Terrain Type'''+<br>
-#Hit the {{Key|delete}} key+===Creating a Combo Box by Drawing a New Control===
- +This method invokes the Combo/List Box Wizard, which makes configuring the combo box somewhat simpler. It is also the method to use if you are [[Creating a Form in Design View]] and need a combo box.
-===Creating the Combo Box===+
 +#Click on the blank text box under the words '''Terrain Type''' and hit the {{Key|delete}} key
#Make sure the Form Controls toolbar is visible. If not, under the {{Menu|View}} choose {{Menu|Toolbars}} and then {{Menu|Form Controls}}. #Make sure the Form Controls toolbar is visible. If not, under the {{Menu|View}} choose {{Menu|Toolbars}} and then {{Menu|Form Controls}}.
#Click on the {{prefName|Combo box}} icon. (The icon with a blank drop-down box and a scrolling list below it. Watch the tooltips as you mouse over the icons to find the right one.) #Click on the {{prefName|Combo box}} icon. (The icon with a blank drop-down box and a scrolling list below it. Watch the tooltips as you mouse over the icons to find the right one.)
Line 34: Line 34:
#Click {{button|Finish}} #Click {{button|Finish}}
#Double click on the combo box you have just created. a {{Window|Properties}} window opens. In the {{Section|General}} tab, type a more descriptive name in the {{prefName|Name}} field. This will make using the form Navigator simpler. #Double click on the combo box you have just created. a {{Window|Properties}} window opens. In the {{Section|General}} tab, type a more descriptive name in the {{prefName|Name}} field. This will make using the form Navigator simpler.
-#Note that you can specify a {{prefName|Default text}} for the combo box. We don't need to do this for the TerrainType field, but it would be helpful with the StateOrProvince field, presuming that most field trips occurred in the birder's home state.+#Note that you can specify a {{prefName|Default text}} for the combo box. We don't need to do this for the TerrainType field, but we will using it below.
#Note that you can also several other formatting options including {{prefName|Font}} and {{prefName|Alignment}}. #Note that you can also several other formatting options including {{prefName|Font}} and {{prefName|Alignment}}.
- +<br>
 +===Creating a Combo Box by Using the Replace Command===
 +#Prepare the "StateOrProvince" field as described in [[#Preparing the Form for the Combo Box]]
 +#Right-click or control-click on the text box under the "StateOrProvince" label. Choose {{Menu|Replace With}} and then {{Menu|Combo Box}} from the contextual menu.
 +#Double click the combo box field
 +#In the {{Section|General}} tab, give the combo box an identifying name in the {{prefName|Name}} field.
 +#In the {{prefName|Default Text}} field, enter the default abbreviation for your state or province, or one the abbreviations from our "dummy" data.
 +#Make sure that the {{prefName|Dropdown}} field is set to {{prefName|Yes}}
 +#Click on thee {{Section|Data}} tab
 +#Make sure that the {{prefName|Data field}} is set to <tt>StateOrProvince</tt>
 +#Set the {{prefName|Type of lists contents}} to {{prefName|Sql}}
 +#In the {{prefName|List contents}} field, enter the following SQL statement:
 +#:{{preBox|SELECT DISTINCT "StateOrProvince" FROM "Locations"}}
 +#Close the {{Window|Properties}} window by clicking on the little red circle in the upper right hand corner.
 +<br>
===Notes=== ===Notes===
-* This process should to be repeated for the the '''WaterType''', '''StateOrProvince''', '''County''', and '''Country''' fields. Similarly, data entry will be easier on the '''Field Trips Data Entry''' form if the '''Location''' field is a combo box based on the '''LocationName''' from the '''Locations''' table.+* This process (using either method) should to be repeated for the the '''WaterType''', '''StateOrProvince''', '''County''', and '''Country''' fields. Similarly, data entry will be easier on the '''Field Trips Data Entry''' form if the '''Location''' field is a combo box based on the '''LocationName''' from the '''Locations''' table.
-* Some individuals may find it easier to create the form using Design View, rather than the Form Wizard, since adding combo boxes requires ungrouping and deleting fields if the Form Wizard has been used.+
* To edit the table and/or fields from which the combo box list is derived, double click on the combo box (in Design View), and click the {{Section|Data}} tab. You will notice that the {{prefName|Type of list contents}} says {{prefName|SQL}}. Directly below that, the {{prefName|List Content}} box will have an SQL statement based on this pattern: * To edit the table and/or fields from which the combo box list is derived, double click on the combo box (in Design View), and click the {{Section|Data}} tab. You will notice that the {{prefName|Type of list contents}} says {{prefName|SQL}}. Directly below that, the {{prefName|List Content}} box will have an SQL statement based on this pattern:
*:{{preBox|SELECT DISTINCT "FieldName" FROM "TableName"}} *:{{preBox|SELECT DISTINCT "FieldName" FROM "TableName"}}

Revision as of 22:02, 12 October 2007

This article is part of the To Base and Back Again tutorial series.

Forms can include Combo Boxes and/or List Boxes to make data entry easier. List Boxes force the user to choose one of a list of pre-defined values. New values cannot be added. List Boxes use references. Combo Boxes do not use references, and allow users to choose from a pre-defined list or to add a new value. For more information on the differences between these two, type Combo Box/List Box Wizard into the Search Term field in the NeoOffice Help window.

Contents

Adding a Combo Box to Forms (except Data Sheets)

For our example, we will create a combo box for the Terrain Type field the the Locations Data Entry form. (see Creating a Simple Data Entry Form) We want to use a combo box here so that we can keep the entry of terrain types standardized while allowing for the entry of new terrain types.


Preparing the Form for the Combo Box

These steps are only necessary for forms created using the Form Wizard. If you are creating a form in design view, skip directly to the second step of Creating a Combo Box by Drawing a New Control

  1. Open the database document
  2. Click on the Forms icon in the left column
  3. Right-click on the Locations Data Entry icon in the Forms section and choose Edit from the contextual menu that appears.
  4. Click on Terrain Type.
  5. The Label and the (blank) text box have been grouped in order to proceed, they must be ungrouped: Under the Format Menu, choose Group and then Ungroup.
  6. Click elsewhere on the form


Creating a Combo Box by Drawing a New Control

This method invokes the Combo/List Box Wizard, which makes configuring the combo box somewhat simpler. It is also the method to use if you are Creating a Form in Design View and need a combo box.

  1. Click on the blank text box under the words Terrain Type and hit the delete key
  2. Make sure the Form Controls toolbar is visible. If not, under the View choose Toolbars and then Form Controls.
  3. Click on the Combo box icon. (The icon with a blank drop-down box and a scrolling list below it. Watch the tooltips as you mouse over the icons to find the right one.)
  4. Move your mouse back onto the form. The cursor has turned into cross.
  5. Drag to create the combo box in the location where the blank text box was before.
    -->A combo box control appears, and the Combo Box Wizard appears
  6. In the list of tables, click on Locations.
  7. Click Next>>
  8. In the Existing Fields section, click on TerrainType
  9. Click Next>>
  10. Select Yes, I want to save it in the following field:
  11. Select TerrainType from the drop-down menu
  12. Click Finish
  13. Double click on the combo box you have just created. a Properties window opens. In the General tab, type a more descriptive name in the Name field. This will make using the form Navigator simpler.
  14. Note that you can specify a Default text for the combo box. We don't need to do this for the TerrainType field, but we will using it below.
  15. Note that you can also several other formatting options including Font and Alignment.


Creating a Combo Box by Using the Replace Command

  1. Prepare the "StateOrProvince" field as described in #Preparing the Form for the Combo Box
  2. Right-click or control-click on the text box under the "StateOrProvince" label. Choose Replace With and then Combo Box from the contextual menu.
  3. Double click the combo box field
  4. In the General tab, give the combo box an identifying name in the Name field.
  5. In the Default Text field, enter the default abbreviation for your state or province, or one the abbreviations from our "dummy" data.
  6. Make sure that the Dropdown field is set to Yes
  7. Click on thee Data tab
  8. Make sure that the Data field is set to StateOrProvince
  9. Set the Type of lists contents to Sql
  10. In the List contents field, enter the following SQL statement:
    SELECT DISTINCT "StateOrProvince" FROM "Locations"
  11. Close the Properties window by clicking on the little red circle in the upper right hand corner.


Notes

  • This process (using either method) should to be repeated for the the WaterType, StateOrProvince, County, and Country fields. Similarly, data entry will be easier on the Field Trips Data Entry form if the Location field is a combo box based on the LocationName from the Locations table.
  • To edit the table and/or fields from which the combo box list is derived, double click on the combo box (in Design View), and click the Data tab. You will notice that the Type of list contents says SQL. Directly below that, the List Content box will have an SQL statement based on this pattern:
    SELECT DISTINCT "FieldName" FROM "TableName"
Simply replace the Field name and Table name as necessary.


Creating A Combo Box in a Data Sheet Style Form

Setting up a Combo Box is more complicated when the form uses a Data Sheet (spreadsheet-like) format. We need to use this technique in our Field Trips Data Entry form. (See Creating A Data Entry Form With A Subform).) Entering bird names correctly in the subform will be much simpler if we use a combo box.

  1. Open the database document
  2. Click on the Forms icon on the left hand column
  3. Right-click or control-click on the Field Trips Data Entry form and choose Edit... from the contextual menu.
  4. When the form opens, right-click or control-click on the Bird Name column header in the sub-form and choose Replace With... and then Combo Box.
  5. Rick-click or control-click once again on the Bird Name column header in the sub-form anc choose Column...
  6. Click on the Data tab in the Properties: Combo Box window
  7. Set Type of list contents.... to Sql
  8. In the List Content... box, type the following SQL statement:
    SELECT DISTINCT "EnglishName" FROM "AOU_Birdlist"
  9. Close the Properties: Combo Box window by clicking on the red dot.
  10. Now click the Design Mode On/Off button (the one that looks like a blue drafting triangle) to shift to data entry mode. Enter a test set of data. Note that when you begin typing in a cell in the BirdName column, bird names appear. You can also click on the triangle to see a list of bird names.

Note that you will not be able to enter a bird name that does not exist in the EnglishName field of the AOU_Birdlist table because of the existing relationship between the AOU_Birdlist and Sightings table.


This article in other languages: Français
Personal tools