This question may just be a Notes client issue… Is there any way that i can print out a single row of a tabbed table in notes? presently it prints each tab, one after the other, up to the number of pages that i specified. any ideas on how to just get one/page? (i dont mind having to write some code to do this!)
– david
Subject: Try a computed table
which displays a row based on a field value. you can have a radio button field or something to change ‘tab’ and it should work when printing
Subject: print tabbed table
It’s a pain in the neck, but you could have a completely separate form. Take the fields from your first tab and stick them at the top of the form. Insert a hard page break. Add the fields from the second tab, another page break, and so on. In the PostOpen of the print form, call uidoc.print, then uidoc.close. In my tests, this happens so quickly that the user isn’t even aware that another form was opened.
Subject: re: print tabbed table
When I say “print” I mean like “on paper”, not print to the screen, tabs already do that!
– david
Subject: RE: re: print tabbed table
Did you try using a computed table? Tabbed tables print as you described; there is no way to avoid the behaviour without either hiding all of the other tabs or changing the table type.