Please enable JavaScript to view this site.

GeoAS Tools für MapInfo Pro

Navigation: Ribbon Designer SDK > MapBasic SDK

AddIn_About

Scroll Prev Top Next More

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