发布网友 发布时间:2022-04-23 00:55
共1个回答
热心网友 时间:2023-10-04 18:36
你好,你可以用python 去调用fastreport.dll。下面是一个例子。
import clr
import threading
def fastRepot_run():
report = Report()
report.Load("test.frx")
report.Show();
clr.FindAssembly("FastReport.dll")
from FastReport import *
threading.Thread(target=fastRepot_run).start()追问请问怎样传入参数呢? 我想把数据传入到模板中去