what are the Differences between Modal and Modaless forms?
Answer Posted / 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 |
Post New Answer View All Answers
How do I get the number of free bytes on a disk?
What is the current version of Visual Basic for Windows?
How can you check whether a record is valid record or Invalid record using ADO control or Object?
How do you change the icon and otherwise manipulate the DOS box?
what are the Types of Resultsets?
Explain the "cursortype" and "Locktype" in VB?
What are the different procedures associated with the object?
What is meant by Establish Connection in RDO?
what are the types of cursors in DAO?
What are 3 main differences between flexgrid control and dbgrid control?
Through which protocol OLEDB components are interfaced?
How many objects resides in ADO ?
Is it possible to Access BackEnd procedures? Explain.
Is the Variant type slower than using other variable types?
Explain about arrays?