home *** CD-ROM | disk | FTP | other *** search
- CONST vbs_MaxStdEvent = IEVENT_STD_LINKCHANGE;
- StdEventInfo : array[0..vbs_MaxStdEvent] of tvbsEventInfo =
- (
- (
- id : peventinfo_std_Click;
- pszName : 'Click';
- cParms : 0;
- cwParms : 0;
- pParmTypes : nil;
- pszParmProf : nil;
- fl : 0
- ),
- (
- id : peventinfo_std_DblClick;
- pszName : 'DblClick';
- cParms : 0;
- cwParms : 0;
- pParmTypes : nil;
- pszParmProf : nil;
- fl : 0
- ),
- (
- id : peventinfo_std_DragDrop;
- pszName : 'DragDrop';
- cParms : 4;
- cwParms : 8;
- pParmTypes : chr(DT_OBJECT)+chr(DT_SHORT)+chr(DT_SHORT)+#0;
- pszParmProf : 'Source As Control, X As Single, Y As Single';
- fl : 0
- ),
- (
- id : peventinfo_std_DragOver;
- pszName : 'DragOver';
- cParms : 3;
- cwParms : 6;
- pParmTypes : chr(DT_OBJECT)+chr(DT_SHORT)+chr(DT_SHORT)+#0;
- pszParmProf : 'Source As Control, X As Single, Y As Single, State As Integer';
- fl : 0
- ),
- (
- id : peventinfo_std_GotFocus;
- pszName : 'GotFocus';
- cParms : 0;
- cwParms : 0;
- pParmTypes : nil;
- pszParmProf : nil;
- fl : 0
- ),
- (
- id : peventinfo_std_KeyDown;
- pszName : 'KeyDown';
- cParms : 2;
- cwParms : 4;
- pParmTypes : chr(DT_SHORT)+chr(DT_SHORT)+#0;
- pszParmProf : 'KeyCode As Integer, Shift As Integer';
- fl : 0
- ),
- (
- id : peventinfo_std_KeyPress;
- pszName : 'KeyPress';
- cParms : 1;
- cwParms : 2;
- pParmTypes : chr(DT_SHORT)+#0;
- pszParmProf : 'KeyAscii As Integer';
- fl : 0
- ),
- (
- id : peventinfo_std_KeyUp;
- pszName : 'KeyUp';
- cParms : 2;
- cwParms : 4;
- pParmTypes : chr(DT_SHORT)+chr(DT_SHORT)+#0;
- pszParmProf : 'KeyCode As Integer, Shift As Integer';
- fl : 0
- ),
- (
- id : peventinfo_std_LostFocus;
- pszName : 'LostFocus';
- cParms : 0;
- cwParms : 0;
- pParmTypes : nil;
- pszParmProf : nil;
- fl : 0
- ),
- (
- id : peventinfo_std_MouseDown;
- pszName : 'MouseDown';
- cParms : 4;
- cwParms : 8;
- pParmTypes : chr(DT_SHORT)+chr(DT_SHORT)+chr(DT_SHORT)+chr(DT_SHORT)+#0;
- pszParmProf : 'Button As Integer, Shift As Integer, X As Single, Y As Single';
- fl : 0
- ),
- (
- id : peventinfo_std_MouseMove;
- pszName : 'MouseMove';
- cParms : 4;
- cwParms : 8;
- pParmTypes : chr(DT_SHORT)+chr(DT_SHORT)+chr(DT_SHORT)+chr(DT_SHORT)+#0;
- pszParmProf : 'Button As Integer, Shift As Integer, X As Single, Y As Single';
- fl : 0
- ),
- (
- id : peventinfo_std_MouseUp;
- pszName : 'MouseUp';
- cParms : 4;
- cwParms : 8;
- pParmTypes : chr(DT_SHORT)+chr(DT_SHORT)+chr(DT_SHORT)+chr(DT_SHORT)+#0;
- pszParmProf : 'Button As Integer, Shift As Integer, X As Single, Y As Single';
- fl : 0
- ),
- (
- id : peventinfo_std_LinkError;
- pszName : 'LinkError';
- cParms : 1;
- cwParms : 2;
- pParmTypes : chr(DT_SHORT)+#0;
- pszParmProf : 'LinkErr As Integer';
- fl : 0
- ),
- (
- id : peventinfo_std_LinkOpen;
- pszName : 'LinkOpen';
- cParms : 1;
- cwParms : 2;
- pParmTypes : chr(DT_SHORT)+#0;
- pszParmProf : 'Cancel As Integer';
- fl : 0
- ),
- (
- id : peventinfo_std_LinkClose;
- pszName : 'LinkClose';
- cParms : 0;
- cwParms : 0;
- pParmTypes : nil;
- pszParmProf : nil;
- fl : 0
- ),
- (
- id : peventinfo_std_LinkNotify;
- pszName : 'LinkNotify';
- cParms : 0;
- cwParms : 0;
- pParmTypes : nil;
- pszParmProf : nil;
- fl : 0
- ),
- (
- id : peventinfo_std_LinkChange;
- pszName : nil;
- cParms : 0;
- cwParms : 0;
- pParmTypes : nil;
- pszParmProf : nil;
- fl : 0
- )
- );
-
-