Office中国论坛/Access中国论坛
标题:
问题:为什么系统启动的窗体组合框失灵(问题解决了)
[打印本页]
作者:
hljthzbc
时间:
2010-8-9 12:55
标题:
问题:为什么系统启动的窗体组合框失灵(问题解决了)
本帖最后由 hljthzbc 于 2010-8-11 09:53 编辑
问题:为什么系统启动的窗体组合框失灵.在菜单栏再次启动就可以使用了
这个-
打开窗体面板
-上的组合框-
启动失灵,
在菜单栏再次启动就可以使用了[attach]43061[/attach]
作者:
tmtony
时间:
2010-8-9 19:43
这个问题 真得很难找到原因, 因为没有 今生前世, 难以判断
作者:
hljthzbc
时间:
2010-8-10 16:50
这个-打开窗体面板-上的组合框-启动失灵,在菜单栏再次启动就可以使用了
作者:
Dragxixi
时间:
2010-8-10 17:08
Private Sub Cmdok_Click()
On Error GoTo Err_Cmdok_Click
Dim mypasswords As String
mypassword = DLookup("passwords", "密码", "[username]=" & "'" & Me!Combouser & "'")
If IsNull(Me.Txtpass) = False And Me.Txtpass = mypassword Then
Me.Visible = False
DoCmd.Close acForm, "frm_load_back", acSaveYes
DoCmd.OpenForm "打开窗体面板", acNormal, , , acFormReadOnly, acWindowNormal
Else
MsgBox "用户名和密码错误", , "请重新输入"
Me.Txtpass.SetFocus
End If
Exit_Cmdok_Click:
Exit Sub
Err_Cmdok_Click:
MsgBox Err.Description
Resume Exit_Cmdok_Click
End Sub
问题在这里,加粗的地方
DoCmd.OpenForm "打开窗体面板", acNormal, , ,
acFormReadOnly
, acWindowNormal
作者:
hljthzbc
时间:
2010-8-10 17:37
怎么改呀
欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/)
Powered by Discuz! X3.3