yanmeiwei 发表于 2012-2-6 10:34:04

求助关于QC二次开发的问题!

我打算使用QC提供的API做一些开发。但定义连接的时候,系统就报错!
代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using TDAPIOLELib;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
      public Form1()
      {
            InitializeComponent();
      }

      private void Form1_Load(object sender, EventArgs e)
      {

            TDConnection tdconn = new TDConnectionClass();            tdconn.InitConnectionEx("http://IP/qcbin");
            tdconn.Login("xulin","");
            tdconn.Connect("DEFAULT", "模板");
      }
    }
}

运行程序后,标红的部分提示:检索 COM 类工厂中 CLSID 为 {C5CBD7B2-490C-45F5-8C40-B8C3D108E6D7} 的组件时失败,原因是出现以下错误: 800703e6。
环境:win7系统
visual studio 2008
哪位大侠帮我看看啊!

千予 发表于 2012-2-13 17:22:40

关注ing
页: [1]
查看完整版本: 求助关于QC二次开发的问题!