home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / XFER.ZIP / EMULATE.EAL < prev    next >
Text File  |  1991-10-06  |  1KB  |  55 lines

  1. screen size device units
  2. application Modem
  3.  
  4. include MESSAGE.INC
  5. include ESLASYNC.INC
  6. string Filename
  7. string Baud
  8. string Parity
  9. string DataBits
  10. string StopBits
  11. string FlowControl
  12. string ComPort
  13. string TempString
  14. string Phonenumber
  15. string TransferMode
  16.  
  17. boolean ReturnedOK
  18.  
  19. action bar PrimaryWindowAB is
  20.    pulldown FilePD text "~File"
  21.       enabled choice Clear text "~Clear Window"
  22.       separator
  23.       disabled choice Download text "~Download"
  24.       disabled choice Upload text "~Upload"
  25.       separator
  26.       enabled choice Exit text "E~xit"
  27.    end pulldown
  28.    pulldown ModemPD text "~Modem"
  29.       enabled choice Setup text "~Setup"
  30.       separator
  31.       enabled choice Dial text "D~ial"
  32.       disabled choice Disconnect text "Di~sconnect"
  33.    end pulldown
  34. end action bar
  35.  
  36. enabled visible color 26 
  37. primary textual region PrimaryWindow size 580 308
  38.  at position 5 43
  39.  in desktop
  40. color 27 foreground
  41. size border 
  42. title bar "Primary Window"
  43. system menu 
  44. horizontal scroll bar scroll by 6
  45. vertical scroll bar scroll by 2
  46. action bar PrimaryWindowAB
  47. minimize button 
  48. maximize button 
  49. font "medium"
  50. move to 1 1
  51.  
  52. include EMUCTRL.INC
  53. include EMUACT.INC
  54. include EMURES.INC
  55.