Jump to content

racerx2oo3

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by racerx2oo3

  1. Using the code you provided above, I modified the _xmlcreatefile command: Func _XMLCreateFile($strPath, $strRoot, $bOverwrite = False, $bUTF8 = False, $xslRef = 0, $ver = -1) Local $retval, $fe, $objPI, $objDoc, $rootElement, $propStrArray $fe = FileExists($strPath) If $fe And Not $bOverwrite Then $retval = (MsgBox(4097, "File Exists:", "The specified file exits." & @CRLF & "Click OK to overwrite file or cancel to exit.")) If $retval = 1 Then FileCopy($strPath, $strPath & @YEAR & "-" & @MON & "-" & @MDAY & "_" & @HOUR & "-" & @MIN & "-" & @SEC & ".bak", 1) FileDelete($strPath) $fe = False Else _XMLError("Error failed to create file: " & $strPath & @CRLF & "File exists.") SetError(4) Return -1 EndIf Else FileCopy($strPath, $strPath & ".old", 1) FileDelete($strPath) $fe = False EndIf If $fe = False Then If $ver <> -1 Then If $ver > -1 And $ver < 7 Then $objDoc = ObjCreate("Msxml2.DOMdocument." & $ver & ".0") If IsObj($objDoc) Then $DOMVERSION = $ver EndIf Else MsgBox(266288, "Error:", "Failed to create object with MSXML version " & $ver) SetError(3) Return 0 EndIf Else For $x = 8 To 0 Step - 1 If FileExists(@SystemDir & "\msxml" & $x & ".dll") Then $objDoc = ObjCreate("Msxml2.DOMdocument." & $x & ".0") If IsObj($objDoc) Then $DOMVERSION = $x ExitLoop EndIf EndIf Next EndIf If Not IsObj($objDoc) Then Return SetError(2) EndIf If $bUTF8 Then $objPI = $objDoc.createProcessingInstruction ("xml", "version=""1.0"" encoding=""UTF-8""") Else $objPI = $objDoc.createProcessingInstruction ("xml", "version=""1.0""") EndIf $objDoc.appendChild ($objPI) ;testcode If Not IsNumber($xslRef) then $objPI = $objDoc.createProcessingInstruction ('xml-stylesheet', 'type="text/xsl" href="'&$xslRef&'"') $objDoc.AppendChild($objPI) ; _XMLSaveDoc() ; $objPI = 0 EndIf ;testcode_end $rootElement = $objDoc.createElement ($strRoot) $objDoc.documentElement = $rootElement $objDoc.save ($strPath) If $objDoc.parseError.errorCode <> 0 Then _XMLError("Error Creating specified file: " & $strPath) SetError($objDoc.parseError.errorCode) Return -1 EndIf Return 1 Else _XMLError("Error! Failed to create file: " & $strPath) SetError(1) Return 0 EndIf Return 1 EndFunc ;==>_XMLCreateFile This allows for me to pass a FileName to the $xslRef argument in _XMLCreateFile and to generate the proper statement. It appears at the top of the file just under the XML header info. Works perfectly for me, but may lack a certain elegance. I tried creating a more generic structure that could format other xml properties, but wasn't successful and since this did what I needed, I stopped here. Thanks for your help, I would have never figured out the structure otherwise. Sean
  2. I need help with adding a reference to an external XSL file to the beginning of my XML file. I have XML output using _XMLWrapper that looks like this: <?xml version="1.0" encoding="UTF-8"?> <TestResult> <TestCase> <Name>scn01_1000Cubes_1view_Wireframe</Name> <AvgTime>1700.82353181363</AvgTime> <FPS>58.8</FPS> <BaseLine1>baseline\scn01_1000Cubes_1view_Wireframe_begin.jpg</BaseLine1> <BaseLine2>baseline\scn01_1000Cubes_1view_Wireframe_end.jpg</BaseLine2> <Capture1>capture\scn01_1000Cubes_1view_Wireframe_begin.jpg</Capture1> <Capture2>capture\scn01_1000Cubes_1view_Wireframe_end.jpg</Capture2> <Diff1>diff\scn01_1000Cubes_1view_Wireframe_begin.jpg</Diff1> <Diff2>diff\scn01_1000Cubes_1view_Wireframe_end.jpg</Diff2> <PixelDiff1>189783</PixelDiff1> <PixelPercent1>21.37</PixelPercent1> <PixelDiff2>189783</PixelDiff2> <PixelPercent2>21.37</PixelPercent2> </TestCase> I need to add this: <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="result.xsl"?> <TestResult> Here is an example of the XSL file, which is formating the XML data out to an HTML table. <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <body> <h2>Softimge Certification Results</h2> <p></p> <table border="2"> <tr> <td colspan="8" bgcolor="#ffcccc"><b><center>OpenGL</center></b></td> </tr> <tr bgcolor="#ffcccc"> <!-- <th>TestcaseID</th> --> <th>Name</th> <th>Baseline</th> <th>ScreenCapture</th> <th>Comparison</th> <th>Difference</th> <th>Time</th> <th>Pass</th> <th>Status</th> </tr> <xsl:for-each select="TestResult/TestCase"> <tr> <!-- <td><xsl:value-of select="TestcaseID"/></td> --> <td><p><xsl:value-of select="Name"/></p><p align="center">Begin Frame</p></td> <td><a href="{BaseLine1}"><img src="{BaseLine1}" width="150" height="100"/></a></td> <td><a href="{Capture1}"><img src="{Capture1}" width="150" height="100"/></a></td> <td><a href="{Diff1}"><img src="{Diff1}" width="150" height="100"/></a></td> <xsl:choose> <xsl:when test="PixelPercent1 &lt; '1'"> <td><xsl:value-of select="format-number(PixelPercent1, '##.##')"/></td> </xsl:when> <xsl:when test="PixelPercent1 &lt; '5'"> <td bgcolor="#DDDD22"><xsl:value-of select="format-number(PixelPercent1, '##.##')"/></td> </xsl:when> <xsl:otherwise> <td bgcolor="#DD2222"><xsl:value-of select="format-number(PixelPercent1, '##.##')"/></td> </xsl:otherwise> </xsl:choose> </tr> <tr> <!-- <td><xsl:value-of select="TestcaseID"/></td> --> <td><p><xsl:value-of select="Name"/></p><p align="center">End Frame</p></td> <td><a href="{BaseLine2}"><img src="{BaseLine2}" width="150" height="100"/></a></td> <td><a href="{Capture2}"><img src="{Capture2}" width="150" height="100"/></a></td> <td><a href="{Diff2}"><img src="{Diff2}" width="150" height="100"/></a></td> <xsl:choose> <xsl:when test="PixelPercent2 &lt; '1'"> <td><xsl:value-of select="format-number(PixelPercent21, '##.##')"/></td> </xsl:when> <xsl:when test="PixelPercent2 &lt; '5'"> <td bgcolor="#DDDD22"><xsl:value-of select="format-number(PixelPercent2, '##.##')"/></td> </xsl:when> <xsl:otherwise> <td bgcolor="#DD2222"><xsl:value-of select="format-number(PixelPercent2, '##.##')"/></td> </xsl:otherwise> </xsl:choose> </tr> Any Ideas? Sean
  3. Zedna, The application is the control panel applet for a video graphics card. Attached are two screen caps, the first shows the information for the SysListView, the second has the ComboBox selected. Each row contains a combobox in the second column, and each combobox has the same description, ControlID 1, ComboBox2. I installed and am using some of the methods from the Auto3Lib for dealing with ListBoxes, but I still can't determine how to interact with the combo box. Thanks Sean
  4. I've tried searching the forums and can't find this type of issue addressed. I'm working with an applet that uses a SysListView for modifying configuration settings. The first column contains the setting description. The second column has a ComboBox that drops down to allow you to change the settings. I can read the text in the either column using _GUICtrlListViewGetItemText. The text for the 2nd column will contain whatever the value in the listbox currently is. However, I need to be able to see what values the combobox contains. While each row in the Listview contains a ComboBox, each combobox reports the Same control ID and the same ClassNameNN. Does anyone have any hints for working with GUI items contained in a ListView? Sean
×
×
  • Create New...