Hi Team,
Greeting for the day,
Requesting to kindly help me to know how to upload and edit the word template in PowerBuilder ( OLE ).
I have multiple templates and want to upload on basis of condition.
Need to edit the template and print the same after the process.
Thanks in advance.
I have to print data from PowerBuilder using word template format. Currently i have designed the data window similar to word template. but the template is getting changes every month so i need to modify my data window regularly. For avoiding the periodic data window edit, is there any method for importing the template format to data window or any dynamic data window design edit feature.
Try to find any examples on the Q&A or maybe on https://community.appeon.com/index.php/codexchange/codexchange
regards
FWIW: When I have had this type of challenge in the past, I did *not* store the DW Object source in the PB App itself. Instead, I exported it & stored the DWO source in the Database within a Blob Column common table. Then at runtime, the PB App uses the SelectBlob SQL command to get the DWO Source and followed with a CREATE() command to instantiate the DWO dynamically for runtime use. Thus, when a new DWO is required, I only needed to upload the new DWO Source to the common DB table's Blob Column and then all PB App users now had the new form instantaneously with no App deployment required . Food for thought.
Regards ... Chris