Hi Dave,
It seems that currently the Print option is not working well - at least not as far as my testing went on a DNN 7 site.
So I found this post http://www.40fingers.net/WeblogsNews/...
It shows a way that you can build your own "Print" option inside a container file. I'm going to post that code here just in case that blog goes out of service at some point in the future:
<%
Dim sPrint As String = "<a href='http://{0}/tabid/{1}/mid/{2}/dnnprintmode/true/Default.aspx?SkinSrc=[G]Skins%2f_default%2fNo+Skin&ContainerSrc=[G]Containers%2f_default%2fNo+Container' target='_blank'><img src='/images/action_print.gif' alt ='Print' /></a>"
If Me.ModuleControl.ModuleContext.Configuration.DisplayPrint = True Then
Response.Write(String.Format(sPrint, PortalSettings.PortalAlias.HTTPAlias, PortalSettings.ActiveTab.TabID, Me.ModuleControl.ModuleContext.ModuleId))
Else
Response.Write(String.Empty)
End If
%>
It worked well for me as you can see at:
http://www.dnntutorial.com/Reports (this is a temporary page for testing only)
Cheers,
Aderson