The essential first step in formulating a successful solution is compiling program code. True/false?
Property get, property let and property set in visual basic
How to change the mouse pointer?
Screen.Mousepointer = vbhourglass/vbnormal.
System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor
after doing some work
in default mode
System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.Default
We can use Cursor:pointer; property to change the mouse pointer.
Types of system controls, container objects, combo box?
Types of system controls 1.General controls a)Software controls b)Hardware controls c)Computer operations control d)data security control e)Administrator control 2.Application controls ...
Can us able to set instancing properties like singleuse, GLobalsingleuse to activexdll?
No.
No we cannot set instancing properties like singleuse, GLobalsingleuse to activexdll.
What third party activex controls have you used?
The third party activex controls used are MSDataGrid, MSChart, MSCalendar.
Is there any edit method in ADO data access method?
There are no edit methods in ADO data access method instead recordset.update is used.
Which type of object requires this object?
"This" object is used inside any method to refer to the current object. It is always a reference to the object on which the method was invoked
What is the-use of property page wizard in activex control?
To create one or more property pages for the control then we make use of property page wizard in activex control.
How would you actiVATe animation control?
Through action script we can activate animation control.
What is the use of parameters collection?
Each Parameter object present in the parameter collection provides a detailed information about a single parameter used in a stored procedure or a parameterized query as the parameter collection is a collection of Parameter
objects associated with a specific Command object.
What is internet explorer and its uses?
Internet Explorer is the most widely used world wide web,which is used to communicate and compete with different web browsers.It is bundled with the Microsoft Windows operating system.
Uses of IE
1.Surfing the net
2.Downloading better browsers.
What are the internet tools available in vb6.0?
Internet tools avaliable in VB6.0 are DNS lookup, SMTP e-mail, Trace Rout, Port Listener, Port Scanner etc.
Activex and types of activex components in vb?
An ActiveX is a component programming object that can be re-used by many application programs within a computer or among computers in a network.
Types of activex components are
1.Activex control
2.Activex exe
3.Activex dll.
What are the style properties of combo box?
Simple, dropdown list – we can type and select. Dropdown combo – only drop down.
The Combo Box style property has two integer values.
Style property 0 - here the Combo Box behaves as a drop-down Combo Box.
Style property 2 - here the Combo Box behaves as a list box.
What is difference between datagrid and flexgrid?
Datagrid – editable. Flexigrid – non-editable. (generally used for read only purpose.)
1. Full data binding is allowed in datagrid where as flexgrid supports read only binding. 2. Datagrid is large and do not allow merging cells where as flexgrid allows cell merging and it is smaller. 3...
What is ADO? What are its objects ?
Activex data object. ADO can access data from both flat files as well as the databases. I.E., it is encapsulation of DAO, rdo, and ole that is why we call it as ole-db technology. Objects are connection, record set, command, parameter, field, error, property.
ADO stands for Activex Data Object. It is a programming interface to access data in the database and can also access data present in web pages, spreadsheets and other types of documents.
ADO has three objects namely command, connection and record set objects.
What project option causes the necessary files to be generated when the project is compiled?
gcc -c proc.adb is an option to generate the necessary files during compilation.
Is it possible to call backend procedures with ADO control?
If the backend procedures are stored procedures then it is possible to call those procedures with ADO control.
How would you attach an activex control in your application?
We can attach an activex control using
BOOL Attach(
BSTR PortName // name of the virtual serial port
);
Here PortName is the name of the existing virtual serial port to be opened.
False