T.R | Title | User | Personal Name | Date | Lines |
---|
1947.1 | A start... | IOSG::PYE | Graham - ALL-IN-1 Sorcerer's Apprentice | Fri Dec 11 1992 21:04 | 7 |
| Obviously you need some code in your application to recognise GOLD/I,
since you have control of the keyboard.
Then you have to get a script something like OA$DO:APPL_INIT.SCP, which
was (I think) added for the VTX integration, executed.
Graham
|
1947.2 | | KERNEL::COOPER | Suzanne Cooper UK Customer Support (833)3502 | Mon Dec 14 1992 15:00 | 7 |
| I've got a customer who has managed to call the interrupt menu but he
cannot type wp and get the word and document processing menu although
you can from teamdata, he gets invalid option. It's like from Teamdata
the default form is there as well, is this something special in the
teamdata code.
Suzanne
|
1947.3 | Examples ? | ESSB2::RWHELAN | | Wed Feb 10 1993 16:51 | 13 |
| The application I am working on has a similar requirement as the base
note, i.e. call the interrupt menu from an application run under
ALL-IN-1. (via an ALL-IN-1 script file).
Unfortunately, I am not familiar with ALL-IN-1. I can trap GOLD-I
from within my application but how do I call the interrupt menu from
within my application.
Does anybody have any examples or pointers to where I could find out ?
Thanks
Ronan
|
1947.4 | FORM INTMENU - put this line in your script file | BUSHIE::SETHI | Man from Downunder | Wed Feb 10 1993 22:28 | 1 |
|
|
1947.5 | Should call APPL_INT.SCP | IOSG::SHOVE | Dave Shove -- REO2-G/M6 | Thu Feb 11 1993 11:14 | 17 |
| While .4 will work, the "Approved" way to call the interrupt menu is by
executing the ALL-IN-1 function
DO APPL_INT
App_Int.Scp is a small script which makes a couple of checks, saves a
couple fo things and then calls the interrupt menu. If you go to the
interrupt menu directly, it will go wrong in some circumstances.
If your application is a program running in the ALL-IN-1 subprocess,
you'd need to assign a channel to OAMAILBOX and one to DCLMAILBOX,
write the above function line to the OAMAILBOX channel and then read
the DCLMAILBOX channel _until__you__get__end-of-file_ (this last bit is
important: your process may hang if you don't do this). Of course, you
may already know all this, in whch case sorry!
Dave.
|