Hi When printing from a form my report has a comments field on it with three fields within it in total. They are lined up on top of each other. ie comments field --------- | field 1 | | field 2 | | field 3 | |______| When I push the button on the form the code takes data out of table 1 and puts it in table 2 then a report is printed out from the data in table 2. My problem is that when printed out of the form with this code
siNCopies = 0 stPrompt = "Print how many copies?" siNCopies.view(stPrompt) if siNCopies > 0 then repInfo.nCopies = siNcopies repInfo.makeCopies = true repInfo.panelOptions = printClipToWidth repInfo.name = "ocd.rsl" stockRep.print(repInfo)
endIf
stockRep.close()
stockRep.close() endmethod
(That all the code from the button)
What happens is that in the comments field the three fields over lay each other if they are bigger than the comments field (all fields are set to word wrap), but if the report is opened normally then printed it prints how it should. Can anyone give me an answer to this problem?
Once email is verified, we will review and approve the account.
Web Presence Hidden.
Once above is taken care of, full Profile content will display including back links, about me, my message, custom Profile html,
social networking links, message board signature, company profile, etc.
I know this is an old post, but I wanted to reply in case someone searches.
With reports, their are Run Time properties. I suspect if you work with those properties of these objects you'll be able to get this to work. I suspect either the Fit Height property needs to be checked or more likely the Pin Vertical needs to be unchecked.
Also, you might want to make sure the Design properties Pin properties are not checked for these objects.