Código Python:
Ver originalfrom reportman import ReportMan
params = (("DRINKTYPE_BEG", 1), ("DRINKTYPE_END",2), ("LANG",5))
report = ReportMan(r"yourreporfile.rep")
for param in params:
report.set_param(param[0], param [1])
report.preview("a title to be shown in the windows title bar")
ese es el ejemplo que trato de correr y me sale el error
WindowsError: [Error 126] No se puede encontrar el módulo especificado
File "C:\Documents and Settings\usuario\Mis documentos\Python\pruebapdf.py", line 1, in <module>
from reportman import ReportMa