Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kennedyeoin

    Modifying Length Of Time New Symbol Appears

    Hi, Does anybody know how you can modify the length of time in Sharepoint that the new icon remains beside documents and items that are uploaded and created. Thanks
  2. kennedyeoin

    Customise MYSIte Template

    Hi, I have serveral users of Sharepoint 2007 who each have their own mysite. Currently this is the default mysite provided with sharepoint. I am looking to customise the mysite template to add addittional lists etc. Does anybody know how I can either 1. Customise the mysite template or 2...
  3. kennedyeoin

    Blog Site Approval Status

    Hi, I have created a main blog site for storing the blogs of various users. I have wrote c# code to copy blog entries in an individuals site to the main blog site. This works perfect except for one thing. When the blogs are copied to the Main blog site they are not automatically posted...
  4. kennedyeoin

    Sharepoint system.io.packaging

    Hi, I tried escaping the backslashes but still no use. Maybe I am going about this the wrong way, what I am trying to achieve is creating a new document in a document library with the template of that library. I have tried numerous things, I was quite close with simply using SPFile templ =...
  5. kennedyeoin

    Sharepoint system.io.packaging

    Hi Phil. I tried this and get the error The given path's format is not supported.
  6. kennedyeoin

    Sharepoint system.io.packaging

    Hi Phil. Can you please explain what you mean by the web folder path? What would this path look like? thanks
  7. kennedyeoin

    Sharepoint system.io.packaging

    I am tring to use packaging to copy a word document located on a sharepoint server. The code I am using is String packagePath="http://servername/sie/folder/file Package docPackage = Package.Open(packagePath, FileMode.Create, FileAccess.ReadWrite); I am recieving the error URI formats are...
  8. kennedyeoin

    Workflow- Getting Information about where the workflow was called from

    Hi, I have a workflow in Sharepoint which is invoked when the user adds a new item to a sharepoint list. I was wondering if there is a way that I can get information about where the workflow was called from. The information I am looking for is primarily Site URL List Name If I could also...
  9. kennedyeoin

    c# code to add document to document library

    Let me be a bit more specific with my problem. I have written code for creating a new contract in a windows application to open a word document and then save it as a new name. This workd perfect. However I tried to put my code into a workflow and when I try to run the code it breaks trying to...
  10. kennedyeoin

    c# code to add document to document library

    Hi again Phil, You said that you must have the Web Client service activated. How do you do this? Thanks again
  11. kennedyeoin

    c# code to add document to document library

    In case anybody else has the same problem. The save As like Phil said is perfect for adding a new document to a document library. If you want this document to have a certain temoplate then firstly use the open method to open the template then use the save as to save it. Thanks very much for...
  12. kennedyeoin

    c# code to add document to document library

    Hi Phil, Using save as works perfect thanks, one last question, I have a document template set up for this library. Is there a way that I can have this newly created document use the document template that I have set for my Library?
  13. kennedyeoin

    c# code to add document to document library

    Hi Addendum, Thanks very much, Could you please give me an example of code that would implement this. I am unable to see how you point to where the document should be saved with the SaveAs action. Thanks again
  14. kennedyeoin

    Adding actions to the user interface.

    Hi I am trying to add a user action to a particular list in my sharepoint site. I am using sharepoint 2007. I used the feature.xml file to add an action to the user interface fine <CustomAction Id="Contract Generation" RegistrationType="List" RegistrationId="101" GroupId="NewMenu"...
  15. kennedyeoin

    c# code to add document to document library

    Hi, I am trying to write c# code to add a new document to a document library. My current code is SPDocumentLibrary contracts = (SPDocumentLibrary)mySite.Lists["Contracts"]; SPList contracts = mySite.Lists["Contracts"]; SPListItem newContract = contracts.Items.Add(); newContract.Update()...

Part and Inventory Search

Back
Top