Changes between Initial Version and Version 3 of Ticket #1861
- Timestamp:
- 05/23/12 10:18:39 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1861 – Description
initial v3 2 2 3 3 Example: 4 {{{ 4 5 #include <array.au3> 5 6 Global $aTestArray1[1] = ["Test|Row 1"] 6 7 _ArrayDisplay($aTestArray1, "Test Array 1", -1, 0, "", "|", "Rows|Column0") 8 }}} 7 9 8 10 should result in: … … 18 20 19 21 Replace (starting with line 362): 22 {{{ 20 23 ; Set header up 21 24 If $sHeader = "" Then … … 25 28 Next 26 29 EndIf 30 }}} 27 31 28 32 with: 33 {{{ 29 34 ; Set header up 30 35 If $sHeader = "" Then … … 36 41 $sHeader = StringReplace($sHeader, $sDataSeparatorChar, $sSeparator) 37 42 EndIf 43 }}} 38 44 39