ActiveX Controls in VB
ActiveX Controls in VB
VISUAL BASIC
List out the properties that can be edited by VB menu editor Write in detail about various Debugging Techniques in VB List and explain the properties and methods of grid control. Explain the ActiveX Controls in VB
ActiveX Controls in VB
Building to an OCX binary Building as part of an EXE project (generally recommended) Building either of the above helped by the ActiveX Control Wizard Interface
ActiveX Controls
ActiveX Controls In the Learning Edition of VB there were only 4 ActiveX controls, but in the Professional Edition of VB, Microsoft has provided 20 additional controls. Introduction As with the Intrinsic controls, not all of the ActiveX controls are equally useful. Some you will use on many applications but you will use others only when you have a special need for the features the controls offer. When you start VB, none of the ActiveX controls are displayed in the Toolbox. Only the intrinsic controls are displayed, so you must manually insert the ActiveX controls into the Toolbox as you need them. To do so, right-mouse click on the toolbox and go to "Components", select the controls to put on the toolbox and press "OK".
Here's a picture of the Toolbox with all of the Pro controls loaded.
in the case of the Click event, no parameters are included except the name of the event that's being fired. In the case of the MouseDown event however, four parameters are supplied . Private Sub Command1_Click() RaiseEvent Click End Sub Private Sub Command1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) RaiseEvent MouseDown(Button, Shift, X, Y) End Sub
http://pages.cpsc.ucalgary.ca/~saul/vb_examp les/tutorial10/activex01.html