Tagged Questions

10
votes
4answers
585 views

Why is a modal/modeless dialog called modal/modeless?

I always have trouble remembering whether the modal or modeless dialog is the one blocking operations in other parts of the application. Does anyone know why they are called that way?
3
votes
3answers
1k views

Is it better to show ProgressBar UserForms in VBA as modal or modeless?

Is it better to show ProgressBar UserForms in VBA as modal or modeless? What are the best practices for developing progress indicators in VBA? Modeless UserForms require the use of ...
1
vote
0answers
96 views

Modal Windows Forms in Office

I have a modal Windows form created in VB.NET that I am using for a PowerPoint add-in (this issue would also apply to an Excel add-in, I suspect). The form lets the user select shapes on the current ...
0
votes
0answers
28 views

How can I make this Modeless dialog modal?

We currently have a modeless dialog. I was asked to make it modal. Here's the code: CWnd* pWnd = ::AfxGetMainWnd(); if (myPath->CachedTool() && ...
0
votes
2answers
355 views

MFC modeless and modal dialog

I have an application with tray icon. There is a hidden main window (CMainFrm), which is used to process tray icon messages. The tray icon has a context menu: Settings, Help, Exit commands. When user ...
0
votes
2answers
353 views

Form usable even when a modal dialog is above

I have a Dialog A and I want it to load a second dialog B which is modeless and stays along side A throughout. Dialog A may then launch a modal dialog C. But when C is present I want B to be usable. I ...
0
votes
1answer
601 views

How to call IsDialogMessage in a Modal Dialog

In my Win32 app, I had a modal dialog that displays settings that I had to add more settings to. In order to fit the new settings, I dropped a TabCtrl in the dialog and implemented two modeless ...