HOWTO: Append Menu to an Existing Top-Level Form Menu
ID: Q165408
|
The information in this article applies to:
-
Microsoft Visual FoxPro for Windows, versions 5.0, 5.0a, 6.0
SUMMARY
This article describes how you can append a menu to an existing Top-Level
Form menu.
MORE INFORMATION
In order to do this correctly, you need to check APPEND in the Location
option of the General Options dialog box in the Menu Designer. When running
the menu to be appended, you need to pass it the name of the existing Top-
Level Form in which it is to be appended.
The following example shows you how you can create an append menu to an
existing Top-Level Form menu.
- Create a menu.
- Type in Test1 and Test2 for menu pad names.
- Click General Options from the View menu. Select the Top-Level Form
check box in the General Options dialog box.
- Generate the menu and save it as Menu1.mnx.
- Create a second menu.
- Type in Test3 for the menu pad name.
- Click General Options from the View menu. Select the Append option for
Location and the Top-Level Form check box in the General Options dialog
box.
- Generate the menu and save it as Menu2.mnx.
- Create a form and name it Appform1.scx.
- Set the ShowWindow property for the form to "2 - As Top-Level Form" in
the Properties window.
- Add two command buttons to the form and name them Button1 and Button2.
- In the Click event of Button1, type in the following code:
DO menu1.mpr WITH THISFORM, .T.
- In the Click event of Button2, type in the following code:
DO menu2.mpr WITH THISFORM, THISFORM.NAME
&& The append will not work without the second parameter.
- Run the form and choose Button1, and then Button2.
NOTE: Button1 makes the first menu appear, and button2 appends the second
menu to the end of the first menu.
Additional query words:
Keywords : kbBuilder kbVFp500 kbVFp600
Version : WINDOWS:5.0,5.0a,6.0
Platform : WINDOWS
Issue type : kbhowto
|