What is modal and modeless?pl explain

Questions by pghare

Showing Answers 1 - 3 of 3 Answers

S.ARUMUGAKUMAR

  • May 19th, 2006
 

modal means there is no move to next step in vb.(e.g)msgbox

modaless means we can easily move to other windows (eg)menus

  Was this answer useful?  Yes

Pramod Kumar

  • May 29th, 2006
 

Modal - Is a type of message box where you need to respond to it by clicking any of the buttons displayed before responding to any other windows in the background.

Modeless - Is just the opposite, i.e., you are allowed to respond to other windows first and need not attend the current displayed message box.

  Was this answer useful?  Yes

Sukanta Mondal

  • Sep 27th, 2006
 

A modal form or dialog box must be closed or hidden before you can continue working with the rest of the application.

On the other hand Modeless form or dialog box not necessarily needed to close for continue working with another application.

Simply,
If you write down this code to show(Activate) Form1 Form1.Show vbModal

You can not access any other form untill you close(Unload or Terminate) the Form1.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions