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 Chriss Miller 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: lahddah
  • Content: Threads
  • Order by date
  1. lahddah

    Sharepoint 2013 PS to populate fields in list based on other items in list

    Does anyone know if I can run a PowerShell script to (maybe) create a 'temporary' SharePoint list, then use that list to create a new list? I've got script working to complete erase and regenerate a user list pulling from Active Directory. That part is fine. But I want to be able to populate the...
  2. lahddah

    Header and Details showing horizontally

    I have a report that will have a dynamic list of security group names/numbers across the top (as headers for columns) then have a list of users who are in those groups. For the users, they will be in rows and if they are in the header group, then the group number will appear in the 'cell' below...
  3. lahddah

    Loop / Trim left comma delimited fields

    I am trying to loop through a comma delmited field (peru, ama, ecu,) and perform a function for each of the words between the commas. The loop continues while the field LEN > 0. Before looping after the function, I want to remove everything left of the first comma, including the comma so that...
  4. lahddah

    Multiple SlideShow on page

    There was another thread like this, but slightly different and I didn't find anything that would answer my question.. Can someone tell me how to modify this code to show four slide shows on one page? I've tried copying it four times and changing the chgSlide to chgSlide2, 3, and 4, but when I...
  5. lahddah

    Opera image spacing issue

    Hi. I have tried all I can think of to fix this. It is working fine in the 'normal' browsers, but in Opera, and perhaps, Safari, the browser is adding a space between the images on the left hand side. Any suggestions? http://innovationsaz.com/new2004/round1/aboutus.html Thanks! ~ lahddah
  6. lahddah

    Listing tours within month range.

    Hi. I've got a database of tours, with a field called 'Season'. The field is populated with a range of months that the tour is available. They are listed as such: tourname = Tour1 Season = March - August tourname = Tour2 Season = December - April I've also got a month search drop down...
  7. lahddah

    For Loop w/ Variables

    Hi, can someone tell my why the following code populates the 'EmailRecipient' field with only the content of 'i'? ------------- for i=1 to 4 EmailRecipient = request("EmailRecipient") EmailRecipient = EmailRecipient & i ' required i = i + 1 ' ' ' next -------------- This is a portion of...
  8. lahddah

    Rotating a list of items

    Hi. I have a list of clients that I want to display on and HTML page. However, on refresh, I would like that list to rotate so that the client that is on the top isn't always on the top. Perhaps have them shuffle, or just have the top go to the bottom and everything else moves up. The list...
  9. lahddah

    Parsing javascript string

    Hi. Can someone show me how to correctly parse this form field name so that '.19' ends up being calculated as weight for shipping purposes? The field is this: Qty:<INPUT TYPE="TEXT" NAME="PROD-WAovalCap_.19-16.95" SIZE="3" MAXLENGTH="3" ONCHANGE="CalculateTotal(this.form)" VALUE=""> The...
  10. lahddah

    Hide/Show Drop down list when another drop down list is selected.

    Hi. I found this code and it seems to work...almost. I have a page that has two different drop down list trip selections and, based on the selection, another drop down list will come up with a list of dates for the selected trip. There are (at least) two problems - 1. When I select something...
  11. lahddah

    Hide/Show several tables based upon radio button selection.

    Hi, can somebody tell me how to make this work? I would like tables 1-3 to show up depending on which radio button is checked. (if 1 is checked, then vehicle1 table should be the only one showing...if 2 is checked then vehicle1 and vehicle2 tables should show....if 3 is checked, then all three...
  12. lahddah

    Passing form values with images

    Hi. I know there are quite a few threads here that deal with this subject, and I've tried everything I could find here, but have had no luck. I have a form that has a db backend. When the user enters a valid user/pwd combo they are allowed to view only certain items based upon their settings...
  13. lahddah

    Screen sizes on desktop wallpaper

    Hi. I used to have a bitmap that I used as my desktop. On it were the screen sizes for 15, 17, and 19 inch screens, (I believe). However, I cannot find it now. Does anyone know where I can find a good, accurate image that I can use as my desktop for developing and testing for different...
  14. lahddah

    ReCalculate form onChange

    Hi. I have this form and it seems to work just fine, until it needs to recalculate. I would like it to recalculate all fields everytime the Name of the River changes, Number of Rafters changes, or Type of Trip changes. Would someone here please check it out, play with the form, and let me...
  15. lahddah

    Passing ASP variable to PHP program

    Hello. I'm going to post this question in the ASP forum, as well, but thought I'd include it here. I am working with a PHP postcard program that needs to have the postcard pages created dynamically (users log in and get postcards that are specific to them). I've made an Access database, and a...
  16. lahddah

    Passing ASP variable to PHP program.

    Hello. I'm going to post this question in the PHP forum, as well, but thought I'd include it here. I am working with a PHP postcard program that needs to have the postcard pages created dynamically (users log in and get postcards that are specific to them). I've made an Access database, and a...
  17. lahddah

    Extracting number out of value

    I have a drop down box with values similar to this: "Railroad Bridge - Johnson Village - $45" I am needing to perform calculations based on the price of this trip, therefore I would like to extract only the '45' portion of this string and use it in my calculations. All of the values for the...
  18. lahddah

    Site not showing in SE after months

    Hello. I've tried a few times to submit this site to the search engines and still cannot see it in most of them - in others (yahoo) I can see it only if I enter very specific wording that 'normal' users wouldn't know to enter. I was wondering if some of you would be able to take a look at it...
  19. lahddah

    Inserting ASP into HTML pages

    Hi. I have an existing HTML page that I would like to keep as HTML. However, I would like to add asp code to a portion of it. This is regarding a reservation process. The reservation portion is in ASP, but I want to be able to link to the HTML page and have an image show only if any...
  20. lahddah

    JS not reading field value as blank

    Hi, I'm trying to verify a set of fields where, if the first name is not blank, then the address must be filled out. This is the code I have now - the first 'if' statement works fine: ----------------------------------------- function ValidForm() { if (document.request.r_name.value ==...

Part and Inventory Search

Back
Top