Deifine each element of enviornment of visual basic
Answers
Answered by
0
Visual basic environment is an IDE (integrated development environment) of Microsoft. Graphical user interface is used with a basic programming language; it is a first product to provide a graphical programming environment for developing a user interface.
In this environment, substantial amount of code is replaced by the controls, where just dragging and dropping is enough to add the control in the interface. This environment does not have an object oriented programming language concept.
Attributes and event handling are associated with the controls; default values are assigned to the controls while it is created and it is possible to change the default values. This environment primarily allows to create a windows application, additionally create executable (exe) files, ActiveX controls, and DLL files. This environment provides a possibility to insert additional logic based on the appropriate event handlers.
In the Visual Basic Environment preloaded forms are there; usage of these forms will increase the responsiveness of the application. Usage of constructor and destructor to set the value to variable will set when the classes get loaded.
In the variable declaration, it is mandatory to use the option explicit and it forces the declaration of all the variables and avoids careless mistakes.
In this environment, substantial amount of code is replaced by the controls, where just dragging and dropping is enough to add the control in the interface. This environment does not have an object oriented programming language concept.
Attributes and event handling are associated with the controls; default values are assigned to the controls while it is created and it is possible to change the default values. This environment primarily allows to create a windows application, additionally create executable (exe) files, ActiveX controls, and DLL files. This environment provides a possibility to insert additional logic based on the appropriate event handlers.
In the Visual Basic Environment preloaded forms are there; usage of these forms will increase the responsiveness of the application. Usage of constructor and destructor to set the value to variable will set when the classes get loaded.
In the variable declaration, it is mandatory to use the option explicit and it forces the declaration of all the variables and avoids careless mistakes.
Similar questions