FloatTbr.bas
上传用户:china81hl
上传日期:2021-07-05
资源大小:12k
文件大小:1k
源码类别:

工具条

开发平台:

Visual Basic

  1. Attribute VB_Name = "FloatTbr"
  2. 'FloatTbr - Floating toolbar demo for Visual Basic 5
  3. 'Copyright (c) 1994-97 SoftCircuits Programming (R)
  4. 'Redistributed by Permission.
  5. '
  6. 'This program demonstrates how to create a floating toolbar in Visual
  7. 'Basic. The primary requirements for the toolbar was that it sits "on
  8. 'top" of the main window without necessarily sitting on top of windows in
  9. 'other applications. To customize the toolbar, change the imgButtons
  10. 'bitmap and the the IMAGE_COLS and IMAGE_ROWS constants at the top of
  11. 'FloatTbr.frm.
  12. '
  13. 'This program may be distributed on the condition that it is
  14. 'distributed in full and unchanged, and that no fee is charged for
  15. 'such distribution with the exception of reasonable shipping and media
  16. 'charged. In addition, the code in this program may be incorporated
  17. 'into your own programs and the resulting programs may be distributed
  18. 'without payment of royalties.
  19. '
  20. 'This example program was provided by:
  21. ' SoftCircuits Programming
  22. ' http://www.softcircuits.com
  23. ' P.O. Box 16262
  24. ' Irvine, CA 92623
  25. '
  26. 'Thanks also to Karl Peterson for his helpful suggestions.
  27. Option Explicit
  28. 'These variables save the toolbar location while unloaded
  29. Public g_xToolbarPos As Integer
  30. Public g_yToolbarPos As Integer
  31. 'Toolbar visible state
  32. Public g_bToolbarVisible As Boolean