【开源项目】花密(Flower Password)VB版之火狐浏览器模块

来源:互联网 发布:卖家网 淘宝数据 编辑:程序博客网 时间:2024/06/05 04:15
'*****************************************************************' Copyright (c) 2011-2012 FlowerPassword.com All rights reserved.'      Author : xLsDg @ Xiao Lu Software Development Group'        Blog : http://hi.baidu.com/xlsdg'          QQ : 4 4 7 4 0 5 7 4 0'     Version : 1 . 0 . 0 . 0'        Date : 2 0 1 2 / 0 4 / 0 7' Description :'     History :'*****************************************************************Option ExplicitPrivate Declare Function GetClassName _                Lib "user32.dll" _                Alias "GetClassNameA" (ByVal hwnd As Long, _                                       ByVal lpClassName As String, _                                       ByVal nMaxCount As Long) As LongPublic Function GetFirefoxDomainName(ByVal hwnd As Long) As String    GetFirefoxDomainName = isClipboardAsUrl() 'GetWebsiteName(vbNullString)End FunctionPublic Function isFirefox(ByVal WinWnd As Long) As Boolean    If WinWnd > 0 Then        Dim RetVal As Long, lpClassName As String        lpClassName = Space$(256)        RetVal = GetClassName(WinWnd, lpClassName, 256)        If InStr(Left$(lpClassName, RetVal), "MozillaWindowClass") > 0 Then            isFirefox = True        Else            isFirefox = False        End If    Else        isFirefox = False    End IfEnd Function


原创粉丝点击