User contributions
- 08:19, 16 October 2015 diff hist -20 Using the ADE Server/zh-cn Created page with "如果你的项目跨越多个代码文件,在你的每个源文件中使用以下代码:<tt> :<nowiki>#</nowiki>import "ADE.exe" no_implementation </tt>"
- 08:19, 16 October 2015 diff hist +157 N Translations:Using the ADE Server/48/zh-cn Created page with "如果你的项目跨越多个代码文件,在你的每个源文件中使用以下代码:<tt> :<nowiki>#</nowiki>import "ADE.exe" no_implementation </tt>" current
- 08:19, 16 October 2015 diff hist -1 Using the ADE Server/zh-cn Created page with "'''CoInitialize()'''是一个Windows系统调用,在COM系统能够使用之前必须调用。"
- 08:19, 16 October 2015 diff hist +96 N Translations:Using the ADE Server/47/zh-cn Created page with "'''CoInitialize()'''是一个Windows系统调用,在COM系统能够使用之前必须调用。" current
- 08:19, 16 October 2015 diff hist +1 Using the ADE Server/zh-cn Created page with "接下来,使用下面的代码获取第一个ADE引擎实例:<tt> :CoInitialize(NULL); :CAEnginePtr pAde(__uuidof(_CAEngine)); :. :. :. :CoUninitialize(); </tt>"
- 08:19, 16 October 2015 diff hist +170 N Translations:Using the ADE Server/46/zh-cn Created page with "接下来,使用下面的代码获取第一个ADE引擎实例:<tt> :CoInitialize(NULL); :CAEnginePtr pAde(__uuidof(_CAEngine)); :. :. :. :CoUninitialize(); </tt>" current
- 08:19, 16 October 2015 diff hist -26 Using the ADE Server/zh-cn Created page with "你必须将ADE根目录包含到项目设置中的包含路径中,或者在<tt>#import</tt>声明中清楚说明完整路径。"
- 08:19, 16 October 2015 diff hist +130 N Translations:Using the ADE Server/45/zh-cn Created page with "你必须将ADE根目录包含到项目设置中的包含路径中,或者在<tt>#import</tt>声明中清楚说明完整路径。" current
- 08:18, 16 October 2015 diff hist +28 Using the ADE Server/zh-cn Created page with "或者如果你想使用进程内服务器时,可以使用下面的语句:<tt> :<nowiki>#</nowiki>import "Adew.dll" using namespace ADEW; </tt>"
- 08:18, 16 October 2015 diff hist +148 N Translations:Using the ADE Server/44/zh-cn Created page with "或者如果你想使用进程内服务器时,可以使用下面的语句:<tt> :<nowiki>#</nowiki>import "Adew.dll" using namespace ADEW; </tt>" current
- 08:18, 16 October 2015 diff hist -18 Using the ADE Server/zh-cn Created page with "===在C++ATL项目中=== 如果要在一个非.NET C++项目中使用ADE 4.6,将下面两行放在源文件的顶部:<tt> :<nowiki>#</nowiki>import "ADE.exe" :using names..."
- 08:18, 16 October 2015 diff hist +190 N Translations:Using the ADE Server/43/zh-cn Created page with "===在C++ATL项目中=== 如果要在一个非.NET C++项目中使用ADE 4.6,将下面两行放在源文件的顶部:<tt> :<nowiki>#</nowiki>import "ADE.exe" :using names..." current
- 08:18, 16 October 2015 diff hist -28 Using the ADE Server/zh-cn Created page with "因为.NET中缺少这种确定性资源回收,所以确保所有COM对象都被释放让人感到很厌烦。一次,你可能偶尔想在你的代码中执行明确的垃..."
- 08:18, 16 October 2015 diff hist +292 N Translations:Using the ADE Server/42/zh-cn Created page with "因为.NET中缺少这种确定性资源回收,所以确保所有COM对象都被释放让人感到很厌烦。一次,你可能偶尔想在你的代码中执行明确的垃..." current
- 08:18, 16 October 2015 diff hist -34 Using the ADE Server/zh-cn Created page with "需要释放COM对象不是ADE特有的。你必须处理释放所有COM对象,包括Microsoft提供的,尤其是当这些COM对象时进程外的时候。"
- 08:18, 16 October 2015 diff hist +159 N Translations:Using the ADE Server/41/zh-cn Created page with "需要释放COM对象不是ADE特有的。你必须处理释放所有COM对象,包括Microsoft提供的,尤其是当这些COM对象时进程外的时候。" current
- 08:18, 16 October 2015 diff hist -80 Using the ADE Server/zh-cn Created page with "在你使用一个进程外COM服务器(例如:'''ADE.CAEngine''')时,以这种方式释放对象尤其重要。在此情况下,内存资源主要被ADE进程消耗..."
- 08:18, 16 October 2015 diff hist +484 N Translations:Using the ADE Server/40/zh-cn Created page with "在你使用一个进程外COM服务器(例如:'''ADE.CAEngine''')时,以这种方式释放对象尤其重要。在此情况下,内存资源主要被ADE进程消耗..." current
- 08:18, 16 October 2015 diff hist -10 Using the ADE Server/zh-cn Created page with "要想从.NET程序释放一个COM对象的话,你必须执行下面相似的代码(C# 语法):<tt> :System.Runtime.InteropServices.Marshal.ReleaseComObject(ADE); :AD..."
- 08:18, 16 October 2015 diff hist +190 N Translations:Using the ADE Server/39/zh-cn Created page with "要想从.NET程序释放一个COM对象的话,你必须执行下面相似的代码(C# 语法):<tt> :System.Runtime.InteropServices.Marshal.ReleaseComObject(ADE); :AD..." current
- 08:17, 16 October 2015 diff hist -76 Using the ADE Server/zh-cn Created page with "===.释放NET中的对象=== 在pre-.NET Visual Basic和脚本语言中,编程环境自动确保COM对象立即释放。这和在VB.NET、ASP.NET、或其他.NET程序中情..."
- 08:17, 16 October 2015 diff hist +406 N Translations:Using the ADE Server/38/zh-cn Created page with "===.释放NET中的对象=== 在pre-.NET Visual Basic和脚本语言中,编程环境自动确保COM对象立即释放。这和在VB.NET、ASP.NET、或其他.NET程序中情..." current
- 08:17, 16 October 2015 diff hist +35 Using the ADE Server/zh-cn Created page with "要继续使用COM接口,你得使用CAEngine、 CAObject、 CATable、 CAIndex和CARenderingStyle/zh |..."
- 08:17, 16 October 2015 diff hist +351 N Translations:Using the ADE Server/37/zh-cn Created page with "要继续使用COM接口,你得使用CAEngine、 CAObject、 CATable、 CAIndex和CARenderingStyle/zh |..." current
- 08:17, 16 October 2015 diff hist -36 Using the ADE Server/zh-cn Created page with " CAEngine是一个特殊抽象接口的名称,而''ADEW.CAEngineClass'''和''ADE.CAEngineClass'''是执行该结构的两个特殊对象的名称。CAEngi..."
- 08:17, 16 October 2015 diff hist +323 N Translations:Using the ADE Server/36/zh-cn Created page with " CAEngine是一个特殊抽象接口的名称,而''ADEW.CAEngineClass'''和''ADE.CAEngineClass'''是执行该结构的两个特殊对象的名称。CAEngi..." current
- 08:17, 16 October 2015 diff hist +23 Using the ADE Server/zh-cn Created page with "在开始使用ADE之前,你必须先先安装 CAEngine,按照如下所示完成: <tt>:dim ADE as CAEngine = new CAEngineClass ’ VB..."
- 08:17, 16 October 2015 diff hist +319 N Translations:Using the ADE Server/35/zh-cn Created page with "在开始使用ADE之前,你必须先先安装 CAEngine,按照如下所示完成: <tt>:dim ADE as CAEngine = new CAEngineClass ’ VB..." current
- 08:17, 16 October 2015 diff hist -14 Using the ADE Server/zh-cn Created page with "当然,在使用进程内服务器时,你将在上面的<tt>ADE</tt>的地方输入<tt>ADEW</tt> 。这些声明允许你在你的代码证引用 CAEngine..."
- 08:17, 16 October 2015 diff hist +335 N Translations:Using the ADE Server/34/zh-cn Created page with "当然,在使用进程内服务器时,你将在上面的<tt>ADE</tt>的地方输入<tt>ADEW</tt> 。这些声明允许你在你的代码证引用 CAEngine..." current
- 08:17, 16 October 2015 diff hist -36 Using the ADE Server/zh-cn Created page with "对于本地服务器和进程内服务器,ADE类型出现在同一名称空间。为了方便起见,你可以添加<tt>using</tt>声明到你的源文件的顶部,如..."
- 08:17, 16 October 2015 diff hist +296 N Translations:Using the ADE Server/33/zh-cn Created page with "对于本地服务器和进程内服务器,ADE类型出现在同一名称空间。为了方便起见,你可以添加<tt>using</tt>声明到你的源文件的顶部,如..." current
- 08:17, 16 October 2015 diff hist +17 Using the ADE Server/zh-cn Created page with "对于进程外 <tt>ADE.exe</tt>服务器,选择Local server(本地服务器)。要使用<tt>Adew.dll</tt>,选择nonlocal server(非本地服务器)。当然也可..."
- 08:17, 16 October 2015 diff hist +275 N Translations:Using the ADE Server/32/zh-cn Created page with "对于进程外 <tt>ADE.exe</tt>服务器,选择Local server(本地服务器)。要使用<tt>Adew.dll</tt>,选择nonlocal server(非本地服务器)。当然也可..." current
- 08:16, 16 October 2015 diff hist +17 Using the ADE Server/zh-cn Created page with "在Visual Studio 2005中,选择'''Project''' (项目)菜单上选择 '''Add reference or References'''(添加引用),在出现的对话框中,选择'''COM'''标..."
- 08:16, 16 October 2015 diff hist +419 N Translations:Using the ADE Server/31/zh-cn Created page with "在Visual Studio 2005中,选择'''Project''' (项目)菜单上选择 '''Add reference or References'''(添加引用),在出现的对话框中,选择'''COM'''标..." current
- 08:16, 16 October 2015 diff hist -42 Using the ADE Server/zh-cn Created page with "===在Visual Studio 2005中的.NET项目中=== ==使用ADE COM 接口== 在Visual Studio 2005中的Visual Basic、C#、J#、ASP.NET、或者 C++/CLR项目中,你可以通过..."
- 08:16, 16 October 2015 diff hist +336 N Translations:Using the ADE Server/30/zh-cn Created page with "===在Visual Studio 2005中的.NET项目中=== ==使用ADE COM 接口== 在Visual Studio 2005中的Visual Basic、C#、J#、ASP.NET、或者 C++/CLR项目中,你可以通过..." current
- 08:16, 16 October 2015 diff hist -44 Using the ADE Server/zh-cn Created page with "在使用Microsoft的ASP(动态服务器网页)时,我们推荐使用本地服务器。通过使用本地服务器(<tt>ADE.exe</tt>),你可以确保每一个web应..."
- 08:16, 16 October 2015 diff hist +482 N Translations:Using the ADE Server/29/zh-cn Created page with "在使用Microsoft的ASP(动态服务器网页)时,我们推荐使用本地服务器。通过使用本地服务器(<tt>ADE.exe</tt>),你可以确保每一个web应..." current
- 08:16, 16 October 2015 diff hist -18 Using the ADE Server/zh-cn Created page with "==ASP web 应用程序示例== <tt>asp_exam</tt>中的示例演示了如何从一个动态服务器页面web应用程序中使用ADE。该应用程序生成了一个使用HTML..."
- 08:16, 16 October 2015 diff hist +320 N Translations:Using the ADE Server/28/zh-cn Created page with "==ASP web 应用程序示例== <tt>asp_exam</tt>中的示例演示了如何从一个动态服务器页面web应用程序中使用ADE。该应用程序生成了一个使用HTML..." current
- 08:15, 16 October 2015 diff hist -37 Using the ADE Server/zh-cn Created page with "== Excel中Visual Basic样本应用程序== 另一个名称为<tt>excel_exam</tt>的示例应用程序也包含到ADE程序包中。在<tt>excel_exam</tt>目录下的 <tt>Anal..."
- 08:15, 16 October 2015 diff hist +389 N Translations:Using the ADE Server/27/zh-cn Created page with "== Excel中Visual Basic样本应用程序== 另一个名称为<tt>excel_exam</tt>的示例应用程序也包含到ADE程序包中。在<tt>excel_exam</tt>目录下的 <tt>Anal..." current
- 08:15, 16 October 2015 diff hist -22 Using the ADE Server/zh-cn Created page with "打开'''Photo'''属性将明显减慢与ADE之间的通讯。"
- 08:15, 16 October 2015 diff hist +62 N Translations:Using the ADE Server/26/zh-cn Created page with "打开'''Photo'''属性将明显减慢与ADE之间的通讯。" current
- 08:15, 16 October 2015 diff hist +38 N Translations:Using the ADE Server/25/zh-cn Created page with ":ADE.Photo=True :ADE.Photo=False </tt>" current
- 08:15, 16 October 2015 diff hist -38 Using the ADE Server/zh-cn Created page with "Analytica窗口上的'''Photo'''复选框是CAEngine类型'''Photo''' 属性的映射。默认情况下'''Photo'''的属性是 False(假),因此用户和ADE之间的..."
- 08:15, 16 October 2015 diff hist +393 N Translations:Using the ADE Server/24/zh-cn Created page with "Analytica窗口上的'''Photo'''复选框是CAEngine类型'''Photo''' 属性的映射。默认情况下'''Photo'''的属性是 False(假),因此用户和ADE之间的..." current
- 08:15, 16 October 2015 diff hist -9 Using the ADE Server/zh-cn Created page with "当一种方法返回一个对象时,例如,就'''CAEngine::GetObjectByName'''来说,返回对象被添加到左手边的关系树上成为创建它的对象的子对象..."