What is event driven programming
Answers
Answer:
Event Driven Programming is a popular Computer Programming Paradigms in which the code execution is based on firing the events.
Explanation:
In Computer Programming, there are various Paradigms known as Procedural, Event Driven and Object Orientated etc...
Event Driven Programming is Computer Programming Paradigms in which the code will wait for an event example a KEY Press, MOUSE CLICK , MOUSE-DOUBLE-CLICK, Timer-Changed, Start of the Engine etc. When Event happenned then program will perform a certain action based on that EVENT.
The flow of program execution is determined by events ,say User's Actions, or on Message Arrival, or Reaching certain Stage.
Question:
- What do you mean by event driven programming in VB?
Answer:
Event-driven programming is a programming paradigm in which the flow of program execution is determined by events - for example a user action such as a mouse click, key press, or a message from the operating system or another program.