home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / utility / oemclip.zip / READ.ME < prev   
Text File  |  1993-06-03  |  3KB  |  74 lines

  1. /////////////////////////////////////////////////////////////////////////
  2. // OEMCLIP.CPP                                 (C) Alberto R. Lopez Siemens, 1993
  3. //
  4. // Freeware, Public domain -  Also included OEMCLIP.PRJ
  5. //
  6. // OEM-Text to ANSI-text automatic clipboard translator
  7. //
  8. //    This program has been developed to fix a problem I encountered when
  9. // tried to copy a portion of a DOS screen into my Word Processor.
  10. //
  11. // The problem is the following:
  12. // ----------------------------
  13. //
  14. //    Supose you have a DOS application running in a Window. and want to
  15. // copy its screen (or a portion of it) into a Windows application such as
  16. // a Word Processor.
  17. //
  18. // The first thing you'd do is select Edit|Mark from the system bar menu,
  19. // select the portion of the screen and press Enter. Then, switch to your
  20. // word processor and paste the data.
  21. //
  22. // It simply doesn't work as expected !
  23. //
  24. // If the screen capture has ASCII characters greater than 127, as
  25. // line-drawing, or international characters, you'll find that when pasted
  26. // into a Windows application that caracters are translated. The good-
  27. // looking line-drawing characters are transformed in ugly character
  28. // equivalences as '-', '|' and '+'.
  29. //
  30. // That's not what I want. I want my screen as I see it. This is a
  31. // Windows feature where "What you see is NOT what you get".
  32. // 
  33. // People at Microsoft wasn't be able to give me a solution. They said
  34. // that Windows uses ANSI character set only. Period. And that I can't
  35. // do what I want. So here is the solution. (Actually they gave me some
  36. // trivial solutions as search-and-replacing the characters or use
  37. // Alt-PrtScrn to get a bitmap representation of the screen).
  38. //
  39. // This program works registering itself as a Windows Clipboard Viewer.
  40. // When it detects that a DOS application pastes data into the clipboard
  41. // it simply translates it from ASCII to ANSI.
  42. //
  43. // To install OEMCLIP just double-click its icon or File|Run from
  44. // Program Manager. As default it run minimized. You can maximize it but
  45. // the contents of the window is meaningless. It is only a poor
  46. // representation of the data in the clipboard.
  47. //
  48. // To use pasted text You'll need a Windows font with ASCII character set.
  49. //    At this moment I know two: LotusLineDraw (comes with AmiPro or Lotus 123
  50. // for Windows) and Video Terminal Screen (You can find it in DTPFORUM, 
  51. // Lib 9, File: VTSR-T.ZIP (Shareware)
  52. //
  53. // Not too bad since this is my first Windows Program (I didn't even try
  54. //    a WinHello.CPP). 
  55. //
  56. // You need BC++ 3.1 and ObjectWindows library to recompile this program.
  57. //
  58. // Suggestions & comments are welcome:
  59. //    Mail Address:
  60. //            DigiSoft SRL
  61. //         Ing. Alberto R. Lopez Siemens
  62. //            Sarmiento 1426 6to Piso
  63. //            (1042) Buenos Aires
  64. //            Argentina
  65. //
  66. //    Voice/Fax #'s:
  67. //            (541) 40-5714
  68. //            or
  69. //            (541) 46-2151 (Remember we'll answer the phone in spanish !)
  70. //
  71. //     CIS Mail: 70501,1574
  72. //
  73. /////////////////////////////////////////////////////////////////////////
  74.