VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

FIND WINDOW BY ENTERING TITLE

Md.Mafuzul Islam Mafuz  (7 Submissions)   Windows API Call/Explanation   VB 6.0   Unknown Difficulty   Fri 14th February 2003   Mon 8th February 2021

FIND WINDOW BY ENTERING TITLE

API Declarations


'FIND WINDOW BY ENTERING TITLE. '
'MD.MAFUZUL ISLAM MAFUZ '
'WEB:www.mafuz.com '
'E-mail:[email protected] '
'BANGLADESH '


'FINDWINDOW:>>The FindWindow function retrieves the
'handle to the top-level window whose class name and
'window name match the specified strings. This function
'does not search child windows.
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long

'SETWINDOWTEXT:>>The SetWindowText function changes the
'text of the specified window's title bar (if it has one).
'If the specified window is a control, the text of the
'control is changed.
Private Declare Function SetWindowText Lib "user32" Alias "SetWindowTextA" (ByVal hwnd As Long, ByVal lpString As String) As Long


Rate FIND WINDOW BY ENTERING TITLE (1(1 Vote))
FIND WINDOW BY ENTERING TITLE.bas

FIND WINDOW BY ENTERING TITLE Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters