I'm creating Document Libraries in SharePoint with the Webservice Lists.AddList method through a C#.Net application. (See below)
listsService.AddList(listTitle, listDescription, 101);
I would like them to show up in the Quick Launch menu under the site they're created in rather than just the 'All Site Content' menu.
I've had a look at the Lists.UpdateList() Method, but without much luck.
Does anyone know how to do this through Web Services? (It cannot be done manually as there are far too many lists to change).
I'm using the latest version of SharePoint Server and Web Services.
Thankyou :)