Tagged Questions

0
votes
1answer
29 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 …
7
votes
4answers
112 views

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 …
0
votes
2answers
136 views

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 …
0
votes
0answers
27 views

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
0
votes
2answers
195 views

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?
3
votes
1answer
226 views

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 Stu …
0
votes
4answers
844 views

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 prob …