este codigo es parte de otro, pero aqui es donde me da el error ,el codigo es el siguiente:
Código:
No se si el error se debe a que falta por cerrar alguna llave, pero me pierdo con este codigo, agradeceria si me podeis decir donde esta el error.function clsChart_Row_Draw () { var strImages; strImages = "<TABLE WIDTH=620 BORDER=0 CELLPADDING=0 CELLSPACING=0>"; strImages += "<TR ALIGN='CENTER'><TD>"; var dimension = Round(this.scale*this.rowScale[currentRow]/20); if (dimension < 15) { strImages = this.Too_Small() return strImages; } var ImageArray = new Array (this.rowElements[currentRow]); for (var j=0; j < this.rowElements[currentRow] && j < this.currentChart.length; j++) { var tempValid = false; ImageArray[j] = this.Rnd_Image(); while (!tempValid) { tempValid = true; for (var k=j-1; k >= 0; k--) { if (ImageArray[j] == ImageArray[k]) { ImageArray[j] = this.Rnd_Image(); tempValid = false; } } } strImages += imgWrite("Graphics/" + this.ChartPath[this.chartType-1], ImageArray[j], dimension, dimension, 10, 10); } strImages += "</TD><TD ALIGN='RIGHT'>"; strImages += "20/" + this.rowScale[currentRow]; strImages += "</TD></TR>"; strImages += "</TABLE>"; return strImages; }
Salu2.