Ok, heres my code
Qt Code:
  1. <Item_stats>
  2. <General_Details>
  3. <Price>300</Price>
  4. <Name>Bottle of Wisdom</Name>
  5. <Description> blahblahblah blahblah</Description>
  6. </General_Details>
  7.  
  8. <Auras>
  9. <HPreg>3.6</HPreg>
  10. <Manareg>3.6</Manareg>
  11. </Auras>
  12. </Item_stats>
To copy to clipboard, switch view to plain text mode 

that is my basic xml file, i tried using #include QXml and using QdomDocument ... didnt reach a thing.. although i managed to have the file in 'open' state, figured that out using if statement with a file.isOpen...

Ok, what i want to do with the data is to place them into little Labels/Line edits. for example, i want this to be visible in the gui:

Item Name: (text here)
Price: 300...
if you can give me an example on one i would manage the rest.

Thanks in advance... XD