VBA 用户表单 Path/File 访问错误 - 错误 75
VBA Userform Path/File Access Error - Error 75
Excel 2013 32 位/Access 2013 32 位/Win 7 64 位
进度条码:
Sub progress(pctCompl As Single)
If pctCompl = 100 Then
Unload ProgressBar
Exit Sub
End If
ProgressBar.Text.Caption = pctCompl & "% Completed"
ProgressBar.Bar.Width = pctCompl * 2
DoEvents
End Sub
启动器编码器:
Sub LaunchPBUF()
ProgressBar.Show '<-- Error Location
End Sub
我做了什么:
- 从 Excel 导出用户表单并导入到 Access
- 注意到带有 .frm 导入的 .frx 文件,无法确保正在导入 .frx
- 已从 Access 中删除用户表单并在 Access 中重新创建
- 按照此处的说明进行操作
- 右键单击 "Tools" 并自定义工具栏以使用添加用户窗体命令
- 用户窗体设计:http://www.excel-easy.com/vba/examples/progress-indicator.html
我强烈建议使用 "native" Access 表单,几乎没有人在 Access 中使用 Userforms。
或者使用SysCmd创建一个没有表格的进度条。
Excel 2013 32 位/Access 2013 32 位/Win 7 64 位
进度条码:
Sub progress(pctCompl As Single)
If pctCompl = 100 Then
Unload ProgressBar
Exit Sub
End If
ProgressBar.Text.Caption = pctCompl & "% Completed"
ProgressBar.Bar.Width = pctCompl * 2
DoEvents
End Sub
启动器编码器:
Sub LaunchPBUF()
ProgressBar.Show '<-- Error Location
End Sub
我做了什么:
- 从 Excel 导出用户表单并导入到 Access
- 注意到带有 .frm 导入的 .frx 文件,无法确保正在导入 .frx
- 已从 Access 中删除用户表单并在 Access 中重新创建
- 按照此处的说明进行操作
- 右键单击 "Tools" 并自定义工具栏以使用添加用户窗体命令
- 用户窗体设计:http://www.excel-easy.com/vba/examples/progress-indicator.html
我强烈建议使用 "native" Access 表单,几乎没有人在 Access 中使用 Userforms。
或者使用SysCmd创建一个没有表格的进度条。