Build a Simple VCL Application for Microsoft Planner Data

Ready to get started?

Download for a free trial:

Download Now

Learn more:

Microsoft Planner FireDAC Components

Rapidly create and deploy powerful Delphi & C++Builder Apps that integrate with Microsoft Planner.



How to build a simple VCL Application to view Microsoft Planner data in RAD Studio using the CData FireDAC Components for Microsoft Planner.

Embarcadero RAD Studio provides a development environment for Delphi and C++Builder applications. With the CData FireDAC Components for Microsoft Planner, you gain access to live Microsoft Planner data within RAD Studio, abstracting the data into tables, views, and stored procedures that can be used to retrieve and update Microsoft Planner data. This article will walk through connecting to Microsoft Planner and creating a simple VCL application with the Form Designer.

Creating a VCL Application for Microsoft Planner Data

The following instructions show how to use the Form Designer to create a simple VCL Forms application that shows the basic FireDAC objects needed to connect to Microsoft Planner from any application.

The following example populates a TDBGrid control.

  1. Create a new VCL Forms Application.
  2. Drop a TFDPhysMicrosoftPlannerDriverLink and TFDConnection object onto the form.
  3. Double-click the TFDConnection object. The FireDAC Connection Editor is displayed. Select "CData.MicrosoftPlanner" in the DriverId menu and configure the connection properties.

    You can connect without setting any connection properties for your user credentials. Below are the minimum connection properties required to connect.

    • InitiateOAuth: Set this to GETANDREFRESH. You can use InitiateOAuth to avoid repeating the OAuth exchange and manually setting the OAuthAccessToken.
    • Tenant (optional): Set this if you wish to authenticate to a different tenant than your default. This is required to work with an organization not on your default Tenant.

    When you connect the Driver opens the MS Planner OAuth endpoint in your default browser. Log in and grant permissions to the Driver. The Driver then completes the OAuth process.

    1. Extracts the access token from the callback URL and authenticates requests.
    2. Obtains a new access token when the old one expires.
    3. Saves OAuth values in OAuthSettingsLocation to be persisted across connections.

  4. Drop a TFDQuery object onto the form and set the properties below:

    • Connection - Set this property to the TFDConnection object, if this object is not already specified.
    • SQL - Click the button in the SQL property and enter a query.
    • Active - Set this property to true.
  5. Drop a TDataSource object onto the form and set the following property:

    • DataSet - In the menu for this property, select the name of the TFDQuery object.
  6. Drop a TDBGrid control onto the form and set the following property:

    • DataSource - Select the name of the TDataSource.
  7. Drop a TFDGUIxWaitCursor onto the form. This is required to avoid a run-time error.

You now have an executable application that displays the results of the SQL Query set in the TFDQuery object.