Ver Mensaje Individual
  #7  
Antiguo 24-02-2015
Avatar de aguml
aguml aguml is offline
Miembro
 
Registrado: may 2013
Posts: 885
Reputación: 12
aguml Va por buen camino
Correcto amigo, ese es. El caso es que la instalacion te viene con un archivo de ayuda donde te explica todo sobre el componente AddFlow pero de PrnFlow lo único que explica es esto:

Cita:
The PRNFLOW method
PrnFlow is an ActiveX control that allows printing AddFlow diagrams. It allows multipage printing, print previewing, margins, header and footer. It can be viewed as an extension of AddFlow. It is a free extension. No support is provided but its source code (written in C++/MFC) is available free of charge for the AddFlow 5 registered users. See PrnFlow for more informations.
Y si vamos adonde apunta el link vemos esto:
Cita:
What is PrnFlow?
PrnFlow is an ActiveX control allowing to print AddFlow diagrams. It allows multipage printing, print previewing, margins, header and footer. It can be viewed as an extension of AddFlow. Note that it is necessary to use AddFlow version 5.2 or higher to be able to use PrnFlow 5.0.
No support is provided for PrnFlow. However, the source code of PrnFlow (written in C++/MFC) is available free of charge for the AddFlow 5 registered users.
The following VB6 code is all you need to do to print your diagram with PrnFlow:
PrnFlow1.DocName = sFileTitle
' Prints a dotted box in each page
PrnFlow1.PageBorder = PageBorderDottedBoxDot
' The header contains the file name (placed at the left)
' and the date (placed at the right)

PrnFlow1.Header = sFileTitle & "||" & Format(Date, "dd-mmm-yyyy")
' The footer contains the page number (placed at the center)
PrnFlow1.Footer = "|- Page <PAGE> -|"
PrnFlow1.ForeColor = vbBlue
' Print the AddFlow diagram
PrnFlow1.PrintDoc

To preview an AddFlow diagram, you may use the previous code, just replacing the call to the PrintDoc method by the call to the PreviewDoc method. The diagram will be previewed in the PrnFlow control window. The user can:
  • switch pages by shift-double clicking on the preview window.
  • zoom in and out by double clicking on the preview window.
No tengo los fuentes ya que no tengo licencia porque cuesta 700€ aproximadamente y el unico inconveniente que tiene al no tener licencia es que muestra un mensajito que te dice que la aplicación fue creada con la version sin licencia y si cierras ese mensaje ya funciona con normalidad. El pero mayor de no tener licencia es no tener los fuentes del componente pero tampoco lo veo muy necesario jejeje.
Responder Con Cita