\
MAKEMSI Installs...
Available Frameworks
Validation Suites (create CUB files)
Functions - ICE
IceViewClose()
This subroutine closes a view previously opened with
"IceViewOpen()".
It does not return anything.
This function takes these parameters:
- A "view" handle previously returned by a call to
"IceViewOpen()".
Please see the "Sample Validation Suite" section
for complex examples, a small fragment follows:
set oView = IceViewOpen("SELECT `Component`, `Directory_`, `Attributes`, `KeyPath` FROM `Component`")
if oView is Nothing then exit sub
do
;--- Get and process records ---
loop
IceViewClose(oView)