AddIn_About

Purpose

Opens the about text  of your application in the Tools Manager.

Reserved procedure. Called automatically while mbx is starting.

 

Type: MapBasic Sub (reserved)

 

Example

Declare Sub AddIn_About

'******************************

Sub AddIn_About

 Dim app_dir As String

 app_dir = ApplicationDirectory$( )

 Dim helpcmd as String

 helpcmd = "notepad.exe  " & app_dir & "\help.txt"

 Run Program helpcmd

End Sub