Tagged Questions

0
votes
1answer
122 views

How to show another window from mainwindow in QT

Platform: QT, Windows XP I am new to Qt. I want to show another window(what to do to open it as dialog) from mainwindow. I did "add New Item ->Qt Designer Form Class", named it say …
1
vote
2answers
101 views

WPF ShowDialog and ElementHost

Hello, is it possible to display a Modal Window from a WPF User Control, that is a child of an ElementHost, and set the owner/parent of the Modal Window to the containing Form cont …
0
votes
2answers
209 views

WPF ShowDialog returns null immediatly on second call …

I think this is a bug in the WPF framework, with out going into depths of my program and why I am doing what I am doing, I wrote a simple test app to prove my theory. Can someone …
0
votes
1answer
227 views

When would ShowDialog() return null?

WPF's Window.ShowDialog method returns a nullable boolean. So does CommonDialog.ShowDialog. Now, I understand cases where these would return false (user clicked Cancel or pressed …
1
vote
4answers
415 views

Can I set ShowDialog() to not be topmost?

Is there a way I can set a ShowDialog() to not be topmost? I've looked at all the related SO questions, and none quite matched my situation. What I do is open a new WinForm from a …
2
votes
2answers
67 views

How to Link Different Form ?

I got great help in my first question n hopefully someone will tell me or refer me to an earlier question about this topic. I want to link different forms like I click on a button …
0
votes
2answers
314 views

How to achieve modal dialogs from NotifyIcon context menu?

I've got a shell tray icon with an attached context menu. The problem I'm having is that calling ShowDialog() from a context menu Clicked handler does not result in a modal dialog …
0
votes
3answers
199 views

VB.NET: What is the best way to retrieve a value from a second form?

I'm teaching myself VB.Net. Here is a problem I have recently come across. Say I have a main Form1 in my application. Form1 calls a second LoginForm which (like the name suggests) …
1
vote
1answer
150 views

ShowDialog, PropertyGrid and Timer problem

I have a strange bug, please, let me know if you have any clues about the reason. I have a Timer (System.Windows.Forms.Timer) on my main form, which fires some updates, which also …
0
votes
1answer
230 views

System::Windows::Forms::Form::ShowDialog()

I have a 2 forms setup my first form will call another form with the ShowDialog() method when I receive data from the serial port ShowDialog() throws InvalidOperation with additi …
0
votes
2answers
559 views

How to correctly ShowDialog() from inside an MDIChild form?

I have an MDIChild form that needs to show a dialog. I'm currently doing it like this from inside the mdichild form... f.ShowDialog(Me) Should I be using f.ShowDialog(mdiparent)? …
9
votes
5answers
1k views

Is it possible to use ShowDialog without blocking all forms?

I hope I can explain this clearly enough. I have my main form (A) and it opens 1 child form (B) using form.Show() and a second child form (C) using form.Show(). Now I want child fo …
0
votes
1answer
711 views

WPF Routed Commands and ShowDialog Windows

Hello, I was wondering how a window opened through ShowDialog is treated in the Visual Tree. For example, Window A opens Window B through a ShowDialog. When firing a routed comm …