以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]关于Seagull.BarTender.Print.dll调用的疑问 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=169425) |
-- 作者:奶粉大王 -- 发布时间:2021/6/16 10:40:00 -- [求助]关于Seagull.BarTender.Print.dll调用的疑问 1.修改Foxtable.exe.config 配置文件 在<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> 下添加节点 <supportedRuntime version="v2.0.50727"/> 2.复制文件 Seagull.BarTender.Print.dll 到FOXTABLE程序安装根目录下 3.添加外部引用文件 Seagull.BarTender.Print.dll添加命名空间 Seagull.BarTender.Print 设置别名 BarTender 4.后执行代码: Dim btapp As BarTender.Application Dim btformat As BarTender.Format Dim btdb As BarTender.Database btapp = CreateObject("bartender.application") btapp.Visible = False btformat = btapp.Formats.Open("I:\\1.btw") btdb = btformat.Databases(1) btformat.PrintOut() 报错--------------------------- 错误 --------------------------- 编译错误:未定义类型“BarTender.Application”。 错误代码:Dim btapp As BarTender.Application --------------------------- 确定 --------------------------- 看看是什么问题
|
-- 作者:有点蓝 -- 发布时间:2021/6/16 11:05:00 -- 如果是.net程序直接new就行了:Dim btapp As new BarTender.Application 没有必要使用CreateObject,CreateObject要使用原始的命名空间,不能使用别名:CreateObject("Seagull.BarTender.Print.application")
|
-- 作者:奶粉大王 -- 发布时间:2021/6/16 11:10:00 -- 谢谢甜版 在FOXTABLE中运行用什么代码? |
-- 作者:有点蓝 -- 发布时间:2021/6/16 11:12:00 -- 运行什么东西? |
-- 作者:奶粉大王 -- 发布时间:2021/6/16 11:14:00 -- 引用指定btw标签文件打印 |
-- 作者:有点蓝 -- 发布时间:2021/6/16 11:19:00 -- Dim btapp As new BarTender.Application Dim btformat As BarTender.Format Dim btdb As BarTender.Database btapp.Visible = False btformat = btapp.Formats.Open("I:\\1.btw") btdb = btformat.Databases(1) btformat.PrintOut() |
-- 作者:奶粉大王 -- 发布时间:2021/6/16 11:32:00 -- 还是报错: --------------------------- 错误 --------------------------- 编译错误:未定义类型“BarTender.Application”。 错误代码:Dim btapp As new BarTender.Application --------------------------- 确定 --------------------------- |
-- 作者:有点蓝 -- 发布时间:2021/6/16 11:44:00 -- 这样呢:Dim btapp As new Seagull.BarTender.Print.Application 如果还出错,说明不存在Seagull.BarTender.Print.Application这类型
|
-- 作者:奶粉大王 -- 发布时间:2021/6/16 11:45:00 -- --------------------------- 错误 --------------------------- 编译错误:未定义类型“Seagull.BarTender.Print.Application”。 错误代码:Dim btapp As new Seagull.BarTender.Print.Application --------------------------- 确定 --------------------------- |
-- 作者:有点蓝 -- 发布时间:2021/6/16 11:49:00 -- 不存在Seagull.BarTender.Print.Application这类型,去看看这个组件的开发文档吧 |