Locate MessageBox over Window

E

Ed Bitzer

One option of the messagebox object indicates it can be placed over a
selected window rather than just appearing centered on the desktop. The
function is "Overloads Public Shared Function Show(IWin32Window, String) As
DialogResult"

I have unsuccessfully tried:
///
Dim winhandle as string
Dim rtn as DialogResult
winHandle = Me.Handle.ToString()
rtn = MessageBox.Show(winhandle, "My message")
\\\

Unfortunately the winhandle becomes the content with the My message as the
title and the box in the center of the desktop, not over form1.
Appreciate some help.

Ed
 
S

Stephany Young

The 'owner' parameter to the MessageBox.Show() method is of type
IWin32Window. It does not represent a window handle, rather it represents a
window. so in your case it should be: rtn = MessageBox.Show(Me, "My
message").

The bigger point to understand when you read the documentation is that "You
can use the owner parameter to specify a particular object, which implements
the IWin32Window interface, to place the message box in front of.". Note the
use of the phrase 'in front of'. This means the position of the dialog in
the z-order, not the location of the dialog on the screen.

I have never understood how this parameter is useful. Because the dialog is
modal to the application, I can't see any point in displaying the dialog in
front of a window that might be behind the current window. One would have to
move the current window to see it but the dialog is modal so you can't.
 
H

Herfried K. Wagner [MVP]

Ed,

Ed Bitzer said:
I do thank you but converting that code is over my head. The vb.net
messagebox object appears to have the capability and simply executed but I
do not understand the window identification syntax.

The .NET messagebox doesn't have this capability out of the box (although
you can specify an owner window). I doubt that it's worth the effort to
center a messagebox.
 
E

Ed Bitzer

Stephany,

I certainly misunderstood - as you suspected I was not thinking about the
z-order but the placement of the messagebox relative to my form. My program
has a relatively small window and I found the message box voicing a
confirmation could be "far away." When I saw this option I jumped, but then
stumbled with my lack of knowledge of IWin32Window interface. So the
alternate solution (besides leaning a bit more, and at 72 I am getting a bit
old for that) is to create my own form and control its position relative to
the form opening it.

Ed
 
E

Ed Bitzer

Herfried ,
Stephany caught my misunderstanding and I do thank you for trying to
help. Have got to lean how to convert old API's so will study the code you
offered.

Ed
 
S

Stephany Young

That's cool Ed. But remember that 72 is only a spring chicken these days. Go
for it!!!!!!!!

Once you've got your head around it and developed your 'super-duper' dialog
box, I'm sure that we'd all appreciate hearing about it. It's one of those
things that is on everyone's todo list but no-one ever has the time to do
actually do it.

One of the nice things that comes with 'rolling your own' is that you get to
add all that functionality that you wish was in MessageBox, like relative
and absolute positioning, time-out and other goodies.
 
E

Ed Bitzer

Stephany,

It's not cool being 72 - it's old, ya, unfortunately that bit about you are
only as old as you feel is true and I do hurt after an hour or two of tennis
or even ping pong - but admittedly I can still play.

Don't have the ambition to create a truly flexible message box but have
already added to my "dialer" a window without min and max buttons that
positions itself relative to the calling form where I wanted it. I also
remember all the form locations if moved but used an "ini" file rather than
the registry - I still like ini files better.
 
C

Cor Ligthert

Ed,
I still like ini files better.
Be cautious, this kind of behaviour can show that your age stops you to
check newer solutions. Did you try the registry with VBNet. It is so easy to
use.

Cor
 
E

Ed Bitzer

Cor,

Of course there might actually be some reason to stop checking newer
solutions at my age - times running out<g>. However I admit I have not even
looked how VB.Net handles and will do so. The INI file has always made it
so easy to examine and modify content with any ASCII editor. Not having to
search through the Registry to detect my errors did seem simpler.

Ed
 
C

Cor Ligthert

Ed,

A piece of code to save your Form settings

\\\
Imports Microsoft.Win32
Public Class RegistryEd
Private Shared pFormWidth As Integer
Private Shared pFormHeight As Integer
Private Shared pFormX As Integer
Private Shared pFormY As Integer
Private Shared pWindowState As Integer
Private Shared Reg As RegistryKey = Registry.CurrentUser
Public Shared Property FormWidth() As Integer
Get
Return pFormWidth
End Get
Set(ByVal Value As Integer)
pFormWidth = Value
End Set
End Property
Public Shared Property FormHeight() As Integer
Get
Return pFormHeight
End Get
Set(ByVal Value As Integer)
pFormHeight = Value
End Set
End Property
Public Shared Property FormX() As Integer
Get
Return pFormX
End Get
Set(ByVal Value As Integer)
pFormX = Value
End Set
End Property
Public Shared Property FormY() As Integer
Get
Return pFormY
End Get
Set(ByVal Value As Integer)
pFormY = Value
End Set
End Property
Public Shared Property WindowState() As Integer
Get
Return pWindowState
End Get
Set(ByVal Value As Integer)
pWindowState = Value
End Set
End Property
Public Shared Sub Load()
Reg = Registry.CurrentUser.CreateSubKey("Software\Cor\EdSample")
pFormWidth = CInt(Reg.GetValue("Width", 700))
pFormHeight = CInt(Reg.GetValue("Height", 400))
pFormX = CInt(Reg.GetValue("X", 100))
pFormY = CInt(Reg.GetValue("Y", 100))
pWindowState = CInt(Reg.GetValue("WindowState", 0))
End Sub
Public Shared Sub Save()
Dim Reg As RegistryKey
Reg = Registry.CurrentUser.CreateSubKey("Software\Cors\EdSample")
Reg.SetValue("Width", pFormWidth)
Reg.SetValue("Height", pFormHeight)
Reg.SetValue("X", pFormX)
Reg.SetValue("Y", pFormY)
End Sub
End Class
///

I hope this gives a QuickStart

Cor
 
C

Cor Ligthert

Ed,

I changed some words and deleted as well some parts, where is Cors it should
be Cor or visa versa. Maybe there are more errors because of that change.

:)

Cor
 
E

Ed Bitzer

Cor,

I do thank you -- you took all the work out of this project. Have an
example working already.

Ed
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top