modeless

Question about Modeless Dialog in MFC

I have a question about modeless dialog, I want to show an dialog on the screen, then it will display some information in it. However if I used the following way, it has some problems: function() { showdialog(XXX). //heavy work. update the dialog.. //heavy work. update the dialog... } it seems the dialog displayed ,but it do not draw a...

Always-in-front dialogs

Is there a way to create a modeless dialog box in C++ MFC which always stays on top of the other windows in the application? I'm thinking sort of like the Find dialog in Visual Studio 2005 - where it stays on top, but you can still edit the underlying text. (If it makes any difference, it's not MDI; it's a dialog-based app) ...

What does "singleton modeless" mean?

I know what a singleton is, but while walking through a web-app, my co-worker said "singleton-modeless". What does he mean by this? ...

Is there a way to auto-hide a always-on-top modeless dialog when the parent opens a modal dialog?

My C# Winforms app has an always-on-top modeless find dialog. Since the user has access to the parent window while the modeless find dialog is open they can choose to open a modal dialog as well. Since the modeless dialog is always-on-top it obscures the modal dialog, but it is not possible for the user to close the modeless dialog at th...

ms access SendObject modeless

Does anybody knows how to make DoCmd.SendObject modeless in MS Access? I cant go back to the previous form unless I send or cancel the message editor ...

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

Hi, 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? ...

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 dialogs. The UI is working switching between them but the modeless dialogs don't respond to the keyboard. In a regular app, IsDialogMessage (hW...

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 Application.Interactive = False, whereas Modal UserForms by their very nature block any interaction with the application until the core procedure has finishe...

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 slide from a ListView object. With each selection, the corresponding shape should be selected on the current slide. I know that my code i...

Which's better: MDI children, or modeless dialogs?

What's the pros and cons for each of them? ...

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 would have fixed this with pretranslate message in A in a C++ application but what is the approach in C#. ...

How to correctly pop a modeless dialog from console using MFC

I need to create a console application that has a main() function and pop a modeless dialog, so the console can still work in parallel to the modeless dialog (do other work, like communicating with the modeless dialog). Whatever i tried, i could only pop a modal dialog. (where the console is in hold till the modal dialog close itself). ...

How to Change an MFC Modeless Dialog to be the child of a CView in an MDI application?

I have an MFC application that is a Doc/View/Frame implementation. One dialog is running as a modeless dialog which pops up on demand (from a menu option). I'm looking to add the modeless dialog to an MDI child view. Basically, I want to load the template from the resource file, and create it as a child of the CView in my new trio (do...

Where do I control the behavior of the "X" close button in the upper right of a winform?

I'm venturing into making my VB.NET application a little better to use by making some of the forms modeless. I think I've figured out how to use dlg.Show() and dlg.Hide() instead of calling dlg.ShowDialog(). I have an instance of my modeless dialog in my main application form: Public theModelessDialog As New dlgModeless To fire up t...

Create a Modeless Messagebox

How might one go about creating a Modeless MessageBox? Do I have to just create my own Windows Form class and use that? If so, is there an easy way of adding a warning icon (rather than inserting my own image of one) and resizing based on text volume? ...

Show vs ShowDialog. Can Dialogs be hidden by the user?

In Windows Mobile, if I do a call to Show rather than ShowDialog I will get a modeless dialog box. If that modeless dialog fills the whole screen, is there a way to switch out to a different screen? (Kind of like Alt + Tab in windows). I need to make sure that the modeless screen is locked in place till the OK in the upper right cor...

Modeless dialog in ExtJs

Hi, I want to implement modeless dialog boxes in ExtJS. For exapmle, the new pop-up window/panel should not leave the originating screen as inactive. Both should be accessible at the same time. How do we that? ...