473,324 Members | 2,246 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,324 software developers and data experts.

Activate a window to forground using API

I developed this module, examples on the internet seem to be much longer..
Can someone explain to me why my solution doesn't work?

Module modAPI

Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As Long) As
Long

Public Sub ActivateAppWindow()

SetForegroundWindow(fMain.Handle.ToInt32)

End Sub

End Module
Jul 21 '05 #1
18 9761
Hi,

API declare is wrong. Types have changed since vb6. Use integer
instead of long. In this case i would use intptr.

Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As intptr) As
integer

Public Sub ActivateAppWindow()

SetForegroundWindow(fMain.Handle)

End Sub
Ken
----------------

"D Witherspoon" <dw**********@noway.org> wrote in message
news:un**************@TK2MSFTNGP14.phx.gbl...
I developed this module, examples on the internet seem to be much longer..
Can someone explain to me why my solution doesn't work?

Module modAPI

Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As Long) As
Long

Public Sub ActivateAppWindow()

SetForegroundWindow(fMain.Handle.ToInt32)

End Sub

End Module

Jul 21 '05 #2
Module Module1
Public Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As
Integer) As Integer

Public Sub SetForeground(ByVal iHandle As Integer)
SetForegroundWindow(iHandle)
End Sub
End Module

Usage:
-------

SetForeground (frm.Handle.Int32)

'frm' is the Form to set as the foreground window

Example:
---------

Declaration:
------------

Dim frm As New Form2

Behind Button1 (for example):
------------------------------

frm.Show()

Behind Button2 (for example):
------------------------------

SetForeground (frm.Handle.Int32)

Crouchie1998
BA (HONS) MCP MCSE
Jul 21 '05 #3
"Ken Tucker [MVP]" <vb***@bellsouth.net> schrieb:
API declare is wrong. Types have changed since vb6. Use integer
instead of long. In this case i would use intptr.

Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As intptr)
As
integer

Public Sub ActivateAppWindow()

SetForegroundWindow(fMain.Handle)


Note that this will only work as long as your application is the active
application. Otherwise 'AttachThreadInput' is needed too. In other words,
it's not as easy (and not recommended) to "steal" the focus from another
application.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 21 '05 #4
"Crouchie1998" <cr**********@spamcop.net> schrieb:
Public Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As
Integer) As Integer


I prefer this declaration/usage, although your code should work:

\\\
Public Declare Function SetForegroundWindow Lib "user32.dll" ( _
ByVal hWnd As IntPtr _
) As Boolean
..
..
..
Dim Success As Boolean = SetForegroundWindow(frm.Handle)
///

Just my 2 Euro cents...

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 21 '05 #5
D,

These questions make me forever curious.

Although as Herfried already said have I the same opinion that you should
avoid this kind of instruction.

Why not just
me.topmost = true

Cor
Jul 21 '05 #6
Cor,

"Cor Ligthert" <no************@planet.nl> schrieb:
Although as Herfried already said have I the same opinion that you should
avoid this kind of instruction.

Why not just
me.topmost = true


I doubt that a topmost window is a viable solution in this situation...

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 21 '05 #7
> "Cor Ligthert" <no************@planet.nl> schrieb:
Although as Herfried already said have I the same opinion that you should
avoid this kind of instruction.

Why not just
me.topmost = true


I doubt that a topmost window is a viable solution in this situation...

After that I had sent this message I thought,
me.topmost = true
me.topmost = false

Maybe does that the job that is asked, however I am more interested in that
statusbar problem, but the information from the OP is to few and I think
that this is a on the border solution.

Cor
Jul 21 '05 #8
Me.TopMost will make a form the topmost in the application but not over
other applications.

When you refer to the status bar problem are you talking about my problem
with the app not showing up in the taskbar.

It's tricky and yes, is the only reason I have to resort to trying to bring
the app window into the foreground. Unfortunatly no luck yet with the
status bar thing.

"Cor Ligthert" <no************@planet.nl> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
"Cor Ligthert" <no************@planet.nl> schrieb:
Although as Herfried already said have I the same opinion that you
should avoid this kind of instruction.

Why not just
me.topmost = true


I doubt that a topmost window is a viable solution in this situation...

After that I had sent this message I thought,
me.topmost = true
me.topmost = false

Maybe does that the job that is asked, however I am more interested in
that statusbar problem, but the information from the OP is to few and I
think that this is a on the border solution.

Cor

Jul 21 '05 #9
Not recommended as in technically or morally ?
"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
"Ken Tucker [MVP]" <vb***@bellsouth.net> schrieb:
API declare is wrong. Types have changed since vb6. Use integer
instead of long. In this case i would use intptr.

Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As intptr)
As
integer

Public Sub ActivateAppWindow()

SetForegroundWindow(fMain.Handle)


Note that this will only work as long as your application is the active
application. Otherwise 'AttachThreadInput' is needed too. In other
words, it's not as easy (and not recommended) to "steal" the focus from
another application.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 21 '05 #10
D,
Me.TopMost will make a form the topmost in the application but not over
other applications.

Than I have probably another system. When I use topmost = true I get the
form only from my screen when I minimalize it.

Cor
Jul 21 '05 #11
"D Witherspoon" <dw**********@noway.org> schrieb:
Not recommended as in technically or morally ?


Morally -- I doubt that the application will pass the Windows Logo test when
it's stealing the focus.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 21 '05 #12
Cor,

"Cor Ligthert" <no************@planet.nl> schrieb:
Me.TopMost will make a form the topmost in the application but not over
other applications.


Than I have probably another system. When I use topmost = true I get the
form only from my screen when I minimalize it.


ACK. MSDN:

| A topmost form is a form that overlaps all the other (non-topmost)
| forms even if it is not the active or foreground form. Topmost forms
| are always displayed at the highest point in the Z-order of the
| windows on the desktop.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Jul 21 '05 #13
Thats a good point.

But until I can find out why it deosn't show up in the task (when it first
opens) bar I will have to do this.

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
"D Witherspoon" <dw**********@noway.org> schrieb:
Not recommended as in technically or morally ?


Morally -- I doubt that the application will pass the Windows Logo test
when it's stealing the focus.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 21 '05 #14
It works now without even requiring 'AttachThreadInput'. I changed the
declare to return an Interger instead of a Long. Seemed to fix it and
return 1 as the return code instead of a crazy long number.

Even if it isn't the active application it still works, 'AttachThreadInput'
doesn't seem to be required.
"D Witherspoon" <dw**********@noway.org> wrote in message
news:u6**************@TK2MSFTNGP10.phx.gbl...
Thats a good point.

But until I can find out why it deosn't show up in the task (when it first
opens) bar I will have to do this.

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
"D Witherspoon" <dw**********@noway.org> schrieb:
Not recommended as in technically or morally ?


Morally -- I doubt that the application will pass the Windows Logo test
when it's stealing the focus.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>


Jul 21 '05 #15
"D Witherspoon" <dw**********@noway.org> schrieb:
It works now without even requiring 'AttachThreadInput'. I changed the
declare to return an Interger instead of a Long. Seemed to fix it and
return 1 as the return code instead of a crazy long number.

Even if it isn't the active application it still works,
'AttachThreadInput' doesn't seem to be required.


What Windows version are you using?

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 21 '05 #16
XP Pro SP2

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:eS****************@TK2MSFTNGP09.phx.gbl...
"D Witherspoon" <dw**********@noway.org> schrieb:
It works now without even requiring 'AttachThreadInput'. I changed the
declare to return an Interger instead of a Long. Seemed to fix it and
return 1 as the return code instead of a crazy long number.

Even if it isn't the active application it still works,
'AttachThreadInput' doesn't seem to be required.


What Windows version are you using?

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 21 '05 #17
"D Witherspoon" <dw**********@noway.org> schrieb:
XP Pro SP2


Mhm... Normally your application's taskbar button should flash when calling
'SetForegroundWindow' when the application is not the active application.

MSDN on 'SetForegroundWindow':

| With this change, an application cannot force a window to
| the foreground while the user is working with another window.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 21 '05 #18
That's interesting.

I also tried FlashWindow API as well to see if I could just flash the
taskbar instead, but still because on startup there is no item for the
window showing up in the taskbar this doesn't work. When calling
SetForegroundWindow the window will pop to the front when the window is done
loading and it will show up on the taskbar. It's unfortunate that we have
to do it this way, but it's an application that runs within our office
enviroment, so I've made a decision that it's fine.

I would love to find out why it doesn't show up in the taskbar. Could it be
partly due to the 3rd party infragistics controls we're using, or that it's
MDI, or that it's being launched as a no ntouch deployment app frmo IE? I
have no idea. Uunfortunatly in IT, you never have enough time to find out
why these bugs are they. Either fix it or find a workaround... and move
on... unfortunatly..

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:uS**************@TK2MSFTNGP09.phx.gbl...
"D Witherspoon" <dw**********@noway.org> schrieb:
XP Pro SP2


Mhm... Normally your application's taskbar button should flash when
calling 'SetForegroundWindow' when the application is not the active
application.

MSDN on 'SetForegroundWindow':

| With this change, an application cannot force a window to
| the foreground while the user is working with another window.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 21 '05 #19

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Milon | last post by:
Hi all, I am new to Python, and I just wrote a simple script to launch an application from the windows's start menu's run command. (see code as follow) There is an "OK" button on the new...
3
by: Michael Wu | last post by:
I wonder if anyone know how to activate a window with a given window handler. I used to do this with the win32 API static native boolean SetForegroundWindow(int hwnd); I wonder if there is...
1
by: Lex | last post by:
I want to write an app in C# that keeps track of when the foreground window in the OS changes. Is there an event that I can "susbscribe" to for this? Or am I stuck polling using the...
10
by: zhou | last post by:
in Visual Basic ,I use Appactivate(AcadApp.caption);
18
by: D Witherspoon | last post by:
I developed this module, examples on the internet seem to be much longer.. Can someone explain to me why my solution doesn't work? Module modAPI Declare Function SetForegroundWindow Lib...
2
by: Dave Booker | last post by:
I have a Windows form application that I generally run minimized. When a critical event occurs it instantiates another "Alert" form which I want to grab the user focus. In the Alert constructor...
1
by: pearturtle123 | last post by:
Hi, I am new to Python and I am using PAMIE to manipulate IE browser. Currently, I have IE window 1 launched, after I clicked on a link on window 1, a second IE window 2 isopened. Then, I want...
0
IonutZ
by: IonutZ | last post by:
VB.NET 2008-FORM: Getting a window to forground while only knowing its partial name. Hi guys :) I have the name of an application, it starts with ACI and I want to set it to my forground in...
10
by: Gary | last post by:
I'm trying to find a way to determin which window Within-Another-Program currently has the focus. THE SITUATION: (Skip down to "My Question" if you don't want the background...) * This is...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.