|
本帖最后由 wang1950317 于 2013-2-14 11:27 编辑
各位老师,一直使用office2003做Access数据库,过节带到配置较高并安装office2010的电脑上,发现一些问题:
1 使用论坛上andymark老师提供的“API真正实现窗体居中源代码”的代码,提示编译错误,提示:<若要在64位系统上使用,则必须更新此项目中的代码,请检查并更新 语句,然后用 属性标记它们。> 出错的代码:
Private Declare Function apiGetClientRect Lib "user32" Alias "GetClientRect" (ByVal hwnd As Long, lpRect As typRect) As Long
Private Declare Function apiGetWindowRect Lib "user32" Alias "GetWindowRect" (ByVal hwnd As Long, lpRect As typRect) As Long'
Private Declare Function apiSetWindowPos Lib "user32" Alias "SetWindowPos" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
Private Declare Function apiShowWindow Lib "user32" Alias "ShowWindow" (ByVal hwnd As Long, ByVal nCmdShow As Long) As Long
(小的代码很菜,不知如何更新)
2 第一次打开使用选像卡(选项卡上使用未绑定对象框)的窗体,显示特慢,需要等一会儿才显示。
3使用选项卡控件的窗体打开后选项卡首页不显示数据,需要点击选项卡后面的页再点击首页,首页才显示。
不知是何原因,该如何解决?请各位老师指教!谢谢! |
|