tags:

views:

55

answers:

2

How to automaticaly print a form when a new item is posted to a list in SharePoint?

I created a list in SP, with customized Entry and Edit forms and a workflow that connects them. Everytime a new item is posted the Entry form needs to be used, but when I click submit I need the workflow not only to post the item to the list, but also generate a 'Print form' that can either saved or printed.

Thanks,

A: 

To give a really specific answer, you'll need to explain a bit more - where should the printing occur? On the machine from which the list was modified, or some central printing location?

More generally, Sharepoint can trigger a variety of events. Ishai Sagi's blog has a user-triggered solution that may give you some ideas. You could use a Javascript event as explained here. You could even send a specially-formatted email to a computer with Outlook running, with a rule that triggers a print.

Argalatyr
I would like to consider both options. But will choose which ever is easier to apply (I am new to SharePoint, but learn quickly).
Marius
+2  A: 

Considering the event, adding an item triggers an SPItemEventReceiver.ItemAdded. You would call your printing code from within this event, and deploy the functionality through a Feature.

Paul-Jan