Hi, I have a forms Library with some Infopath forms in it. On submitting the form I want to create n # copies of that form in the same Library with different names/ID. I can do this by writing a code in a loop SPListItem newItem = list.Items.Add(); newItem ["Title"] = "Newname"; ...