home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Power Pack / Visual_Basic4_Power_Pack.bin / vb4files / myttips / readme.txt < prev    next >
Encoding:
Text File  |  1996-11-20  |  1.8 KB  |  81 lines

  1. README FILE FOR MYTTIPS.
  2.  
  3. (c) 1996 Gabriele Del Giovine
  4.          SOFTWARE & NETWORKS TECHNOLOGIES
  5.          Via G. Amadio, 57
  6.          64010 CONTROGUERRA (TE) - ITALY
  7.          E-mail mc6491@mclink.it
  8.          COMPUSERVE 72660,1344
  9.  
  10.  
  11. READ THIS FIRST!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  12. This software is FREEWARE. No warranties or liabilities.
  13.  
  14.  
  15.  
  16. This implementation of ToolTips are made only with standard VB resource 
  17. and with few API calls. No VBX's or OCX's. Also MYTTIPS use only one
  18. timer control for all windows with tooltips.
  19.  
  20. How use MyTTYPS?
  21.  
  22. First you must add the TTIPS.* files into your project.....
  23.  
  24. Then for each form with controls that you like associate with ToolTips
  25. inser this code on Form.Activate events:
  26.  
  27. -- Begin of example code ---------------------
  28.  
  29. Form1.Activate ()
  30.  
  31. InitializeTips
  32. AddTip ControlWithTip.Hwnd,"The Tip","The Help for a big tip"
  33. AddTip OtherControlWithTip.Hwnd,"The Other Tip","The Help for a big tip"
  34. AddTip NewControlWithTip.Hwnd,"The New Tip","The Help for a big tip"
  35.  
  36. End sub
  37.  
  38. -- End of sample code ------------------------
  39.  
  40. Well, now you must add the following code on form1.MouseMove events
  41.  
  42. -- Begin of example code ---------------------
  43.  
  44. Form1.MouseMove ......
  45.  
  46. DisplayTips
  47.  
  48. End sub
  49.  
  50. -- End of sample code ------------------------
  51.  
  52. NOTE:
  53. If your control is placed into a container you must add the 'DisplayTips' 
  54. call into the container MouseMove Events.
  55.  
  56. When you are tired of Tip for a particular control you can remove it from
  57. the ToolTips list using the call
  58.  
  59. RemoveTip RemovingControl.Hwnd
  60.  
  61.  
  62. Ok folks this is all to do.
  63.  
  64. Who appreciate my efforts can send to me a gift, like
  65. cars (Ferrari,BMW,Mercedes),motorcycles (only Harley Davidson please..)
  66. or a post-card......(also your credit-card.....)
  67.  
  68. Bye Bye
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76. On 
  77.  
  78.  
  79.  
  80.  
  81.