Back Previous Next


Linguist basic package - get

Syntax:

   get {buffer} using dialog {title} [at {left} {top}]
   get {variable} from {hashtable} as {key}

Keyword handler:

   net.eclecity.linguist.basic.keyword.BasicKGet.class

Runtime handler(s):

   net.eclecity.linguist.basic.handler.BasicHGet.class

Function:

The first form gets a filename using a dialog and puts it into a buffer. The system will remember the last directory you visited and return to it next time.

The second form gets a variable from a hashtable using the key you supply.

Example(s):

   get InputFileName using dialog
      "Choose the input file" at 100 100
   get Size from MyTable as "size"


Back Previous Next