Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / VBScript
Article

Verify windows open VB

Rate me:
Please Sign up or sign in to vote.
2.75/5 (4 votes)
25 Apr 2002 72.1K   13   1
Verify Windows Open in Visual Basic

Introduction

Verify if the windows or form is loaded.

Declaration Function FindWindow
Private Declare Function FindWindow Lib "USER32" Alias "FindWindowA" _
(ByVal lpszClassName As String, ByVal lpszWindow As String) As Long

Call the function:
If FindWindow(vbNullString, Caption) Then
   msgbox "Yes"
Else
   msgbox "No"
End If

You can verify if a window or form is open not only from visual basic, from windows itself For example you can verify if the application CALC.EXE is loaded.

Se puede verificar no solo los formularios abeirtos dentro de Visual Basic, sino tambien cualquier ventana que se encuentre abierta en Windows.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Argentina Argentina
Lic. Fernando Finelli

Comments and Discussions

 
Generaluse this code Pin
grangregpgran31-May-03 23:45
grangregpgran31-May-03 23:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.