EXCEL如何编辑登录窗口?
1个回答
展开全部
首先建立一个用户窗体UserForm1做为登录窗,设置两个文本框TextBox1和TextBox2,一个确定按钮,CommandButton1。代码如下
Private Sub CommandButton1_Click()
If TextBox1.Value = "管理员" And TextBox2.Value = "123" Then
Me.Hide
Sheets("sheet1").Select
Else
ThisWorkbook.Application.Quit
End If
End Sub
在thisworkbook项输入如下代码,就在打开文档时弹出登录窗。
Private Sub Workbook_Open()
UserForm1.Show 0
End Sub
Private Sub CommandButton1_Click()
If TextBox1.Value = "管理员" And TextBox2.Value = "123" Then
Me.Hide
Sheets("sheet1").Select
Else
ThisWorkbook.Application.Quit
End If
End Sub
在thisworkbook项输入如下代码,就在打开文档时弹出登录窗。
Private Sub Workbook_Open()
UserForm1.Show 0
End Sub
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询