FormServer property (WinStudio scripts)
Applies To
IWSApplication interface
Definition
Returns an object that implements the IFormServer interface.
Syntax
Application.FormServer
Example
Sub Main()
Dim myFormList As String
myFormList = Application.FormServer.GetAllFormNames.ToString
Application.ShowMessage(myFormList.Chars(3))
End Sub