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 strongm 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. notrut

    C# : Add Footer to Last Page of Word Document

    Hi, The code below creates the following equation in all the footers in a Word Document: IF {PAGE} = {PAGENUM} "{AUTHOR}" Which displays the following in the footer: Page one: IF 1 = 2 "Author" Page two: IF 2 = 2 "Author" I would like this equation to be in it's own field so that "Author"...
  2. notrut

    Programmatically Add Footer to Last Page

    Hi, I have revised my code to what is listed below. This creates the following equation in all the footers: IF {PAGE} = {PAGENUM} "{AUTHOR}" Which displays the following: Page one: IF 1 = 2 "Author" Page two: IF 2 = 2 "Author" When I highlight that equation and press Ctrl F9, then the...
  3. notrut

    Programmatically Add Footer to Last Page

    Thanks Paul. This does work using VBA, however, it does not work using C#. Basically the RNG.Characters(6) is not valid. Here' what I'm trying to do, however, it won't nest: Microsoft.Office.Interop.Word.Range Rng =...
  4. notrut

    Programmatically Add Footer to Last Page

    Hi, I would like to add a footer programmatically (C#) to the last page on word documents. I can insert the footer on a last page, by creating a field that looks like the following: { IF { PAGE } = { NUMPAGES } "my Last Page Text goes here" } However, I want to include fields within the...
  5. notrut

    SharePoint to Livelink integrations?

    The SLRAT Tool from ECM Wise requires the Livelink web services to be enabled however, the installation of the product is done on the SharePoint side. Hope that helps!
  6. notrut

    move/migrate files from Sharepoint to livelink

    Just put this on another post but there's a product from ECM Wise named SharePoint to Livelink Records Archival Tool (SLRAT). http://ecmwise.com It moves docs, lists and wiki's from SharePoint to Livelink Content Server. It's a low cost solution and pretty simple to use.
  7. notrut

    SharePoint to Livelink integrations?

    There's a product from ECM Wise named SharePoint to Livelink Records Archival Tool (SLRAT). http://ecmwise.com SLRAT moves documents/lists/discussions from SharePoint to Livelink (or Content Server) and allows you to apply classifications, metadata and perms etc. Pretty sure it does wiki's...
  8. notrut

    Installing/Configuring Directory Services for CS

    I don't remember anything about adding the LESAuthDriver. Here are my notes when I installed the Runtime Core Services 10.2.1: - LDAP Administration port: 4450 (had to change from default) - LDAP Communication port: 399 (had to change from default) - RCS Admin user name: otadmin@otds.admin -...
  9. notrut

    Content Server Footer - Metdata in Office Docs?

    Thanks appnair, Yeah, looks like that module only adds metadata to the document properties. It doesn't automatically create a footer with content server data in the document ... and it's not real time.
  10. notrut

    Installing/Configuring Directory Services for CS

    Yeah, I think I had that issue too. Make sure your Admin Client is the latest version and has the latest patch. OT has patched that as well.
  11. notrut

    Content Server Footer - Metdata in Office Docs?

    Looks like www.customofficeaddins.com has something. Looks like they have an Office Addin that pulls info from content server into a document footer. I'll ping them.
  12. notrut

    Installing/Configuring Directory Services for CS

    Hi Drew, Yeah, I liked the old way of just configuring/running a sync from the Admin pages .... Anyways, You need to add your server from the Admin Client. I think its Start --> OT Admin. Then there should be somewhere you add/configure your server. OT Admin Client: - Server Name: <Your CS10...
  13. notrut

    Content Server Footer - Metdata in Office Docs?

    Hi, Anyone know of a tool that will auto add metadata from content server into the footers of Office documents?
  14. notrut

    Installing/Configuring Directory Services for CS

    I had a lot of issues with this as well but finally got it working after upgrading to the latest patches of the RCS, CS10 updates, and the Admin Client. Yeah, OT's documentation sucks! I had to use a number of docs of the KC and figure it out on my own.
  15. notrut

    Web Service that reads File From Network

    Solved it: - Had to set the app pool to run under the account that has access to the folder in IIS - had to give that account read and list dir to C:\Windows\Temp folder on server - had to add that account to the IIS_WPG on the server - add to make sure the impersonate tag in the web.config was...
  16. notrut

    Web Service that reads File From Network

    Hi, I have created a web service that reads a file from a network folder. The web service works fine when I consume it locally, however when I deploy the web service to a server I get the following error: Server was unable to process request. ---> Could not find file '\\server\D$\test1.pdf'...
  17. notrut

    Response.Redirect (Open new page and redirect current page)

    I figured it out. Just use JavaScript to do both: <script> var originalWindow = window.self; window.open('NewWindow.aspx'); originalWindow.location.href='Default.aspx'; </script>
  18. notrut

    Response.Redirect (Open new page and redirect current page)

    Hi, Quick question: How can you open up a new browser window to one url and, redirect the current page to a different url in one event? I've tried using Javascript to open up the new window and using response.redirect to redirect the current page, but the first one fired always wins...
  19. notrut

    Set Project Tasks to Display in Reminders

    Hi, How do you set up your "Project Tasks" to display in a Reminders Shared Web Part? You can display regular tasks in the reminders web part, but I can't figure out how to display Project Tasks. Any help would be greatly appreciated. Thanks.
  20. notrut

    Windows Authentication - aspx -&gt; .dll -&gt; web service

    Hi, I am receiving this error when I consume a web service from a C# assembly: The request failed with HTTP status 401: Unauthorized. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the...

Part and Inventory Search

Back
Top