' Create a new UltraDesktopAlertShowWindowInfo instance
' and give it some sample text.
Dim windowInfo As UltraDesktopAlertShowWindowInfo = _
New UltraDesktopAlertShowWindowInfo("Test Alert", "This is only a test.")
' Set the screen that the alert window will appear on.
' AllScreens is an array of all screens attached to
' your system. If you have two monitors, 0 represents
' the primary screen and 1 represents the secondary
' and so on.
windowInfo.Screen = Screen.AllScreens(1)
' Display the desktop alert window with the information above.
Me.UltraDesktopAlert1.Show(windowInfo)