FormName
This property contains the name of the application and will return the application's name to any process that calls for it as a string. This property is read-only.
Group: Application-Based Extension
Syntax: App.FormName
Example:
'This example script displays the name of the application in a label when the button is clicked.
Dim ApplicationName As String
Private Sub btnDisplayAppName_Click()
ApplicationName = App.FormName
lblApplicationName.Caption = App.FormName
End Sub
History App.Name changed to App.FormName in RFgen release 5.2.4.3.