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!

Recent content by secondreckoned

  1. secondreckoned

    users cannot access Sharepoint site

    Hi, I have recently installed MOSS 2007 on a server operating windows 2003 and mssql 2005. I can access the Central Admin website and the admin SSP I set up as well as an operations website from the server logged in either as the administrator or under my own NT ID. The problem I am having is...
  2. secondreckoned

    Lag Function Multivalue / Range Index Argument

    Hi, is it possible to use the lag function or is there a different function that would allow me to see a cross section of data from a 'selected month' in a dimension and to 'lag back' for instance 2,3,4,5 months as a range and show a month over month comparision of data rather than just going...
  3. secondreckoned

    [b]remote install of .exe[/b]

    Hi, I was wondering if it's possible to write batch file that will allow me to install software with a .exe file remotely. I have a list of all desktops device names on the network that need the upgrade added and instead of visiting each machine I'd like to do it remotely from my desktop. I'm...
  4. secondreckoned

    Getting NT ID with ASP

    Hi, thank you for your response. When I use the Request.ServerVariables("LOGON_USER") function I am not receiving any data back. Is there an option in IIS that has to be activated for this to work?
  5. secondreckoned

    Getting NT ID with ASP

    Hi, is there a way to aquire the NT Logon ID of someone visiting a website on an intranet? I'd appreciate any feedback on if possible, or how to aquire it. Thank you in advance. MF
  6. secondreckoned

    <b>Calendar Weekly View</b>

    Thanks for your help, it helped lead me to my solution... Function ShowWeek(dDate) Dim k 'number value for day of the week. Dim i 'counter. Dim dTemp 'temporary holder for calendar disply data. k = Weekday(dDate, 1) i = 1 Do Until i = 8 If i = k Then dTemp = dTemp & "<tr><td...
  7. secondreckoned

    &lt;b&gt;Calendar Weekly View&lt;/b&gt;

    <b>Hi I believe I am a little out of my league here, and need a bit of help with logic. I can produce a calendar with a monthly view; however, I want to build a caledar that shows a year in 7 day periods ie; 2007 Sunday Monday Tuesday Wednesday Jan 07 Jan 08 Jan 09...
  8. secondreckoned

    INSTR function problem

    Great that worked, thanks so much!
  9. secondreckoned

    INSTR function problem

    Thanks George, I tried both ways but still getting the same error.
  10. secondreckoned

    INSTR function problem

    Hi, I am writing a login script with a permission level authenication for a web page, there are 5 sections that require logins on the page. I am trying assign a letter to each section ie, A - Admin B - Process C - HR D - Management E - Escalation Depending on the type user ID users...
  11. secondreckoned

    Show list in groups of 10

    Hi, I have multiple drop down list that allows a user to select categories that will display articles based on their selections. It's possible for the results to list dozens of articles. I am having some logic blockage in getting started with this. I can get the listing to show the article name...
  12. secondreckoned

    Multiple Select Box

    Thanks to both of you...I got what I wanted with tsuji's change.
  13. secondreckoned

    Multiple Select Box

    Hi, I have a Multiple Select Box that displays a list of 'keywords'. I would like the user to be able to select one or more keywords from the list. Once the user hits the submit button I want to return a list of documents associated with the keywords. ie, 'from multiple select list in...
  14. secondreckoned

    checkbox maintain state

    Hi Tarwn, I added this code and it worked, thanks for your help: <td> <% denied = npaRS("Denied") %> <input type="checkbox" name="Denied" value="ON" <% if denied = "ON" then response.write("checked") %>> </td>
  15. secondreckoned

    checkbox maintain state

    Hi, I have a looped form that I am using to update a db, the form displays each record on a line and at the end of each line is a submit button to 'approve' the record. I would like to add a checkbox to each line that if checked will identify that record as denied write in the text field...

Part and Inventory Search

Back
Top