明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1684|回复: 2

求助

[复制链接]
发表于 2003-2-12 11:36:00 | 显示全部楼层 |阅读模式
我寫了如下程式,在Acad2000,2002英文版可用,為什麼在另一PC(沒有安裝VC及OBJARX)上的ACAD2002中文版不可用,arxload 沒問題,運行時出錯.提示為:
  *.arx ARX命令發生異常
  未處理的異常E06D7363(e06d7363h),地址:77E69B01H.
  ADS 請求錯誤.

程式如下請幫我看一下:
#include "StdAfx.h"
#include "StdArx.h"

// This is command 'FOXREAD'
int FOXREAD()
{
        resbuf *pArg =acedGetArgs () ;
        char *refname = "NetSend.mdb";
        char fullpath[100];
        if (acedFindFile(refname, fullpath) != RTNORM) return(RTNORM);
        CDaoDatabase db;
        db.Open(fullpath);
        CDaoTableDef td(&db);
        td.Open(pArg->resval.rstring);
        CDaoRecordset rs;
        rs.Open(&td,dbOpenTable,0);
        char arrstr[150][22][20];
        struct resbuf *head=0,*eb1=0,*eb2=0;
        int j=0;
        while(!rs.IsEOF())
        {
                eb1=new resbuf;
                eb1->rbnext=NULL;
                eb1->restype = RTLB;
                if(eb2!=NULL)
                {
                        eb2->rbnext=eb1;
                        eb2=eb1;
                }
                for(int i=0;i<rs.GetFieldCount();i++)
                {
                        if(head==NULL)
                        {
                                head=eb2=eb1;
                                eb2->rbnext=eb1;
                                eb2=eb1;
                        }
                        eb1=new resbuf;
                        eb1->rbnext=NULL;
                        strcpy(arrstr[j],V_BSTRT(&(rs.GetFieldValue(i))));
                        eb1->resval.rstring = arrstr[j];
                        eb1->restype = RTSTR;
                        eb2->rbnext=eb1;
                        eb2=eb1;
                }
                eb1=new resbuf;
                eb1->restype = RTLE;
                eb1->rbnext=NULL;
                eb2->rbnext=eb1;       
                eb2=eb1;
                rs.MoveNext();
                j++;
        }
        rs.Close();
        td.Close();
        db.Close();
        eb2->rbnext=NULL;
        acedRetList(head);
        delete(eb1);
        return (RTNORM) ;
}
发表于 2003-2-13 17:56:00 | 显示全部楼层

Because you used : CDaoDatabase ; you must install it firstly.

Because you used : CDaoDatabase ; you must install it firstly.
you can download something from the below web to install:
http://www.microsoft.com/data/download_250rtm.htm
 楼主| 发表于 2003-2-25 18:13:00 | 显示全部楼层

我裝了MDAC2.5提示說已經安裝過了,裝MDAC2.6之後還是不能用 怎麼回事(Arx)

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 11:49 , Processed in 0.154755 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表