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 gkittelson 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. fostom

    Get XML data

    Hi! I have trouble getting the correct data parsing my xml. This is my code: Dim szUrl, nodelist szUrl = "http://www.finn.no/finn/xmlexport?partnerid=carlb&adtype=ESTATE_SALE" Set oHttp = Server.CreateObject("Msxml2.ServerXMLHTTP") Set oXml = Server.CreateObject("Msxml2.DomDocument")...
  2. fostom

    XML get node name and node value

    Hi! I have trouble getting the correct data parsing my xml. This is my code: Dim szUrl, nodelist szUrl = "http://www.finn.no/finn/xmlexport?partnerid=carlb&adtype=ESTATE_SALE" Set oHttp = Server.CreateObject("Msxml2.ServerXMLHTTP") Set oXml = Server.CreateObject("Msxml2.DomDocument")...
  3. fostom

    xslt add value to attribute list

    This is what I meant: <?xml version='1.0' encoding='utf-8' ?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"><xsl:output method="xml"/> <xsl:template match="/"> <xsl:element name="images"> <xsl:for-each select="/Bilder/Bild"> <xsl:for-each select="*" >...
  4. fostom

    xslt add value to attribute list

    Hi. Can anyone help me with this xslt problem? I have this: <?xml version="1.0" encoding="ISO-8859-1" ?> <Bilder> <Bild url="http://picsrv.annons.dn.se/bsbilder/1/31169/1_31169_31169-679119660_680707379.jpg" ordning="0" mediatypid="1"> tullball </Bild> </Bilder> ..and I want convert it to...
  5. fostom

    XmlDocument save problem

    Thank you for setting me on the right track! Seems to be a bug of some sort. I created a new aspx page with a fresh xml file, then it suddenly worked as it shold. I can't explain why.. maybe my laptop needs a restart or something.. :)
  6. fostom

    XmlDocument save problem

    thx for quick reply.. the xml code is: <?xml version="1.0"?> <?NuDoc tsl_version="7"?> <PF_Designer_Doc use_legacy_font_ascenders="7" line_spacing_accomodates_default_font="false" interparagraph_space_overlaps="false" pfdoc_left_right="false" use_baseline_for_fixed_line_spacing="true"...
  7. fostom

    XmlDocument save problem

    Hi! I am loading an existing xml file and then save like this: Dim xmldoc1 As XmlDocument xmldoc1 = New XmlDocument xmldoc1.Load(thaFile) xmldoc1.Save(thaFile) But when the xml file is saved some of the root element is missing, like this: before: <?xml version="1.0"?> after: xml...
  8. fostom

    Z-index and DropDownList control

    Hi! My dropdownlist shows through my popup div. Anyone know a way to fix this? See example here: http://pub.webtopnordic.com/gp/manpower/test2.aspx ..just move your cursor over the image.. Regards, Tommy
  9. fostom

    XP Pro cant view webpages from internet

    ..I also have SP2 installed with XP Pro..
  10. fostom

    XP Pro cant view webpages from internet

    Hi I'm stuck. I cant seem to view my web pages on my pc from the internet. Using the localhost on the pc works fine. I have opened for port 80 on the router. I have shut off the xp firewall. But all I get is "The page cannot be found". I'm just testing a dummypage at the wwwroot...
  11. fostom

    Visual Sourcesafe and Visual Studio dll problem..

    Hi.. We are using Visual Sourcesafe(VSS) with Visual Studio(VS) in an isolated mode. The thing is; everything works great besides that when I compile on my local pc and check in files and update files in VSS, the compiled dll stays back on the local pc. All the aspx pages is being updated, but...
  12. fostom

    Load multiple jpegs from xml

    hmmm.. that does'nt seem to work.. this is a part of my code where I added your code.. it's just a for-loop which get images from a xml sheet and put them in rows 3 by 3. . . for (j=0; j<articleTag.childNodes.length; j++) { //trace("inside main for-loop"); if...
  13. fostom

    createEmptyMovieClip &lt;- drag and drop

    Hi I import som images on the fly in my flash app with this code: for (j=1; j<5; j++) { path = 'thumbs/thumb'+j+'.jpg'; _root.createEmptyMovieClip('movieClip'+j, j); _root['movieClip'+j]._x = 40*j; _root['movieClip'+j]._y = 40*j; _root['movieClip'+j].loadMovie(path); } ..I...
  14. fostom

    Load multiple jpegs from xml

    btw.. do you know how I can add a drag and drop function to the newly created movieClips in the for-loop? I've tried a lot of things, but nothing seems to work.. :(
  15. fostom

    Load multiple jpegs from xml

    Thank you wangbar.. This was exactly what I was looking for. Works great! :)
  16. fostom

    Load multiple jpegs from xml

    Sorry, man.. I am in deed using Flash MX Pro 2004. But there is no problem with the xml feeding..
  17. fostom

    Load multiple jpegs from xml

    I am using the newest version Flash MX 2004..
  18. fostom

    Load multiple jpegs from xml

    Hi! Can anyone tell me how I can load multiple jpgs into a flash movie from a xml document? I need to create a movie clip on the fly.. well, this I have managed, but lets say I have 5 images I want to display from a xml doc at different positions in the movie. To create this I do a for-loop on...
  19. fostom

    File Upload Progress Bar

    Hi! Anyone know how to add a progressbar to a file upload from an asp.net(vb NOT c#) page? Regards, Tommy
  20. fostom

    Creating Business Components

    Ok, so far so good. But how would the Car class look like if I use this statement in the myObject object: Dim myCar as new Car myCar.Tires.Dimension(&quot;255&quot;) That is actually my main question.. how can I add another &quot;level&quot; to the query? Level1 = myCar. Level2 = Tires...

Part and Inventory Search

Back
Top