home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- if field "indexExpr" = EMPTY then
- alert("Please enter an index expression.")
- exit
- end if
- if field "indexFile" = EMPTY then
- alert("Please specify an index file to create.")
- exit
- end if
- set theResult to DBCreateIndex(field "indexFile", field "indexExpr", 0, 0)
- alert("Create index result code: " & theResult)
- end
-