home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Java / Java.zip / jmsgbx11.zip / README < prev    next >
Text File  |  1996-11-25  |  2KB  |  51 lines

  1. /*****************************************************************************
  2. File: README
  3. *****************************************************************************/
  4.  
  5.                                                       25.November 1996 
  6.  
  7.  
  8.  
  9. The documentation is pretty short:
  10. ==================================
  11.  
  12. Syntax for the OS/2 messagebox:
  13.  
  14.    ULONG APIENTRY WinMessageBox(HWND hwndParent,
  15.                                 HWND hwndOwner,
  16.                                 PSZ pszText,           // aText
  17.                                 PSZ pszCaption,        // aTitle
  18.                                 ULONG idWindow,
  19.                                 ULONG flStyle);
  20.  
  21.  
  22. Syntax for the wrapper messageBox:
  23.  
  24.   // Constructor
  25.   public MsgBox();
  26.  
  27.   // method
  28.   public native int show(int typeButton,String aTitle,
  29.                                String aText);
  30.  
  31. To use the messagebox wrapper you need the MsgBox.class and the MsgBox.DLL.
  32.  
  33. The Styles and return codes are documented in 'PMWIN.H' and in MsgBox.h.
  34.  
  35. ___________________________________________________________________________
  36.  
  37. This archive is Public Domain.
  38. You may use all the files in non-commercial and commercial software
  39. products.
  40.  
  41. If you intend to use MsgBox.class and MsgBox.DLL included in this archive
  42. in a software product, I would like you to send me an e-mail.
  43.  
  44. Author: Henrik Falk
  45.         2:236/89@fidonet.org
  46.         81:445/16@os2net.ftn
  47.         hfalk@ibm.net
  48.  
  49. /*
  50. End of: README
  51. */