代码搜索:FindWindow
找到约 333 项符合「FindWindow」的源代码
代码结果 333
www.eeworm.com/read/411102/11255975
bas module1.bas
Attribute VB_Name = "Module1"
Option Explicit
'---------------声明函数-----------------------
'得到窗体句柄的函数,FindWindow函数用来返回符合指定的类名( ClassName )和窗口名( WindowTitle )的窗口句柄
Public Declare Function FindWindow
www.eeworm.com/read/156589/11790731
txt 关闭外部应用程序.txt
关闭外部应用程序
先利用FindWindow函数找出要关闭的应用程序的主窗口名字,然后发送一个消息即可。
实例如下:
HWnd HWndCalculator;
HWndCalculator = Winprocs->FindWindow(nil, "计算器");
// close the exist Calculator
if (HWndCalculator)
www.eeworm.com/read/167186/9978329
dfm findwindowunit.dfm
object FindWindow: TFindWindow
Left = 106
Top = 645
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Find'
ClientHeight = 154
ClientWidth = 232
Color = clBtnFace
www.eeworm.com/read/376060/2714892
svn-base findwindowunit.dfm.svn-base
object FindWindow: TFindWindow
Left = 106
Top = 645
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Find'
ClientHeight = 154
ClientWidth = 232
Color = clBtnFace
www.eeworm.com/read/180867/9282604
bas mdldeclares.bas
Attribute VB_Name = "mdlDeclares"
Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Declare Function GetWindowThreadPro
www.eeworm.com/read/461190/7232186
bas mdldeclares.bas
Attribute VB_Name = "mdlDeclares"
Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Declare Function GetWindowThreadPro
www.eeworm.com/read/236349/14018755
bas mdldeclares.bas
Attribute VB_Name = "mdlDeclares"
Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Declare Function GetWindowThreadPro
www.eeworm.com/read/475243/6794671
txt vbym.txt
Option Explicit
Dim ecxi As Long, eax As Long
Private Sub Check1_Click()
If Check1.Value = 1 Then
GameFormHwnd = FindWindow("ElementClient Window", "Element Client")
If GameFo
www.eeworm.com/read/279553/10420868
bas msdshellwait.bas
Attribute VB_Name = "MsdShellWait"
Option Explicit
Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Public Dec
www.eeworm.com/read/245058/12824915
bas jmkz.bas
Attribute VB_Name = "jmkz"
Public Type RECT
Left As Long
Top As Long
Right As Long
Bottom As Long
End Type
Public Declare Function FindWindow Lib "user32" Alia