1.
Declaring variables before using them in your code is recommended. Doing this alleviates incorrect names of a variables when writing code and the scope of the variable can also be defined. In the VBA options window you
can mark an option called "Require Variable Declaration". If this option is marked what displays in the code window before any procedure?
2.
What variables can be used only by procedures in the same module?
3.
You are in the VBA code window writing code. After typing a valid object name, what can be used after typing the object name to display a drop-down list of methods and properties available for that object?
4.
With the Load Statement, the object is placed in memory, but isn't visible. In order to make the object visible, you would use what method?
5.
You are customizing a Great Plains window by adding VBA code. When debugging the code, which window would you open to display information for all objects on the current window?
6.
You need to customize the original Item Maintenance Great Plains window using VBA. The VBA code you write will need to reference the Item Number field from that window. What steps will allow access to the Item Number?
7.
What happens if you don have any Great Plains windows open and you choose Tools-Customize-Add What happens if you don? have any Great Plains windows open and you choose Tools-Customize-Add Current
Window to Visual Basic?
8.
You open a Great Plains window and want to customize it with VBA. The window that you opened is a Modal window. When a modal window is displayed, how can it be added to the VBA project?
9.
You are asked to customize the Payables Transaction Entry window and hide the Payment Terms field when the user selects "Return" in the Document Type field. Using VBA code, how many ways are there to hide the
field?
10.
You are asked to customize the Payables Transaction Entry window by making the Shipping Method a required field. Using VBA code, which statement would accomplish this?