home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 10 / Fresh_Fish_10_2352.bin / new / util / cdity / bexchange / product-info < prev   
Fred Fish's Product-Info  |  1995-08-25  |  2KB  |  81 lines

  1. .name
  2. BGUI-Exchange
  3. .type
  4. OS Utility
  5. .short
  6. BGUI replacement for 'Exchange'
  7. .description
  8. BGUI-Exchange is just a replacement for the  workbench commodity 'Exchange'.
  9. It's a commodity manager.
  10.  
  11. Features:
  12.  
  13.    o Use the bgui.library
  14.    o Resizeable
  15.    o Keyboard shortcup for listview and buttons
  16.    o Open its GUI on the active-screen
  17. .version
  18. 1.0
  19. .date
  20. 1995.06.08
  21. .author
  22. Doguet Emmanuel
  23. .requirements
  24. bgui.library
  25. OS2.04
  26. .distribution
  27. Giftware
  28. .address
  29. 4, rue de Cornouailles
  30. 50130 OCTEVILLE
  31. FRANCE
  32. .email
  33. manu@ramses.fdn.org
  34. manu@ramses.telesys-innov.fr
  35. .docs
  36. BGUI-Exchange_Eng.guide
  37. BGUI-Exchange_FR.guide
  38. .described-by
  39. Richard Fish (rjf@amigalib.com)
  40. .submittal
  41. Submitted on disk directly by the author.
  42. .aminet-dir
  43. util/cdity
  44. .execute
  45. LAB Start
  46. set choice `RequestChoice "Options Selection" "Please select an option" "View Guide" "Install Program" "Run Program" "Cancel"`
  47. if $choice GT "0"
  48.   if $choice EQ "1"
  49.     set choice2 `RequestChoice "View Guide" "Please select a language" "English" "Francais" "Cancel"`
  50.     if $choice2 GT "0"
  51.       if $choice2 EQ "1"
  52.         MetaTool BGUI-Exchange_Eng.guide GUIDE
  53.       else
  54.         if $choice2 EQ "2"
  55.           MetaTool BGUI-Exchange_FR.guide GUIDE
  56.         endif
  57.       endif
  58.     endif
  59.   else
  60.     if $choice EQ "2"
  61.       set choice2 `RequestChoice "Install" "Please select a language" "English" "Francais" "Cancel"`
  62.       if $choice2 GT "0"
  63.         if $choice2 EQ "1"
  64.           Installer Install_English BGUI-Exchange AVERAGE AVERAGE T:BGUI-Exchange.log english
  65.         else
  66.           if $choice2 EQ "2"
  67.             Installer Install_Français BGUI-Exchange AVERAGE AVERAGE T:BGUI-Exchange.log français
  68.           endif
  69.         endif
  70.       endif
  71.     else
  72.       if $choice EQ "3"
  73.         assign libs: libs/ ADD
  74.         BGUI-Exchange
  75.         assign libs: libs/ REMOVE
  76.       endif
  77.     endif
  78.   endif
  79.   skip Start BACK
  80. endif
  81.