home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / printfpm.zip / README.TXT < prev   
Text File  |  1996-06-23  |  1KB  |  25 lines

  1.  
  2.     PRINTF - written by Travis Watford(watford@randomc.com)
  3.  
  4.  
  5.   Frankly, I wrote the printf DLL because I needed it. In spite of modern
  6.   day debuggers, sometimes I really need to print to the screen. However
  7.   as all of you PM programmers know, PM programs don't have a stdout/stderr
  8.   to print to. Popup boxes just aren't the same. So I wrote this little
  9.   DLL to solve the problem.
  10.  
  11.   What PRINTF does: places a sizeable dialog on the screen and directs any
  12.   output headed for stdout/stderr to it. It will hold up to 16K of text.
  13.   After that, things scroll off. It is small(under 22K) and very easy to
  14.   use. First, link the LIB file to your program and then simply call the
  15.   InitPrintf function whose prototype you will find in the included header
  16.   file. After that function call printf's will be redirected to the MLE in
  17.   the dialog. Just call the initialization function and printf to your
  18.   heart's content.
  19.  
  20.   There are no fancy bells and whistles(I wanted it small) but if the
  21.   default font and colors don't suit you, you can drag and drop new ones
  22.   on them. However, you'll have to do it each time you run.
  23.  
  24.   I hope you find it as useful as I have. Travis
  25.