forked from thermburglar/mapbasic-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingUp.mb
26 lines (18 loc) · 896 Bytes
/
SettingUp.mb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
'*******************************************************************************************************************************
'* Program:
'* Purpose:
'* Date:
'*******************************************************************************************************************************
Declare Sub GUIMaker
Declare Sub ViewMarketPlan
Declare Sub Instructions
'*******************************************************************************************************************************
'* Sub: GUIMaker
'* Purpose: Clean up extra menus that the user does not need and create GUI.
'*******************************************************************************************************************************
Sub GUIMaker
Alter Menu Bar Add "Market Plan"
Alter Menu "Market Plan" Add
"View" Calling ViewMarketPlan
' "User Guide" Calling Instructions
End Sub