Please enable JavaScript to view this site.

GeoAS Tools für MapInfo Pro

Navigation: Ribbon Designer SDK > Tutorial - Transfer x32 to x64

1. MapBasic x32

Scroll Prev Top Next More

Menue sample (old)

menue_sample_old


declare sub Main

declare sub mShow

declare sub mTheme

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

sub Main

 Create Menu "MyApp" as

         "Show" calling mShow,

         "Theme" calling mTheme

 Alter Menu bar add "MyApp"

end sub

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

sub mShow

 note "Show"

end sub

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

sub mTheme

 note "Theme"

end sub