home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1B / DATAFILE_PDCD1B.iso / _pocketbk / pocketbook / 006 / twinopl_zi / TWINREAD.ME < prev   
Text File  |  1993-12-14  |  1KB  |  21 lines

  1. In case this saves anyone else some time, I have been doing the
  2. learning curve creating a working twin-mode app.
  3.  
  4. I started with the base code in TWINOPL in the flist here, and it
  5. DOES work, despite the programming manual saying you need *two* top
  6. level apps, one for each machine. I ended up with:
  7.  
  8. TOP (compiled for S3) --- SUB3 (compiled for S3) ------\__ COMMON.OPO
  9.                       --- SUB3A (compiled for S3a) ----/  (comp for S3)
  10.  
  11. The CATCH is that although TOP is compiled for the S3, it's type must
  12. still be $1000 or similar, and the icon file MUST be a WSPCX-linked
  13. 24x24,48x48,48x48 PIC file, i.e. MUST be multiple and MUST have a
  14. grey scale. Anything else in the above doesn't work (at least, not
  15. for me). I now have a single .OPA which installs correctly on each
  16. machine and which has its common code fairly neatly segregated out. I
  17. tend to store SUB3, SUB3A and COMMON in an \APP\MYAPP\ directory,
  18. which keeps things out the way, the TOP.OPA being of course in the
  19. main \APP\ directory.
  20.  
  21. I do hope this helps someone else ...