MOD2000: How to Find Workflow Toolbar Control's Properties That Are Not on the Property Sheet (242782)



The information in this article applies to:

  • Microsoft Office 2000 Developer

This article was previously published under Q242782

SUMMARY

In the Access Workflow Designer Developer's Guide Help, the "Workflow Toolbar Properties" topic lists BackColor, DataSource, Event, and ForeColor as applicable toolbar properties. However, if you look on the toolbar property sheet, you do not see these properties.

MORE INFORMATION

Help references the BackColor property, which does not exist on the toolbar properties sheet. However, this property does exist on the toolbar's Appearance tab as BackgroundColor.

You can find all of the properties for the Workflow Toolbar Control by following these steps:
  1. Create a new data access page in Microsoft Access 2000.
  2. Place fields from a workflow-enabled view onto the page.
  3. Set the page header's UniqueTable property (on the page header's Data tab) to the view's base table. For example, if the view is named PurchaseOrdersView, set the page header's UniqueTable property to PurchaseOrders.
  4. Insert the Microsoft Office Developer Workflow Toolbar (the Workflow Toolbar Control) onto this page.
  5. Click the Workflow Toolbar Control. View the control's property sheet. Make note of the ID on the Other tab.
  6. Right-click a portion of the page where no objects exist, and then click Microsoft Script Editor.
  7. Scroll down the HTML source until you find the Workflow Toolbar Control. Place the mouse pointer after the Workflow Toolbar Control, right-click, and then click Script Block.
  8. Click Client.
  9. At the blinking pointer, type the ID name from Step 5 followed by a period. For example, if the ID in Step 5 is ActiveXCtl1, type the following:
    ActiveXCtl1.
    						
    Note that AutoListMembers appears, and that it lists the property that you want.

Steps to Reproduce Behavior

  1. Open the Access Workflow Designer Developer's Guide Help.
  2. Search for "workflow toolbar properties." Select the first item returned. Note the first listed property, BackColor.
  3. Start Microsoft Access 2000, and then open an Access project (ADP).
  4. Click Pages, and create a new blank data access page. View the page in Design view.
  5. On the Insert menu, click ActiveX Control.
  6. In the Insert ActiveX Control dialog box, scroll down and select Microsoft Office Developer Workflow Toolbar.
  7. Click OK to insert the toolbar.
  8. After you insert the toolbar, right click the control, and then click Properties.

    Note that on the toolbar's Appearance tab, BackgroundColor appears. There is no BackColor property on the toolbar property sheet.

Modification Type:MajorLast Reviewed:7/31/2001
Keywords:kbprb kbWorkFlowDesigner KB242782