Questions tagged [modeless]

98 questions
0
votes
1 answer

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…
AlanKley
  • 4,592
  • 8
  • 40
  • 53
0
votes
1 answer

Crashing while executing GetParent(). Closing of a modeless dialog box

I am creating a modeless dialog box. The dialog box is called from the menu item of main frame window. MainFrm.h CModeless* modeless; bool modelessDlgOpen; MainFrm.cpp void CMainFrame::OnDatabaseMLdlg() { //…
Jay
  • 1,210
  • 9
  • 28
  • 48
0
votes
1 answer

mfc modeless dialog in dll destroyed when thread exit

I want to open a MFC modeless dialog from a MFC dll injected into another process, the dll's job is to hook the winsock send & recv, and the dialog will be the interface to communicate with the dll. The dll should be able to run the hook while the…
the91end
  • 101
  • 1
  • 7
0
votes
1 answer

Modeless PopupWindow as Keyboard

I'm trying to emulate a software keyboard for a domain specific input. I'm using a PopupWindow to gather the input and transfer it to the underlying EditText. Unfortunately, the PopupWindow is modal, so the user cannot switch from one EditText to…
Andrew Prock
  • 6,900
  • 6
  • 40
  • 60
0
votes
1 answer

C++ Starting several modeless dialogs using WINAPI ( no MFC )

I have been trying to get my program to display different modeless dialog boxes when different menu items are selected. So far I am only working on displaying 1 but I am unable to get this working. When I run my code I can see the main window…
Daniel Flannery
  • 1,166
  • 8
  • 23
  • 51
-1
votes
2 answers

VBA - MsgBox in Modeless UserForm, how to get the UserForm Object from its Handle retrieved with the API function GetActiveWindow?

All is in the title... In VBA, is it possible to get the UserForm Object from its Handle retrieved with the API function GetActiveWindow in order to create a MsgBox-like function that works well in a Modeless UserForm ? Thanks in advance for any…
Jean-Paul
  • 1
  • 3
-1
votes
1 answer

How to show "page setup" and "printer setup" as modeless forms?

Is possible to show "page setup" and "printer setup" as modeless forms? I used code as follows, but that forms display as modal forms: // page setup private void btnPageSetup_Click(object sender, EventArgs e) { …
YD4
  • 99
  • 1
  • 4
  • 12
-1
votes
1 answer

Create and Open Modless Window/Popup in XAML WPF

Is is possible to create a modless Window/Pop up that can be opened with a button click in XAML. I need to be able to see the Parent Window and the child modless window side by side. The modless window needs to fit into my Grid initially and needs…
New Developer
  • 123
  • 1
  • 10
1 2 3 4 5 6
7