• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

验证Windows密码

发布: 2007-6-21 21:57 | 作者: -  | 来源: -  | 查看: 46次 | 进入软件测试论坛讨论

领测软件测试网

   

|声明模块:

Option Explicit

Declare Function GetUserName Lib "advapi32.dll" Alias _

"GetUserNameA" (ByVal lpBuffer As String, _

nSize As Long) As Long

Private Declare Function WNetVerifyPassword Lib "mpr.dll" Alias _

"WNetVerifyPasswordA" (ByVal lpszPassword As String, _

ByRef pfMatch As Long) As Long

Public Function GetWindowsLoginUserID() As String

Dim rtn As Long

Dim sBuffer As String

Dim lSize As Long

sBuffer = String$(260, Chr$(0))

lSize = Len(sBuffer)

rtn = GetUserName(sBuffer, lSize)

If rtn Then

sBuffer = left$(sBuffer, lSize)

Reformat string

If InStr(sBuffer, Chr$(0)) Then

sBuffer = left$(sBuffer, InStr(sBuffer, Chr$(0)) - 1)

End If

GetWindowsLoginUserID = sBuffer

Else

Error!

GetWindowsLoginUserID = ""

End If

End Function

Public Function VerifyWindowsLoginU Password(ByVal Password As String) As Boolean

Dim rtn As Long, Match As Long

rtn = WNetVerifyPassword(Password, Match)

If rtn Then

VerifyWindowsLoginUserPassword = False

Else

VerifyWindowsLoginUserPassword = (Match $#@60;$#@62; 0)

End If

End Function

|窗体代码:

Private Sub cmdVerify_Click()

MsgBox "The password you supplied was " VerifyWindowsLoginUserPassword(txtPassword.Text)

End Sub

Private Sub Form_Load()

txtUsername = GetWindowsLoginUserID

txtUsername.Enabled = False

End Sub

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网