mdlMain.bas
上传用户:tqlouisa
上传日期:2013-04-03
资源大小:742k
文件大小:1k
源码类别:

其他数据库

开发平台:

Visual Basic

  1. Attribute VB_Name = "mdlMain"
  2. '定义用户类型
  3. '声明会局变量
  4. Public g_blogin As Boolean
  5. Public g_bAdmin As Boolean
  6. Public Const Manager = 4
  7. Public Const General = 2
  8. Public Const Guest = 1
  9. Public gintMode As Integer
  10. Public flagEdit As Boolean
  11. Public sqlStr As String
  12. Public flagSearch As Boolean
  13. Public sql As String
  14. '查找用户
  15. Public Function IsExistuser(strUserName As String, strpwd As String) As Boolean
  16. Dim cmd As Command
  17. Dim rs As Recordset
  18. Set cmd = New Command
  19. If DataE.conLibrary.State = adStateClose Then
  20.   DataE.conLibrary.Open
  21. End If
  22. cmd.ActiveConnection = DataE.conLibrary
  23. cmd.CommandText = "select * from UserInfo where username='" & strUserName & "'"
  24. If strpwd <> "" Then
  25. '登录
  26.   cmd.CommandText = cmd.CommandText + " and pwd='" & strpwd & " '"
  27. End If
  28. Set rs = cmd.Execute
  29. If rs.RecordCount <> 0 Then
  30.   IsExistuser = True
  31.   If g_blogin Then
  32.     End If
  33. Else
  34. '没有此用户
  35.   IsExistuser = False
  36. End If
  37. End Function