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 Mike Lewis 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. Pereayel

    Upload keywords and categories from an xml file to sql server

    Thanks for your reply kristof. Does the bulk import work with an xml from an http feed?
  2. Pereayel

    Upload keywords and categories from an xml file to sql server

    Hi all, I have an xml file that contains keywords and categories for a given product. I am loading the keywords and categories to a sql table using the the updaate below. This only loads the first keyword and first category. My goal is to have it like this id keyword category 1...
  3. Pereayel

    OnClick change image

    Thanks for the input feherke. I appreciate it.
  4. Pereayel

    OnClick change image

    Yes I'm trying to combine the clcik and rollover behaviors. I tried the code that you posted, but it gave me the same results that I was having before.
  5. Pereayel

    OnClick change image

    Perharps it's the way I'm calling them. Below is a portion of my code. <img id="firstImage" src="/home/img/Image1_over.gif" width="95" height="19" title="New" onclick="changeImage(this);" onmouseover="handleOver(this);" onmouseout="handleOut(this);" /> <img src="/home/img/Image2.gif"...
  6. Pereayel

    OnClick change image

    I'm trying to add a mouseover and mouseout behavior to the script above and I added the 2 functions below to implement that. The issues are when I place the mouse over the selected tab I get an image in the form Image1_over_over.gif. Any help will gratly be appreciated. function...
  7. Pereayel

    OnClick change image

    Thanks again!
  8. Pereayel

    OnClick change image

    In the code above, how can I set up the first image to be selected initialy as the page is loaded. In other word how can I set up image1.gif to be image1_over.gif the first time someone opens the page.
  9. Pereayel

    OnClick change image

    Thanks for the help! I should have noticed the typo.
  10. Pereayel

    OnClick change image

    kaht, thanks for your reply. There seem to be an error in the Javascript thst I'm unable to determine> I copied the the code you gave and added <a href="#">...</a> around the img tag. When I click on the image nothing happens and I get an "Error on page" at the bottom of the page.
  11. Pereayel

    OnClick change image

    I have three menu images Image1.gif, Image2.gif, and Image 3.gif. I want to click on Image1.gif and have it change to Image1_over.gif which is of a different color. When I click on the other image, it should also change to the "_over.gif" for the particular image but the first one returns to...
  12. Pereayel

    Format output of a query to a specific layout

    I am now getting the following error even when I include the field in the GROUP BY clause. Server: Msg 8118, Level 16, State 1, Procedure t_getDegreeFieldBySchool1, Line 7 Column 'School_Field_Degree.schoolID' is invalid in the select list because it is not contained in an aggregate function...
  13. Pereayel

    Format output of a query to a specific layout

    There are 4 degrees available for each school and will remain as is. They are Associates, Bachelors, Masters, and Doctoral
  14. Pereayel

    Format output of a query to a specific layout

    Bachelors Masters in two separated columns
  15. Pereayel

    Format output of a query to a specific layout

    Hi all, I'm new to this forumn and need your help. Below is the query that I am running and under it is the resulting table. SELECT DISTINCT school.schoolID, field.[name], degree. [name] AS degree, degree.degreeID, field.fieldID FROM school_field INNER JOIN...

Part and Inventory Search

Back
Top