当前位置: 代码迷 >> VFP >> VFP怎么调用 tlb文件
  详细解决方案

VFP怎么调用 tlb文件

热度:6786   发布时间:2013-02-26 00:00:00.0
VFP如何调用 tlb文件?
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 System.Runtime.InteropServices;
using System.IO;
using System.IO.Ports;
using LabelManager2;


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

        private void button1_Click(object sender, EventArgs e)
        {
            ApplicationClass lbl = new ApplicationClass();
            lbl.Documents.Open("D:\\Document2.lab",false);
            Document doc = lbl.ActiveDocument;
            doc.Variables.FormVariables.Item("Var").Value = "kyle";

            doc.PrintDocument(1);
            lbl.Quit();
            
        }

    }
}
====================以上是C#代码,在vfp中如何调用 .tlb文件?
class

------解决方案--------------------------------------------------------
tlb文件是一个说明文件,通过TLB文件,用户可以得知你的DLL中的COM接口以及常量等信息。其可以单独发行,也可以作为组建DLL中的一个资源随组件一起发行。你可以在VS的Object Browser中看到该文件中包括哪些常数、接口、类,而每个类又包括什么方法和属性。微软提供的各种SDK中通常包括一个或数个TLB文件以方便编程。

所以你应该调用对应的 DLL 文件。
  相关解决方案