DC_Array2Excel

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
TWolfe
Posts: 60
Joined: Thu Jan 28, 2010 7:34 am

DC_Array2Excel

#1 Post by TWolfe »

Roger,

I was looking at DC_Array2Excel and noticed the following code is included twice. Is there a reason for this or should one of these be deleted?

Terry

Code: Select all


  // Force a reformat for the size of the first column
  IF lAutoFit
    FOR i := 1 TO Len(aData[nSheet,1])
      oSheet:Columns(i):AutoFit()
    NEXT
  ENDIF

  // Force a reformat for the size of the first column
  IF lAutoFit
    FOR i := 1 TO Len(aData[nSheet,1])
      oSheet:Columns(i):AutoFit()
    NEXT
  ENDIF


User avatar
rdonnay
Site Admin
Posts: 4734
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: DC_Array2Excel

#2 Post by rdonnay »

Looks like a mistake.

I'll remove it. Thanks.
The eXpress train is coming - and it has more cars.

Post Reply