由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - how to open 32 bit excel file on 64 bit system?
相关主题
[转载] 真的没有人懂 ORACLE pro*c阿? :((((A question about recursive query
About write/read binary files in PB请各位帮我看看这个最简单的Stored Procedure (转载)
Question about T-SQLNeed help on finding dependency objects
[转载] Hehe,不好意思,another question:)select 跟 set 的区别?
USE statement in SQL 7question about import xml to sql table
PL/SQL Help!!!SQL Server 2005 Exec( )
请教set和select 的区别How to merge tables in SQL Server 2000?
HELP!!! PL/SQL write to a filemore HELP: how to make this sql more efficient?
相关话题的讨论汇总
话题: bit话题: excel话题: 64话题: 32
进入Database版参与讨论
1 (共1页)
p**5
发帖数: 2544
1
I got an error when i tried to enable macros in a 32 bit excel and wonder if
any one knows how to work around:
Compile error:
The code in this project must be updated for use on 64-bit
systems. Please review and update Declare statements and then
mark them with the PtrSafe attribute.
l*****e
发帖数: 3343
2
Change the declarations in modules/classes - with conditional compilation
macro like this:
#If VBA7 Then
Dim yourVariable As LongPtr
#Else
Dim yourVariable As Long
#End If
http://technet.microsoft.com/en-us/library/ee683865(v=office.14
http://www.jkp-ads.com/articles/apideclarations.asp
1 (共1页)
进入Database版参与讨论
相关主题
more HELP: how to make this sql more efficient?USE statement in SQL 7
SQL请教...怎么写这样的distribution listPL/SQL Help!!!
请教一个有关SQL concat的问题请教set和select 的区别
T-SQL 问题HELP!!! PL/SQL write to a file
[转载] 真的没有人懂 ORACLE pro*c阿? :((((A question about recursive query
About write/read binary files in PB请各位帮我看看这个最简单的Stored Procedure (转载)
Question about T-SQLNeed help on finding dependency objects
[转载] Hehe,不好意思,another question:)select 跟 set 的区别?
相关话题的讨论汇总
话题: bit话题: excel话题: 64话题: 32