Diese Auflistung enthält die im Handbuch fehlenden ARexx-Befehle.
Die Beschreibung ist im Augenblick leider nur in Englisch gehalten,
die deutsche Übersetzung wird aber in Kürze fertig sein. Bitte
melden Sie scih bei uns, wenn Sie diese benötigen.
GETATTR OBJECT/A,NAME,FIELD,STEM/K,VAR/K
CREATEDB FILE/A,FORCE/S
Prepares for a new file to be created. The CREATEDB command must be followed by a number of CREATEFIELD commands and the ENDCREATEDB command to actually create the file.
Changes the attributes of an existing field. Same syntax as CREATEFIELD.
Must be inside a CREATEDB/CHANGEDB and ENDCREATEDB/ENDCHANGEDB construct.
DELETEFIELD FIELD/A
Deletes a field.
Must be inside a CREATEDB/CHANGEDB and ENDCREATEDB construct.
DELETEFIELD FIELDNAME
Removes the field from the fieldlist.
Must be inside a CREATEDB/CHANGEDB and ENDCREATEDB construct.
ENDCREATEDB
Performes the changes made by the CREATEFIELD, CHANGEFIELD and DELETEFIELD commands. This command may take some time as all records has to be converted and index files must be rebuild.
EX:...
CREATEDB myfile.db
CREATEFIELD name
CREATEFIELD phone
ENDCREATEDB
ENDCHANGEDB
alias to ENDCREATEDB
EX:...
CHANGEDB myfile.db
CREATEFIELD phone2
ENDCHANGEB
Window commands
---------------
OPENWINDOW WHERE/K
Opens the window to the current database.
If the window already is opened it is topped and activated.
The WHERE keyword must be followed by a query string.
CLOSEWINDOW
Closes the window to the current database
MOVEWINDOW LEFTEDGE/N/A,TOPEDGE/N/A
Moves the window for the current database to the given position
SIZEWINDOW WIDTH/N/A,HEIGHT/N/A
Sizes the window for the current database to the given dimension
Moves and sizes the window for the current database. Only >= OS2
WINDOWTOFRONT
Tops the window for the current database.
WINDOWTOBACK
Moves the the window for the current database in the background.
ACTIVATEWINDOW
Activates the window for the current database. The window must already be open.
ZOOMWINDOW
Sizes the window for the current database to the minimum dimension
UNZOOMWINDOW
Restores the old sizes the window for the current database.
LOCKGUI
Locks the GUI (Graphical User Interface) until the UNLOCKGUI command is given. While the GUI is locked the database windows are not redrawn by ARexx commands that changes records, and the user can't interact.