home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / xbase / library / clipper / mouse / u_mouse / readme.1st < prev    next >
Encoding:
Text File  |  1990-09-14  |  1.1 KB  |  38 lines

  1. Files Enclosed
  2. ==============
  3.  
  4.    README   1ST      -  This one
  5.    MOUSE    CH       -  Preprocessor #defines etc
  6.    U_MOUSEP PRG      -  UDO Source Code
  7.    U_MOUSEA ASM      -  Low level Assembler Mouse UDFs
  8.    U_MOUSEA OBJ      -  Object File for Assembler UDFs
  9.    MOUSE    PRG      -  VERY simple demo of Mouse UDO
  10.  
  11.  
  12.  
  13. Notes for Mouse UDO
  14. ===================
  15.  
  16. 1.  To use a Mouse object, you should declare the variable which is
  17.     assigned the object as PUBLIC unless you want to pass this variable as
  18.     a parameter to every UDF which needs it, eg.:
  19.  
  20.          PUBLIC oMouse
  21.          oMouse := MouseNew()
  22.  
  23. 2.  You must #include 'mouse.ch' in every .PRG file which contains an UDF
  24.     which makes a call to the mouse object.
  25.  
  26.  
  27.  
  28. ADDENDUM TO WORKSHOP NOTES
  29. ==========================
  30.  
  31. VII.  User Defined Objects
  32.  
  33.   D. OEVAL() Function
  34.  
  35. Since preparing these notes, I have rewritten this function using a static
  36. array to hold the UDO codeblock.  There is nothing wrong with using this
  37. UDF as published, by the new one is much faster as the macroed codeblock
  38. only occurs once when the UDO is first used.