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 Wanet Telecoms Ltd 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. sianmace

    Hyperlink Display Text

    I should stop and think for a min before posting i used this Private Sub URL_AfterUpdate() If Len(URL.Text) > 0 Then URL.Value = URL.Text & "#G:\Path\" & URL.Text & ".pdf" End If End Sub The reason it was breaking was i was trying to set the Text value and not the...
  2. sianmace

    Hyperlink Display Text

    I have it, sorry, i can see now. Have you got any suggestions how to deal with this replacement i have to make then in code. Users will Type T12345 I will replace with something like T12345#G:/Path/T12345.pdf but shall i capture this in the after update event, or before update. im getting a...
  3. sianmace

    Hyperlink Display Text

    I have looked at what you suggested, and i have seen how to get the Display Text out once its set, but dont know how to set it without having to right click and edit the hyperlink Please Help
  4. sianmace

    Hyperlink Display Text

    I have a hyperlink column in a table I would like to be able to enter a code in to the field, ex. T12345 and then when the hyperlink is clicked, it navigate to G:/Path/T12345.pdf Now, i dont want to see G:/Path/T12345.pdf in the column. I know that i can change the Display Text of the...
  5. sianmace

    XslTransform The remote server returned an error (401) Unauthorized

    I tried relative paths, but this only comes up and says, it couldnt find the file i wanted in C:/Windows.....Transforms/Amazon.xslt. Its trying to map to the file system. god knows why. Any more ideas, i think i am meant to use some sort of authentication with the transform method. but i dont...
  6. sianmace

    XslTransform The remote server returned an error (401) Unauthorized

    Hi, I have a c# asp.net solution. Im trying to xml from a string, xsl from a file, and transform them and get the output. My website is running under windows intergrated security. This is where im falling down. XslTransform xsl = new XslTransform()...
  7. sianmace

    Move one element down one level

    Right so here is as far as i have got. <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:amazon="http://webservices.amazon.com/AWSECommerceService/2005-01-19"...
  8. sianmace

    Move one element down one level

    Hi, I would like to Move one element down a level, and removing it from its original location, and making another copy further down. Heres what i have XML <ItemSearchResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <OperationRequest...
  9. sianmace

    copying all elements using xsl and renaming specific nodes

    that was great. How do you know what to search for to find the answers on all these xsl questions. Its all so foreign to me. Thank you so much for the help. At last i can get on with my work
  10. sianmace

    copying all elements using xsl and renaming specific nodes

    That was the answer i was looking for. but i have one more question about it that i dont really understand. because i have defined it in the stylesheet as xmlns:amazon="http....." i now get on those elements that i changed <LargeHeight xmlns:amazon="http...." but in the xml its just...
  11. sianmace

    copying all elements using xsl and renaming specific nodes

    Right i tried the first option and it worked a treat, if i took a xmlns attribute out. heres what i have <ItemSearchResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Items...
  12. sianmace

    copying all elements using xsl and renaming specific nodes

    no, i need all of the rest of the document exactly the same. and just those nodes renamed. so what do you collectively think is the best way to go about this
  13. sianmace

    copying all elements using xsl and renaming specific nodes

    I have a document from Amazon wich is massive and has the same names for elements under different branches of the tree. ie <item> <smallimage> <height units=""></height> </smallimage> <largeimage> <height units=""></height> </largeImage> .net cannot deal with this in a dataset as it needs...
  14. sianmace

    Biztalk Mapper Not Conforming To Output Specification

    I have an input xml specification and an output specification. they both are basically the same but i split a couple of fields on the way. and i use the Mapper to do this. my specifications all work well and validate as they should my xml is as follows root GoodsIN somedata...

Part and Inventory Search

Back
Top