home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
ib
/
setups
/
intrabld
/
data.z
/
ACTIVEX.CC
< prev
next >
Wrap
Text File
|
1996-12-11
|
5KB
|
130 lines
/***********************************************************************\
* *
* ActiveX.cc -- ActiveX components for the MSIE 3.0 built in controls *
* *
* These twelve custom ActiveX components can be used just like a built *
* in ActiveX component. You can place these components onto a form and *
* then set the params as necessary. By using these custom components *
* you don't need to enter the class id each time you want to use these *
* ActiveX controls. *
* *
* For more information about using these controls (ie, what are the *
* params) check out Microsoft's web site. At the time that IntraBuilder *
* shipped, you could get specific information at: *
* *
* http://www.microsoft.com/intdev/controls/ctrlref.htm *
* *
* A Word document containing this same information is available at: *
* *
* http://www.microsoft.com/workshop/prog/controls/ctrlref.zip *
* *
* ActiveX Component Names: *
* *
* AnimatedButtonActiveX *
* ChartActiveX *
* GradientActiveX *
* LabelActiveX *
* MarqueeActiveX *
* MenuActiveX *
* PopupMenuActiveX *
* PopupWindowActiveX *
* PreloaderActiveX *
* StockTickerActiveX *
* TimerActiveX *
* ViewTrackerActiveX *
* *
* Updated 11/13/96 by IntraBuilder Samples Group *
* $Revision: 1.1 $ *
* *
* Copyright (c) 1996, Borland International, Inc. All rights reserved. *
* *
\***********************************************************************/
class AnimatedButtonActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:0482B100-739C-11CF-A3A9-00A0C9034920";
alt = "Animated Button ActiveX";
}
}
class ChartActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:FC25B780-75BE-11CF-8B01-444553540000";
alt = "Chart ActiveX";
}
}
class GradientActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:017C99A0-8637-11CF-A3A9-00A0C9034920";
alt = "Gradient ActiveX";
}
}
class LabelActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:99B42120-6EC7-11CF-A6C7-00AA00A47DD2";
alt = "Label ActiveX";
}
}
class MarqueeActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:1A4DA620-6217-11CF-BE62-0080C72EDD2D";
alt = "Marquee ActiveX";
}
}
class MenuActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:52DFAE60-CEBF-11CF-A3A9-00A0C9034920";
alt = "Menu ActiveX";
}
}
class PopupMenuActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:0482B100-739C-11CF-A3A9-00A0C9034920";
alt = "Popup Menu ActiveX";
}
}
class PopupWindowActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:A23D7C20-CABA-11CF-A5D4-00AA00A47DD2";
alt = "Popup Window ActiveX";
}
}
class PreloaderActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:16E349E0-702C-11CF-A3A9-00A0C9034920";
alt = "Preloader ActiveX";
}
}
class StockTickerActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:0CA4A620-8E3D-11CF-A3A9-00A0C9034920";
alt = "Stock Ticker ActiveX";
}
}
class TimerActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:59CCB4A0-727D-11CF-AC36-00AA00A47DD2";
alt = "Timer ActiveX";
}
}
class ViewTrackerActiveX(FormObj) extends ActiveX(FormObj) custom {
with (this) {
classId = "clsid:1A771020-A28E-11CF-8510-00AA003B6C7E";
alt = "View Tracker ActiveX";
}
}