home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- openV12DB()
- newSortOrder()
- showSelection()
- updateDisplay()
- end
-
- on newSortOrder
- global gTB
- mSetCriteria(gTB, "category", "start", field "fld")
- mSelect(gTB)
- set n to mSelectCount(gTB)
- if n <> 0 then
- put n into field "NumberFound"
- put mGetField(gTB, "section") into field "section"
- put mGetField(gTB, "category") into field "category"
- put mGetField(gTB, "name") into field "name"
- put mGetField(gTB, "filepath") into field "filePath"
- put mGetField(gTB, "version") into field "version"
- put mGetField(gTB, "description") into field "description"
- put mGetField(gTB, "url") into field "url"
- put mGetField(gTB, "contact") into field "contact"
- else
- nothing()
- end if
- put field "description" into field "DummyField"
- showSelection()
- set the scrollTop of member "zlist" to 1
- end
-