DioWindow Object Sample Program

The following example demonstrates how to use DioWindow Object as follows:

     Create new DioApplication object.

     Return reference to a DioWindows Object.

     Return reference to a DioWindow Object specified by index number one.

     Set the window to be the active window.

     Return the winnow’s caption.

 

Dim dioapp As New DioApplication

Dim dioWindows As DioWindows

Dim dioWindow As DioWindow

dioWindows = dioapplication.DioWindows

dioWindow = dioWindows.Window (1)

dioWindow.SetActive

str= dioWindow.Caption