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 wOOdy-Soft 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: *

  • Users: notrut
  • Content: Threads
  • Order by date
  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 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...
  3. 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?
  4. 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'...
  5. 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...
  6. 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.
  7. notrut

    Windows Authentication - aspx -> .dll -> 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...
  8. notrut

    POST - only getting 1st word of submitted field

    Hi, I'm new to PHP. Anyways, I am submitting a form, however, I am only getting the 1st word of a field. For example I have an input box, and when I type in a first and last name into that box, I only get the first name. Looks like the form is cutting off everything after the space?? Is...
  9. notrut

    IFrame - Make slide bar of scrollbar constant height

    Hi, I was wondering if you can control the height of the slide bar of the scrollbar in an IFrame so its a constant height (i.e. 20px)?? For eample, let's say you have an iframe with 1000 lines in it and an iframe with only 20 lines, the slidebar in the scrollbar would be 20px in height for...
  10. notrut

    HttpWebResponse vs WebResponse

    Hi, Is there any difference between System.Net.HttpWebResponse and WebResponse???? Also, for a System.Net.HttpWebRequest (or just WebRequest), do you need the response??? I need to make a request to an image on a different server, however I don't need the response back. By requesting this...
  11. notrut

    JavaScript Equivalent in .NET

    Hi, I'm trying to find the equivanlent of the following javascript in .NET: document.write ("ip= " + window.location.hostname + "<br>"); document.write ("uri= " + window.location.pathname + "<br>"); I've tried the following in .NET but they don't quite give me the same results: Dim ip As...
  12. notrut

    Error 70 - Permission denied - Microsoft VBScript runtime error

    Hi, I'm getting this error and its been really stumping me: 70 - Permission denied - Microsoft VBScript runtime error Here's the line of code where the error is occuring in my ASP page: Set rsYears = objYrCtrl.GetYrCtrlRecordsSOAPLocal(strUserID,strPassword) Where rsYears is a recordset and...
  13. notrut

    Dynamic TextBox using Repeater. How do I get the Text??

    Hi, I am creating some Textboxes dynamically with a Repeater control with some info from a database. I am able to generate the textboxes, however, I am not able to get the values from those boxes when I hit a submit button. (i.e. I want to update the database with the values in the textboxes)...
  14. notrut

    Classic ASP pages don't work

    Hi, I have a windows 2003 server with the .NET framework installed, however, I am unable to run my old classic ASP pages. I get a Page Not Found Error. Is there any reason for this?? Regular HTML pages work as well as .aspx pages but not the old .asp files. Any helps would be greatly...
  15. notrut

    Convert Text in a Textbox to Upper Case using HTML

    Hi, Quick question for you. Is there an HTML tag that will convert the text typed in a textbox automatically to upper case as the person is typing?? I know I can convert the text to uppercase using ASP after a submit, but can you anly allow a textbox to have uppercase? Any help would be...
  16. notrut

    Session ID

    How would you get the sessionID using JSP? I have the following code written using ASP and I want to convert it to JSP. 'Establishes the Session ID Function GetThisSessionID() On Error Resume Next Dim strValue strValue = session.SessionID If Err.Number <> 0...
  17. notrut

    method '~' of object '~' failed

    Hi, I just did a new install of VB 6.0 and when I open VB 6.0 for the first time, I get the following error: method '~' of object '~' failed The title of the error message box is 'Data View' It's on a Windows Server 2000 machine. Does anyone know how this error can be fixed?? Any help...
  18. notrut

    C#'s version of VB6's instr()

    Hi, I'm new to C# and I have a couple of questions about the Streamreader. I would like to read info from a text file and store some, not all of the information into variables. For example: In a file, there is a line that has 'customername=Joe Blow'. I want to find this line and pull out the...
  19. notrut

    Email From AD

    Hi, I know almost nothing about AD, but I need to retrieve an users email address from it. I would like to use the following vbs script: on error resume next Set objuser = GetObject("WinNT://TEST/someonesID,email") strEmail = objuser.EmailAddress wscript.echo "someonesID Email Address is " &...
  20. notrut

    Popup Blockers - How do they work???

    Hi, I was just wondering how Popup Blockers work such as the Google Toolbar and the Maxthon Adhunder??? Do they filter by the name of the window that opens, the name of images for words such as pop, ad etc? Any info would be appreciated. Thanks in advance.

Part and Inventory Search

Back
Top