标题: 进度条打开的时机 [打印本页] 作者: 好学 时间: 2008-6-19 12:10 标题: 进度条打开的时机 Private Sub Form_Load()
DoCmd.OpenForm "进度条"
' 检查与“数据库”中表的链接
If CheckLinks() = False Then
RefreshLinks
End If
End Sub
不是很明白?要多建一个数据库?有例子吗?谢谢!作者: tz-chf 时间: 2008-6-19 15:23
合适的地方加DoEvents作者: 好学 时间: 2008-6-19 15:40
Private Sub Form_Load()
DoEvents
DoCmd.OpenForm "进度条"
' 检查与“数据库”中表的链接
If CheckLinks() = False Then
RefreshLinks
End If
End Sub