home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / ib / setups / intrabld / data.z / ACTIVEX.CC < prev    next >
Text File  |  1996-12-11  |  5KB  |  130 lines

  1. /***********************************************************************\
  2. *                                                                       *
  3. * ActiveX.cc -- ActiveX components for the MSIE 3.0 built in controls   *
  4. *                                                                       *
  5. * These twelve custom ActiveX components can be used just like a built  *
  6. * in ActiveX component. You can place these components onto a form and  *
  7. * then set the params as necessary. By using these custom components    *
  8. * you don't need to enter the class id each time you want to use these  *
  9. * ActiveX controls.                                                     *
  10. *                                                                       *
  11. * For more information about using these controls (ie, what are the     *
  12. * params) check out Microsoft's web site. At the time that IntraBuilder *
  13. * shipped, you could get specific information at:                       *
  14. *                                                                       *
  15. *    http://www.microsoft.com/intdev/controls/ctrlref.htm               *
  16. *                                                                       *
  17. * A Word document containing this same information is available at:     *
  18. *                                                                       *
  19. *    http://www.microsoft.com/workshop/prog/controls/ctrlref.zip        *
  20. *                                                                       *
  21. * ActiveX Component Names:                                              *
  22. *                                                                       *
  23. *    AnimatedButtonActiveX                                              *
  24. *    ChartActiveX                                                       *
  25. *    GradientActiveX                                                    *
  26. *    LabelActiveX                                                       *
  27. *    MarqueeActiveX                                                     *
  28. *    MenuActiveX                                                        *
  29. *    PopupMenuActiveX                                                   *
  30. *    PopupWindowActiveX                                                 *
  31. *    PreloaderActiveX                                                   *
  32. *    StockTickerActiveX                                                 *
  33. *    TimerActiveX                                                       *
  34. *    ViewTrackerActiveX                                                 *
  35. *                                                                       *
  36. * Updated 11/13/96 by IntraBuilder Samples Group                        *
  37. * $Revision:   1.1  $                                                   *
  38. *                                                                       *
  39. * Copyright (c) 1996, Borland International, Inc.  All rights reserved. *
  40. *                                                                       *
  41. \***********************************************************************/
  42.  
  43. class AnimatedButtonActiveX(FormObj) extends ActiveX(FormObj) custom {
  44.    with (this) {
  45.       classId = "clsid:0482B100-739C-11CF-A3A9-00A0C9034920";
  46.       alt = "Animated Button ActiveX";
  47.  
  48.    }
  49. }
  50.  
  51. class ChartActiveX(FormObj) extends ActiveX(FormObj) custom {
  52.    with (this) {
  53.       classId = "clsid:FC25B780-75BE-11CF-8B01-444553540000";
  54.       alt = "Chart ActiveX";
  55.  
  56.    }
  57. }
  58.  
  59. class GradientActiveX(FormObj) extends ActiveX(FormObj) custom {
  60.    with (this) {
  61.       classId = "clsid:017C99A0-8637-11CF-A3A9-00A0C9034920";
  62.       alt = "Gradient ActiveX";
  63.    }
  64. }
  65.  
  66. class LabelActiveX(FormObj) extends ActiveX(FormObj) custom {
  67.    with (this) {
  68.       classId = "clsid:99B42120-6EC7-11CF-A6C7-00AA00A47DD2";
  69.       alt = "Label ActiveX";
  70.  
  71.    }
  72.  
  73. }
  74.  
  75. class MarqueeActiveX(FormObj) extends ActiveX(FormObj) custom {
  76.    with (this) {
  77.       classId = "clsid:1A4DA620-6217-11CF-BE62-0080C72EDD2D";
  78.       alt = "Marquee ActiveX";
  79.    }
  80. }
  81.  
  82. class MenuActiveX(FormObj) extends ActiveX(FormObj) custom {
  83.    with (this) {
  84.       classId = "clsid:52DFAE60-CEBF-11CF-A3A9-00A0C9034920";
  85.       alt = "Menu ActiveX";
  86.    }
  87. }
  88.  
  89. class PopupMenuActiveX(FormObj) extends ActiveX(FormObj) custom {
  90.    with (this) {
  91.       classId = "clsid:0482B100-739C-11CF-A3A9-00A0C9034920";
  92.       alt = "Popup Menu ActiveX";
  93.    }
  94. }
  95.  
  96. class PopupWindowActiveX(FormObj) extends ActiveX(FormObj) custom {
  97.    with (this) {
  98.       classId = "clsid:A23D7C20-CABA-11CF-A5D4-00AA00A47DD2";
  99.       alt = "Popup Window ActiveX";
  100.    }
  101. }
  102.  
  103. class PreloaderActiveX(FormObj) extends ActiveX(FormObj) custom {
  104.    with (this) {
  105.       classId = "clsid:16E349E0-702C-11CF-A3A9-00A0C9034920";
  106.       alt = "Preloader ActiveX";
  107.    }
  108. }
  109.  
  110. class StockTickerActiveX(FormObj) extends ActiveX(FormObj) custom {
  111.    with (this) {
  112.       classId = "clsid:0CA4A620-8E3D-11CF-A3A9-00A0C9034920";
  113.       alt = "Stock Ticker ActiveX";
  114.    }
  115. }
  116.  
  117. class TimerActiveX(FormObj) extends ActiveX(FormObj) custom {
  118.    with (this) {
  119.       classId = "clsid:59CCB4A0-727D-11CF-AC36-00AA00A47DD2";
  120.       alt = "Timer ActiveX";
  121.    }
  122. }
  123.  
  124. class ViewTrackerActiveX(FormObj) extends ActiveX(FormObj) custom {
  125.    with (this) {
  126.       classId = "clsid:1A771020-A28E-11CF-8510-00AA003B6C7E";
  127.       alt = "View Tracker ActiveX";
  128.    }
  129. }
  130.