Changes between Initial Version and Version 3 of Ticket #1861


Ignore:
Timestamp:
05/23/12 10:18:39 (12 years ago)
Author:
trancexx
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1861 – Description

    initial v3  
    22
    33Example:
     4{{{
    45#include <array.au3>
    56Global $aTestArray1[1] = ["Test|Row 1"]
    67_ArrayDisplay($aTestArray1, "Test Array 1", -1, 0, "", "|", "Rows|Column0")
     8}}}
    79
    810should result in:
     
    1820
    1921Replace (starting with line 362):
     22{{{
    2023; Set header up
    2124If $sHeader = "" Then
     
    2528  Next
    2629EndIf
     30}}}
    2731
    2832with:
     33{{{
    2934; Set header up
    3035If $sHeader = "" Then
     
    3641  $sHeader = StringReplace($sHeader, $sDataSeparatorChar, $sSeparator)
    3742EndIf
     43}}}
    3844
    39