what are the Differences between Modal and Modaless forms?

Answers were Sorted based on User's Feedback



what are the Differences between Modal and Modaless forms?..

Answer / senthil

MODAL forms are forms which require user input before any
other actions can be taken place. In other words, a modal
form has exclusive focus in that application until it is
dismissed. When showing a modal form, the controls outside
this modal form will not take user interaction until
the form is closed. The internal MsgBox and InputBox forms
are examples of modal forms. To show a form modally, use
the syntax:

MyForm.SHOW.vbModal ' a predeclared constant for 1

MODELESS forms are those which are shown but do not require
immediate user input. MDI child forms are always modeless.
To show a form modeless,use the syntax:: MyForm.SHOW

Is This Answer Correct ?    18 Yes 6 No

what are the Differences between Modal and Modaless forms?..

Answer / pooja parmar

Model form:- we can not navigate between two forms.
Modeless form:- we can navigate between two forms

Is This Answer Correct ?    10 Yes 1 No

Post New Answer

More Visual Basic Interview Questions

To validate a range of values for a property whenever the property values changes,which type of property procedure you use?

1 Answers  


How can you Implement windows functionality in VB?

0 Answers  


What do you mean by provider?

1 Answers  


Is visual basic easy?

0 Answers  


Differentiate between DAO,ADO and Adodc as in data access objects?

0 Answers  






What is Dataware Control?

1 Answers  


what are the Differences between variables defined as public in a standard module (.bas) file and a Class file?

2 Answers   CTS, Technocrats,


Is it possible to change menu runtime using API? If yes? Specify the function names.

0 Answers  


Explain Get, Let, Set Properties?

5 Answers  


Does VB support pointers to functions?

0 Answers  


How to declare Dll Procedure?

1 Answers  


Using which type we can access file line by line?

2 Answers  


Categories