Questions tagged [modeless]
98 questions
0
votes
1 answer
MFC event handler calls SetWindowText for main dialog textbox. Only 1st and last text appears
My MFC dialog's ON_CHECKED... event handler calls a dialog member "doit" that calls SetWindowText onto a dialog static textbox (cMyStatic). Only the 1st and last Set..text data appears in the textbox. I have tried with cMyStatic.Invalidate() and…

DocDJ
- 31
- 5
0
votes
1 answer
C# Windows forms cascading windows
I currently have a menu button that allows users to open a new dialog which I would like to be placed directly to the right of the main form. The user can open as many of these dialogs as they would like but I would like them to cascade on top of…

Jesus Ramos
- 22,940
- 10
- 58
- 88
0
votes
1 answer
Is it possible to create a modeless window with wxPython which stays along (to display text info)?
Quite new with UI and python, I am wondering if it's possible to have a window (in my case with wxPython) which stays alive all the time until we destroy it, to perform many other actions in the meantime.
If so, where the main running code should…

Patrice
- 3
- 2
0
votes
1 answer
Why does the task bar appear when I display a self-drawn modeless dialog? .. sometimes?
I have an interesting (but frustraring) problem. I have an application which uses the full screen (this is meant to simulate a third-party fullscreen POS application).
My application displays a sequence of modeless dialog boxes on top of the full…

SparkyNZ
- 6,266
- 7
- 39
- 80
0
votes
1 answer
Word VBA - easily remove form frame?
I'm trying to create a user entry form which both captures the users input and displays a status update message. The slickest way I think of doing it is to have my modal form for the user entry display over a modeless form. After the user enters…

Stuart L
- 51
- 6
0
votes
1 answer
Is there any modeless dialog in android, like what google maps shows when touched?
I want a widget that can interact with user, but will not block the activity ,just like google maps does when some place in the screen is touched.
Did any body know how to implement it?
I already know toast、alert,even activity with dialog theme…

Alex Chan
- 1,116
- 3
- 15
- 33
0
votes
1 answer
html popup google.script.run works for me but not others who make a copy of the workbook
I have a menu item that loads a modeless dialog box which calls an html file that asks the user to click a cell and then click ok. Once the user clicks ok it should run a function in my code.gs file using google.script.run. When I do this on my…
0
votes
1 answer
Excel VBA Start Userforms Modeless and then go Modal
Excel allows to start with a Modeless form and then display a Modal (but not the other way around)
I have an app with 4 Userforms : UF1 - Select a partner, UF2 - List existing transactions, UF21 - Display an existing transaction, UF22 - Make a new…

gthalassinos
- 31
- 7
0
votes
1 answer
Code keeps running after modeless userform is opened
When a modeless userform gets loaded, the code in it (except for the Userform_Initialize sub) sometimes does not execute and the main code which calls the userform continues running.
I had it solved, somehow, but this was in the latest update of my…

Tim Stack
- 3,209
- 3
- 18
- 39
0
votes
1 answer
How to destroy a modeless dialog when it loses the focus?
I have a created modeless dialog and placed a grid on top of this dialog(Grid completely overlaps on dialog).This will be shown when user clicks F2.Now when user clicks left mouse button outside the dialog i want to destroy this dialog.
Can please…

Nikhil
- 299
- 3
- 6
- 17
0
votes
1 answer
Openning a Modeless Form at runtime - VBA Excel
I'll try to explain the situation:
I have a form, which is generated and designed programmatically.
So, I have an object instanced with this form: object "NewForm"
At some point, I need to show this form. So I have to add the object NewForm as a…

MGum
- 3
- 2
0
votes
0 answers
WPF MVVM Modeless Window how to stop opening multiple windows
So I have this MVVM app, and in one of the Views called RedView with its corresponding RedViewModel
Inside RedView there is a button :
0
votes
1 answer
Determining A Selected Button In a Modeless Form In the Main From
I'm making a toolbox type thing. The modeless dialog should sit on top of the screen and provide selection options then the main form should carry out options based on which button was pushed. How do I determine what button is selected from the…
0
votes
0 answers
Can command buttons in modeless forms be pressed? (Excel 2010/2016 VBA)
I have a VBA macro for Excel that may take a long time to process. In addition, in the beginning, I open another worksheet to get some data. While this is happening, nothing appears to be going on on the screen. I have a modeless userform that I…

TychaBrahe
- 51
- 4
0
votes
2 answers
MFC force a CFormView in a CMultiDocTemplate to always stay on top
I know how to force a CDialog to always stay on top of all other windows in your program ... non-modal. As seen in the test method below (code), you do not create by using *.DoModal. I understand this.
void CMFCTestAApp::OnOpenNonModalDialog()
{
…

Fractal
- 1,748
- 5
- 26
- 46