ActiveX.txt
上传用户:china_gccl
上传日期:2022-07-09
资源大小:1k
文件大小:1k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual Basic

  1. 在窗体里加入ActiveX控件(Windows Media Player),然后将此控件的url指向你的播放的音乐文件即可,记得将此控件隐藏!
  2. Private Sub Cmd确定_Click()
  3.     On Error GoTo Err_Cmd确定_Click
  4.     Dim mypasswords As String
  5.     Dim jishu As Integer
  6.    jishu = jishu + 1
  7.    
  8.     If jishu < 3 Then
  9.         mypasswords = DLookup("password", "用户密码", "[username]=" & "'" & Me!用户名 & "'")
  10.     If IsNull(Me.密码) = False And Me.密码 = mypasswords Then
  11.         Me.Visible = False
  12.         DoCmd.Close acForm, "登陆背景", acSaveYes
  13.         If Me!用户名 = "管理员" Then
  14.        DoCmd.OpenForm "考勤管理系统", acNormal, , , acFormReadOnly, acWindowNormal
  15.         Else
  16.         DoCmd.OpenForm "员工查询系统", acNormal, , , acFormReadOnly, acWindowNormal
  17.        End If
  18.     Else
  19.         MsgBox "用户名和密码错误,请仔细确认", , "请重新输入"
  20.         Me.密码.SetFocus
  21.     End If
  22.   Else
  23.     MsgBox "已经试过三次,将要退出,如想进入请与管理员联系!"
  24.        Quit
  25.  End If
  26. Exit_Cmd确定_Click:
  27.     Exit Sub
  28. Err_Cmd确定_Click:
  29.     MsgBox "请输入用户名和密码,工作时请不要如此大意"
  30.     Resume Exit_Cmd确定_Click
  31. End Sub
  32.