Back to contents pageHow to add warnings that your program cannot find Ubisense services using the API

How to add warnings that your program cannot find Ubisense services using the API

Summary

This article shows how to add a monitor form to your program using the Ubisense .NET API.





Prerequisites

You should know the information in the following article:



Example material

Save this link to get a zip file of the example material


Guide

Before you start, remember to:

You can use a MonitorForm to ensure warnings are output to the screen in a new window when a Ubisense client application cannot connect to the services it requires. The following line is all you need:


    // The monitor form
    Ubisense.UBase.MonitorForm monitorForm = new MonitorForm();



Back to top