|
|
#201 |
|
Moderator
|
RESIZE
E r g e b n i s / R e s u l t
Tries to shrink the selected database. B e s c h r e i b u n g / D e s c r i p t i o n Shrinks the selected database (reorganizes Database by throwing out deleted records). This OAC gets also used by OpenAccess and is linked in the menu (Repair table) S y n t a x Code:
ok = call("RESIZE", database)database - The name of the database to shrink R e t u r n s A boolean value. B e i s p i e l / E x a m p l e Code:
attach "FFILE"
put call("RESIZE", "CITY")
detach "FFILE" |
|
|
|
|
|
#202 |
|
Moderator
|
FIXFILE
E r g e b n i s / R e s u l t
Shows the Repair dialog. B e s c h r e i b u n g / D e s c r i p t i o n This OAC gets also used by OpenAccess and is linked in the menu (Repair table) S y n t a x Code:
ok = call("FIXFILE")R e t u r n s A boolean value. B e i s p i e l / E x a m p l e Code:
attach "FFILE"
put call("FIXFILE")
detach "FFILE" |
|
|
|
|
|
#203 |
|
Moderator
|
MUSIC
E r g e b n i s / R e s u l t
Send tone to speaker based on frequency and duration B e s c h r e i b u n g / D e s c r i p t i o n This language call allows you to send a frequency to your computers speaker. This works identical to the music command found in the Compiler application. S y n t a x Code:
ok = CALL ("music", frequency, duration)frequency - The frequency of the tone to generate duration - The duration in msec. R e t u r n s A boolean value. B e i s p i e l / E x a m p l e Code:
ATTACH "music"
ok = CALL ("music", 264, 10)
DETACH "music" |
|
|
|
|
|
#204 |
|
Moderator
|
STUFF
E r g e b n i s / R e s u l t
Stuffs a special function key into the keyboard buffer. B e s c h r e i b u n g / D e s c r i p t i o n This language call can put one of the special OA function keys into the keyboard buffer. S y n t a x Code:
ok = CALL ("STUFF", keyname)keyname - One of the special OA function keys R e t u r n s A boolean value. B e i s p i e l / E x a m p l e Code:
ATTACH "STUFF"
ok = CALL ("STUFF", "K_HELP")
DETACH "STUFF" |
|
|
|
|
|
#205 |
|
Moderator
|
STATIONS
E r g e b n i s / R e s u l t
Shows the available and installed stations. B e s c h r e i b u n g / D e s c r i p t i o n This application allows you to show the number of stations that are license and to reset their counter to the original value. S y n t a x Code:
call("stations")R e t u r n s B e i s p i e l / E x a m p l e Code:
attach "stations"
call("stations")
detach "stations" |
|
|
|