Page 1 of 1

PNG file size becomes 0KB

Posted: Thu Oct 12, 2006 4:38 pm
by 6920827
Dear Support,

Recently, I use Teechart Pro Active X version 5.0.2 to generate charts in png format via ASP but have found that the size of the png files suddenly become 0 KB after running normally for hours. This has happened on several of our web servers and found a server's ASP queue was up to 3000 whereas another one was 0. By restarting the IIS, the generation of png files via ASP resumed normal temporarily. Please note that I have not encountered problem when the charts were generated in gif format.

1. Why the size of the png files suddenly become 0KB? Why gif format did not have this problem?
2. How to capture more error information when the case happens?
3. Through the forum and found that TeeChart ActiveX v6.0.0.7 has a change about 'Resilience improvements for IIS operability', can this version help this case? If yes, how can I download an evaluation version?
4. This is part of my code, please advise


PriceChart.Export.aspng.Height = 600
PriceChart.Export.aspng.Width = 520

Dim fileName
fileName = server.mappath("../../") & "\" & dataPath & "historical\" & strCoID & "_" & strMonth & "_" & session("lang_code") & ".png"
PriceChart.Export.aspng.SaveToFile (fileName)

if session("lang_code") = "c" then
fileName = server.mappath("../../") & "\" & dataPath & "historical\" & strCoID & "_" & strMonth & "_sc.png"
PriceChart.Export.aspng.SaveToFile (fileName)
end if

Set PriceChart = Nothing


Thanks for helping.

Posted: Wed Oct 18, 2006 11:11 am
by Pep
Hi,
1. Why the size of the png files suddenly become 0KB? Why gif format did not have this problem?
2. How to capture more error information when the case happens?
3. Through the forum and found that TeeChart ActiveX v6.0.0.7 has a change about 'Resilience improvements for IIS operability', can this version help this case? If yes, how can I download an evaluation version?
1) It's a strange behaviour, you're the first customer with this problem.
2) It's difficult if the ASP page does not generate any error.
2) Yes, it could help.

I think the first step we can do is to check if the same problem happens with the latest TeeChart Pro v7 version. Could you please download the latest TeeChart Pro v7 Trial version and check if the same problem happens ?
If so, plese send us an ASP page to the attachments newsgroup with which we can reproduce the problem here and debug it to see when the problem is.

PNG file size becomes 0KB

Posted: Sun Oct 22, 2006 6:39 am
by 6920827
Hello Josep,

Thanks for your feedback. I've downloaded TeeChart Pro v7 version in the testing environment but haven't simulated the exact problem yet. However, when I use the current ASP code to generate the PNG file, I found the presentation is different from the one generated by v5.0.2, such as a plotted vertical line is no longer vertically presented with the same width. To use the current ASP code to generate the gif file under v7 even becomes a black image!


Please find my attached TeeChartCode and TeeChartLog (by using Teechart ActiveX V5.0.2 environment) for reference.

***At [10/20/2006 2:01:53 PM], the log seems strange, having error number -2147418113***
[10/20/2006 2:01:53 PM] 1073035738 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:01:53 PM] 1073035738 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:01:53 PM] 1073035738 Save Chinese Image: -2147418113 . File Size: 33

***At [10/20/2006 2:07:14 PM], the png file size becomes 0KB. All the newly generated PNG files are 0KB as well. Stop-start web serivce is the only interim solution to resume the chart generation service.***
[10/20/2006 2:07:14 PM] 1073036145 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:07:14 PM] 1073036145 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:07:15 PM] 1073036145 Save Chinese Image: -2147418113 . File Size: 0


1. Any hints from the TeeChartLog, what is the meanings for '3265 Item cannot be found in the collection corresponding to the requested name or ordinal' & ' -2147418113' under this chart generation process?

2. Any advice for my ASP code to be compatiable under TeeChart Pro v7 version?

Your feedback is highly appreciated, thanks.

Code: Select all

        ' Create new chart

        Set PriceChart = Server.CreateObject("TeeChart.TChart")

 

            ' Error "3265 Item cannot be found in the collection corresponding to the requested name or ordinal."

        If Err.Number <> 0 Then

            debug Session.SessionID & " PriceChart create: " & Err.Number & " " & Err.Description

        End If

 

        Set TurnoverChart = Server.CreateObject("TeeChart.TChart")

 

        PriceChart.Height = 600

        PriceChart.Width = 520

 

        Dim lowColor, closeColor, highColor, avLine1Color, avLine2Color, indexColor, suspendedColor, turnoverColor, gridColor

        lowColor = RGB(0, 0, 106)

        closeColor = RGB(0, 0, 106)

        highColor = RGB(0, 0, 106)

        avLine1Color = RGB(255, 0, 255)

        avLine2Color = RGB(64, 128, 128)

        indexColor = RGB(177, 174, 114)

        suspendedColor = RGB(220, 220, 220)

        turnoverColor = RGB(92, 92, 92)

        gridColor = RGB(220, 220, 220)

 

        'Chart appearance

        PriceChart.Header.Visible = False

        PriceChart.Aspect.View3D = False

        PriceChart.Legend.Visible = False

                        PriceChart.Walls.Back.Visible = False

 

        With PriceChart.Panel

            .Color = vbWhite

            .BevelOuter = 0

            .BevelInner = 0

            .MarginTop = 2

            .MarginLeft = 15

            .MarginRight = 10

        End With

 

 

                        'Add Series to the Chart

        PriceChart.AddSeries (11)

        PriceChart.AddSeries (0)

        PriceChart.AddSeries (0)

        PriceChart.AddSeries (0)

        PriceChart.AddSeries (1)

 

        PriceChart.AddSeries (1)

        PriceChart.AddSeries (1)

 

 

                        'Add data to the Series

        Dim dateDict, dateItem

        Set dateDict = Server.CreateObject("Scripting.Dictionary")

 

        chartDate = DateAdd("d", -1, v_begin_date)

        While DateDiff("d", chartDate, v_current_date) > 0

            chartDate = DateAdd("d", 1, chartDate)

            dateDict.Add chartDate, chartDate

            'response.write "dateDict's chartDate = " & chartDate & "<br>"

        Wend

 

        Dim previousIndex

        previousIndex = 0

 

        For Each dateItem In dateDict

            If closeDict.Exists(dateItem) Or indexDict.Exists(dateItem) Or suspendedDict.Exists(dateItem) Or turnoverDict.Exists(dateItem) Then

 

                                                'Add the Candle Series(Closing, Highest, Lowest Price), Average Line #1 Series, Average Line #2 Series

                        If closeDict.Exists(dateItem) Then

                                                            PriceChart.Series(0).asCandle.AddCandle i, closeDict(dateItem), highDict(dateItem), lowDict(dateItem), closeDict(dateItem)

                                                            If avLine1Dict(dateItem) <> "99999999" Then

                                                                        PriceChart.Series(1).AddXY i, avLine1Dict(dateItem), "", avLine1Color

                                                            Else

                                                                        PriceChart.Series(1).AddNull ""

                                                            End If

                                                            If avLine2Dict(dateItem) <> "99999999" Then

                                                                        PriceChart.Series(2).AddXY i, avLine2Dict(dateItem), "", avLine2Color

                                                            Else

                                                                        PriceChart.Series(2).AddNull ""

                                                            End If

                                                Else

                                                            PriceChart.Series(0).AddXY i, v_yaxis_min, "", gridColor

                                                            PriceChart.Series(1).AddNull ""

                                                            PriceChart.Series(2).AddNull ""

                                                End If

 

                                                'Add the Index Series (For Normal HK Stock only; Exclude NASDAQ Stock and Stock Type != '1' and '2')

                                                If normalStockType AND v_NASDAQ = "FALSE" AND indexDict.Exists(dateItem) Then

                                                            PriceChart.Series(3).AddXY i, indexDict(dateItem), "", indexColor

                                                            previousIndex = indexDict(dateItem)

                                                Else

                                                            'PriceChart.Series(3).AddXY i, previousIndex, "", indexColor

                                                            PriceChart.Series(3).AddNull ""

                                                End If

            

                                                'Add the Suspended Series

                                                If suspendedDict.Exists(dateItem) Then

                                                            PriceChart.Series(4).AddXY i, suspendedDict(dateItem), "", suspendedColor

                                                Else

                                                            PriceChart.Series(4).AddNull ""

                                                End If

 

                                                'Add the Turnover Series

                                                If turnoverDict.Exists(dateItem) Then

                                                            PriceChart.Series(5).AddXY i, turnoverDict(dateItem), "", turnoverColor

                                                Else

                                                            PriceChart.Series(5).AddXY i, 0, "", gridColor

                                                End If

 

                                                'Add the Suspended Series

                                                If suspendedTDict.Exists(dateItem) Then

                                                            PriceChart.Series(6).AddXY i, suspendedTDict(dateItem), "", suspendedColor

                                                Else

                                                            PriceChart.Series(6).AddNull ""

                                                End If

 

                                                PriceChart.Series(0).PointLabel(i) = formatDateTime(dateDict(dateItem), 4)

                                                PriceChart.Series(5).PointLabel(i) = formatDateTime(dateDict(dateItem), 4)

            

                                                i = i + 1

                                    End If

        Next

 

 

                        '--- Price Chart : Left Vertical Axis ---'

                        With PriceChart.Axis.Left

                        End With

 

                        Dim VAxis1

                        VAxis1 = PriceChart.Axis.AddCustom(False)

                        With PriceChart.Axis.Custom(VAxis1)

                            .StartPosition = 0                                                    'Axis Position

                            .EndPosition = 50

 

                            .Automatic = False                                                  'Axis Maximum, Minimum

                                    .Maximum = v_yaxis_max

                                    .Minimum = v_yaxis_min

                            .Increment = priceIncrement

 

                            .AxisPen.Color = RGB(220, 220, 220)       'Axis Color

                            .AxisPen.Width = 0

 

                            .GridPen.Visible = True                                           'Axis Grid

                                    .GridPen.Style = 0

                                    .GridPen.Color = RGB(220, 220, 220)

 

                            .Title.Caption = strWidCoTc                                   'Axis Title

                            .Title.Angle = 90

 

                            .Labels.Visible = True                                             'Axis Label

                            .Labels.ValueFormat = priceFormat

 

                                    .Ticks.Color = RGB(220, 220, 220)    'Axis Ticks

                                    .TicksInner.Style = 0

                                    .TicksInner.Color = RGB(220, 220, 220)

                            .MinorTicks.Visible = False

                        End With

 

                        '--- Price Chart : Right Vertical Axis ---'

                        With PriceChart.Axis.Right

                        End With

 

                        Dim VAxis2

                        VAxis2 = PriceChart.Axis.AddCustom(False)

                        With PriceChart.Axis.Custom(VAxis2)

                            .StartPosition = 0

                            .EndPosition = 50

                            .OtherSide = 1

                                    '.PositionPercent = 100

 

                            .Automatic = False

                    Select Case (v_stock_mkt)

                        Case "M":

                            .Maximum = v_max_HKL

                            .Minimum = v_min_HKL

                        Case "G":

                            .Maximum = v_max_GEM

                            .Minimum = v_min_GEM

                        Case Else:

                            .Maximum = v_max_HKL

                            .Minimum = v_min_HKL

                    End Select

 

                            .AxisPen.Color = RGB(220, 220, 220)       'Axis Color

                            .AxisPen.Width = 0

 

                            .GridPen.Visible = False

 

                                    'If NASDAQ Stock, set label invisible

                                    If v_NASDAQ = "TRUE" OR normalStockType = "FALSE" Then

                                                .Labels.Visible = False

                                    Else

                                        .Labels.Visible = True

                                        .Labels.ValueFormat = "0"

                                        .Labels.Align = 1

                                    End If

 

                                    .Ticks.Color = RGB(220, 220, 220)    'Axis Ticks

                                    .MinorTicks.Visible = False

                        End With

 

                        '--- Price Chart : Top Horizontal Axis ---'

                        With PriceChart.Axis.Top

                        End With

 

                        Dim HAxis1

                        HAxis1 = PriceChart.Axis.AddCustom(True)

                        With PriceChart.Axis.Custom(HAxis1)

                                    .PositionPercent = 100

 

                            .AxisPen.Color = RGB(220, 220, 220)       'Axis Color

                            .AxisPen.Width = 0

 

                                    .GridPen.Visible = False

                                    .Labels.Visible = False

                        End With

 

                        '--- Price Chart : Bottom Horizontal Axis ---'

                        With PriceChart.Axis.Bottom

                        End With

 

                        Dim HAxis2

                        HAxis2 = PriceChart.Axis.AddCustom(True)

                        With PriceChart.Axis.Custom(HAxis2)

                                    .StartPosition = 0.2

                                    .EndPosition = 99.6

                                    .PositionPercent = 50

 

                            .AxisPen.Color = RGB(220, 220, 220)       'Axis Color

                            .AxisPen.Width = 0

 

                                    .GridPen.Visible = False

                            .Labels.Visible = True

 

                                    .Ticks.Color = RGB(220, 220, 220)    'Axis Ticks

                                    .TicksInner.Style = 0

                                    .TicksInner.Color = RGB(220, 220, 220)

                    .TickInnerLength = 281

                            .MinorTicks.Visible = False

                        End With

 

                        '--- Turnover Chart : Left Vertical Axis ---'

                        Dim VAxis3

                        VAxis3 = PriceChart.Axis.AddCustom(False)

                        With PriceChart.Axis.Custom(VAxis3)

                            .StartPosition = 60

                            .EndPosition = 100

 

                                    .Automatic = False

                                    '.Maximum = (CDbl(v_max_turnover) / 1000)

                                    If (CDbl(v_max_turnover) / 1000) = 0 Then

                                                .Maximum = 1

                                    Else

                                                .Maximum = (CDbl(v_max_turnover) / 1000)

                                    End If

                                    .Minimum = 0

                                    If v_NASDAQ = "TRUE" Then

                        .Increment = 0.05

                                    End If

 

                            .AxisPen.Color = RGB(220, 220, 220)       'Axis Color

                            .AxisPen.Width = 0

 

                            .GridPen.Visible = True

                            .GridPen.Style = 0

                            .GridPen.Color = RGB(220, 220, 220)

 

                                    .Title.Caption = "No. of shares (k)"

                                    .Title.Angle = 90

 

                            .Labels.Visible = True

                            .Labels.ValueFormat = "######0.00"

                            .Labels.Separation = 30

 

                                    .Ticks.Color = RGB(220, 220, 220)    'Axis Ticks

                                    .TicksInner.Style = 0

                                    .TicksInner.Color = RGB(220, 220, 220)

                                    .MinorTicks.Visible = False

                        End With

 

                        '--- Turnover Chart : Right Vertical Axis ---'

                        Dim VAxis4

                        VAxis4 = PriceChart.Axis.AddCustom(False)

                        With PriceChart.Axis.Custom(VAxis4)

                            .StartPosition = 60

                            .EndPosition = 100

                                    .PositionPercent = 100

 

                            .AxisPen.Color = RGB(220, 220, 220)       'Axis Color

                            .AxisPen.Width = 1

 

                            .GridPen.Visible = False

                            .Labels.Visible = False

                        End With

 

                        '--- Turnover Chart : Top Horizontal Axis ---'

                        Dim HAxis3

                        HAxis3 = PriceChart.Axis.AddCustom(True)

                        With PriceChart.Axis.Custom(HAxis3)

                                    .PositionPercent = 40

 

                            .AxisPen.Color = RGB(220, 220, 220)       'Axis Color

                            .AxisPen.Width = 0

 

                                    .GridPen.Visible = False

                                    .Labels.Visible = False

 

                        End With

 

 

                        '--- Turnover Chart : Bottom Horizontal Axis ---'

                        Dim HAxis4

                        HAxis4 = PriceChart.Axis.AddCustom(True)

                        With PriceChart.Axis.Custom(HAxis4)

                                    .StartPosition = 0.2

                                    .EndPosition = 99.6

                                    .PositionPercent = 0

 

                            .AxisPen.Color = RGB(220, 220, 220)       'Axis Color

                            .AxisPen.Width = 0

 

                                    .GridPen.Visible = False

                                    .Labels.Visible = True

 

                                    .Ticks.Color = RGB(220, 220, 220)    'Axis Ticks

                                    .TicksInner.Style = 0

                                    .TicksInner.Color = RGB(220, 220, 220)

                    .TickInnerLength = 225

                                    .MinorTicks.Visible = False

                        End With

 

 

                        '--- Series(0) Setup : Closing, Lowest & Highest Price Series ---'

                        PriceChart.Series(0).VerticalAxisCustom = VAxis1                    'Left

                        PriceChart.Series(0).HorizontalAxisCustom = HAxis2                  'Bottom

                        PriceChart.Series(0).Marks.Visible = False

                        

                        PriceChart.Series(0).asCandle.CandleStyle = 1           'CandleStyle 0 = csCandleBar; 1 = csCandleStick

                        PriceChart.Series(0).asCandle.CandleWidth = 6

                        PriceChart.Series(0).asCandle.UpCloseColor = closeColor

                        PriceChart.Series(0).asCandle.DownCloseColor = closeColor

                        PriceChart.Series(0).asCandle.ShowOpenTick = False

                        PriceChart.Series(0).asCandle.ShowCloseTick = True

                        PriceChart.Series(0).Color = closeColor

                        

                        '--- Series(1) Setup : Average line #1 Series ---'

                        PriceChart.Series(1).VerticalAxisCustom = VAxis1                    'Left

                        PriceChart.Series(1).HorizontalAxisCustom = HAxis2                  'Bottom

                        PriceChart.Series(1).Marks.Visible = False

                        

                        '--- Series(2) Setup : Average line #2 Series ---'

                        PriceChart.Series(2).VerticalAxisCustom = VAxis1                    'Left

                        PriceChart.Series(2).HorizontalAxisCustom = HAxis2                  'Bottom

                        PriceChart.Series(2).Marks.Visible = False

                        

                        '--- Series(3) Setup : Index line (HKL or GEM) Series ---'

                        PriceChart.Series(3).VerticalAxisCustom = VAxis2                    'Right

                        PriceChart.Series(3).HorizontalAxisCustom = HAxis2                  'Bottom

                        PriceChart.Series(3).Marks.Visible = False

 

                        '--- Series(4) Setup : Suspended line Series ---'

                        PriceChart.Series(4).VerticalAxisCustom = VAxis1                    'Left

                        PriceChart.Series(4).HorizontalAxisCustom = HAxis1                  'Top

                        PriceChart.Series(4).Marks.Visible = False

 

                        PriceChart.Series(4).asBar.BarStyle = 1                   'BarStyle 1 = bsPyramid

                        PriceChart.Series(4).asBar.BarPen.Color = suspendedColor    'BarPen.Color - color used by the Pen

                        PriceChart.Series(4).asBar.BarPen.Width = 2                 'BarPen.Width = 0; minimum Pen Width

                        PriceChart.Series(4).asBar.Origin = v_yaxis_min

 

                        '--- Series(5) Setup : Turnover line Series ---'

                        PriceChart.Series(5).VerticalAxisCustom = VAxis3               'Left

                        PriceChart.Series(5).HorizontalAxisCustom = HAxis4          'Bottom

                        PriceChart.Series(5).Marks.Visible = False

                        

                        If strMonth = "3" Then

                                    PriceChart.Series(5).asBar.BarStyle = 5                 'BarStyle 5 = bsArrow; for narrow the width of the suspended line

                                    PriceChart.Series(5).asBar.BarPen.Width = 2             'BarPen.Width = 0; minimum Pen Width

                        End If

                        PriceChart.Series(5).asBar.BarPen.Color = turnoverColor     'BarPen.Color - color used by the Pen

 

                        '--- Series(6) Setup : Suspended line Series ---'

                        PriceChart.Series(6).VerticalAxisCustom = VAxis4               'Right

                        PriceChart.Series(6).HorizontalAxisCustom = HAxis3          'Top

                        PriceChart.Series(6).Marks.Visible = False

 

                        PriceChart.Series(6).asBar.BarStyle = 1                   'BarStyle 1 = bsPyramid

                        PriceChart.Series(6).asBar.BarPen.Color = suspendedColor    'BarPen.Color - color used by the Pen

                        PriceChart.Series(6).asBar.BarPen.Width = 2                 'BarPen.Width = 0; minimum Pen Width

                        PriceChart.Series(6).asBar.Origin = 0

                        

                        'Enable Series(3) whenever strWidCoType is

                        'If (strWidCoType = "1" Or strWidCoType = "2") Then

                        '           PriceChart.Series(3).Active = True

                        'Else

                        '           PriceChart.Series(3).Active = False

                        'End If

                        

                        If v_NASDAQ = "TRUE" Then

                                    PriceChart.Series(1).Active = False

                                    PriceChart.Series(2).Active = False

                                    'PriceChart.Series(3).Active = False                                      'Enable Series(3) whenever NASDAQ or HK Stock

                        End If

 

        'Export the PriceChart as PNG file

        PriceChart.Export.aspng.Height = 600

        PriceChart.Export.aspng.Width = 520

    

        Dim fileName

        fileName = server.mappath("../../") & "\" & dataPath & "historical\" & strWidCoID & "_" & strMonth & "_" & session("lang_code") & ".png"

        PriceChart.Export.aspng.SaveToFile (fileName)

 

            ' Error "-2147418113 . File Size: 0"

        If Err.Number <> 0 Then

            Set oFSO = Server.CreateObject("Scripting.FileSystemObject")  

            debug Session.SessionID & " Save English Image: " & Err.Number & " " & Err.Description & ". File Size: " & oFSO.GetFile(filename).Size

            Set oFSO = Nothing                

        End If

 

            if session("lang_code") = "c" then

           fileName = server.mappath("../../") & "\" & dataPath & "historical\" & strWidCoID & "_" & strMonth & "_sc.png"

           PriceChart.Export.aspng.SaveToFile (fileName)

                       

            If Err.Number <> 0 Then

                Set oFSO = Server.CreateObject("Scripting.FileSystemObject")  

                debug Session.SessionID & " Save Chinese Image: " & Err.Number & " " & Err.Description & ". File Size: " & oFSO.GetFile(filename).Size

                Set oFSO = Nothing           

            End If

           

        end if

 

        Set PriceChart = Nothing


TeeChartLog under 5.0.2

Code: Select all

[10/20/2006 12:47:15 PM] 1073033020 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:49:56 PM] Start logging on stock 4321...
[10/20/2006 12:49:56 PM] SQL statement to extract daily record on stock 4321:SELECT count(*) v_counter FROM  STOCK_COMMON_TAB,  DAILY_TRADING_TAB WHERE  DpCoID = '4321' and  DpDate >= '2006/7/1' and  DpDate < '2006/10/20' AND  DpClose <> 99999999 AND  CoID =  DpCoID AND  CoEnabled <> 'N'
[10/20/2006 12:49:56 PM] No of daily record count on stock 4321:78
[10/20/2006 12:49:56 PM] Regenerate chart on stock 4321
[10/20/2006 12:49:56 PM] Start generate X-axis label on stock 4321
[10/20/2006 12:49:57 PM] End logging on stock 4321
[10/20/2006 12:50:40 PM] 1073033135 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:51:04 PM] 1073033068 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:51:09 PM] 1073033153 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:51:14 PM] 1073033153 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:51:19 PM] 1073033153 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:51:27 PM] 1073033162 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:52:27 PM] 1073033036 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:54:02 PM] 1073033185 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:55:40 PM] 1073033185 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:56:15 PM] 1073033246 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:56:52 PM] 1073033311 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:57:08 PM] 1073033298 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:57:23 PM] 1073033304 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:57:32 PM] 1073033298 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:57:34 PM] 1073033341 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:57:46 PM] 1073033341 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:59:23 PM] 1073033365 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 12:59:39 PM] 1073033365 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:00:01 PM] 1073033448 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:01:02 PM] 1073033348 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:01:28 PM] 1073033548 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:04:13 PM] 1073033590 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:04:26 PM] 1073033633 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:05:23 PM] 1073033605 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:05:24 PM] 1073033605 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:06:44 PM] 1073033705 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:08:30 PM] 1073033348 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:08:46 PM] 1073033801 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:10:05 PM] 1073033872 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:12:08 PM] 1073033927 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:12:52 PM] 1073033996 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:15:19 PM] 1073034014 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:15:50 PM] 1073034089 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:16:40 PM] 1073034095 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:17:49 PM] 1073034146 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:18:51 PM] 1073034177 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:20:55 PM] 1073034229 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:21:16 PM] 1073034188 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:21:28 PM] 1073034255 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:21:58 PM] 1073034273 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:22:20 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:22:24 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:22:26 PM] 1073034285 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:22:31 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:22:32 PM] 1073034291 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:22:33 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:22:45 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:22:47 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:24:23 PM] 1073034291 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:24:24 PM] 1073034352 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:25:02 PM] 1073034280 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:25:03 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:25:04 PM] 1073034375 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:25:06 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:25:09 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:25:11 PM] 1073034291 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:25:15 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:25:17 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:25:24 PM] 1073034382 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:26:45 PM] 1073034422 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:26:52 PM] 1073034426 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:27:46 PM] 1073034422 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:28:01 PM] 1073034422 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:28:26 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:28:29 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:28:39 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:28:41 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:28:56 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:28:58 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:29:02 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:29:12 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:29:18 PM] 1073034278 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:34:46 PM] 1073034714 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:34:48 PM] 1073034714 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:36:28 PM] 1073034805 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:36:32 PM] 1073034805 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:37:10 PM] 1073034805 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:37:13 PM] 1073034862 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:37:20 PM] 1073034805 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:37:36 PM] 1073034805 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:37:42 PM] 1073034805 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:37:54 PM] 1073034906 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:40:21 PM] 1073035052 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:40:45 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:41:00 PM] 1073035052 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:41:10 PM] 1073035052 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:41:13 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:41:14 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:41:16 PM] 1073035056 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:41:42 PM] 1073035122 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:41:58 PM] 1073035052 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:42:23 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:42:47 PM] 1073035188 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:43:28 PM] 1073035224 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:43:29 PM] 1073035225 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:44:03 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:44:10 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:44:24 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:44:32 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:44:39 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:44:40 PM] 1073035177 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:44:47 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:44:54 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:44:56 PM] 1073035177 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:46:48 PM] 1073035399 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:46:52 PM] 1073035402 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:46:59 PM] 1073035381 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:47:17 PM] 1073035432 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:48:35 PM] 1073035507 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:48:46 PM] 1073035523 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:50:36 PM] 1073035559 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:50:48 PM] 1073035566 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:51:05 PM] 1073035555 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:51:21 PM] 1073035586 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:52:25 PM] 1073035118 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:52:34 PM] 1073035118 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:52:36 PM] 1073035630 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:52:58 PM] 1073035610 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:52:59 PM] 1073035610 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:53:47 PM] 1073035118 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:54:21 PM] 1073035699 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:54:28 PM] 1073035699 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:55:47 PM] 1073035737 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:56:57 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:56:58 PM] 1073035072 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:57:12 PM] 1073035333 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:57:19 PM] 1073035333 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:57:43 PM] 1073035795 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:57:43 PM] 1073035723 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:57:44 PM] 1073035795 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:57:51 PM] 1073035808 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:57:51 PM] 1073035795 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:57:53 PM] 1073035795 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:59:12 PM] 1073035850 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 1:59:23 PM] 1073035862 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:00:51 PM] 1073035923 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:01:20 PM] 1073035891 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:01:20 PM] 1073035911 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:01:36 PM] 1073035911 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:01:53 PM] 1073035738 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:01:53 PM] 1073035738 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:01:53 PM] 1073035738 Save Chinese Image: -2147418113 . File Size: 33
[10/20/2006 2:02:12 PM] 1073035972 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:02:12 PM] 1073035972 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:03:20 PM] 1073035923 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:03:20 PM] 1073035923 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:03:21 PM] 1073035923 Save Chinese Image: -2147418113 . File Size: 33
[10/20/2006 2:03:30 PM] 1073036026 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:03:31 PM] 1073036026 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:03:31 PM] 1073036026 Save Chinese Image: -2147418113 . File Size: 33
[10/20/2006 2:03:42 PM] 1073036030 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:03:42 PM] 1073036030 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:03:43 PM] 1073036030 Save Chinese Image: -2147418113 . File Size: 33
[10/20/2006 2:03:43 PM] 1073036017 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:03:43 PM] 1073036017 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:03:45 PM] 1073035997 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:03:45 PM] 1073035997 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:03:46 PM] 1073035997 Save Chinese Image: -2147418113 . File Size: 33
[10/20/2006 2:03:59 PM] 1073035997 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:04:00 PM] 1073035997 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:04:00 PM] 1073035997 Save Chinese Image: -2147418113 . File Size: 33
[10/20/2006 2:04:03 PM] 1073035997 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:04:03 PM] 1073035997 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:04:04 PM] 1073035997 Save Chinese Image: -2147418113 . File Size: 33
[10/20/2006 2:05:11 PM] 1073036048 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:05:12 PM] 1073036048 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:05:52 PM] 1073036095 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:05:52 PM] 1073036095 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:05:52 PM] 1073036095 Save Chinese Image: -2147418113 . File Size: 33
[10/20/2006 2:06:03 PM] 1073036099 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:06:03 PM] 1073036099 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:06:04 PM] 1073036099 Save Chinese Image: -2147418113 . File Size: 33
[10/20/2006 2:06:13 PM] 1073036106 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:06:13 PM] 1073036106 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:06:13 PM] 1073036106 Save Chinese Image: -2147418113 . File Size: 33
[10/20/2006 2:06:33 PM] 1073036117 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:06:33 PM] 1073036117 Save English Image: -2147418113 . File Size: 33
[10/20/2006 2:06:34 PM] 1073036117 Save Chinese Image: -2147418113 . File Size: 33
[10/20/2006 2:07:14 PM] 1073036145 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:07:14 PM] 1073036145 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:07:15 PM] 1073036145 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:07:17 PM] 1073036064 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:07:17 PM] 1073036064 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:07:17 PM] 1073036064 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:07:36 PM] Start logging on stock 4321...
[10/20/2006 2:07:36 PM] SQL statement to extract daily record on stock 4321:SELECT count(*) v_counter FROM  STOCK_COMMON_TAB,  DAILY_TRADING_TAB WHERE  DpCoID = '4321' and  DpDate >= '2006/7/1' and  DpDate < '2006/10/20' AND  DpClose <> 99999999 AND  CoID =  DpCoID AND  CoEnabled <> 'N'
[10/20/2006 2:07:36 PM] No of daily record count on stock 4321:78
[10/20/2006 2:07:36 PM] Regenerate chart on stock 4321
[10/20/2006 2:07:36 PM] Start generate X-axis label on stock 4321
[10/20/2006 2:07:36 PM] 1073036017 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:07:36 PM] End logging on stock 4321
[10/20/2006 2:07:41 PM] 1073036153 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:07:41 PM] 1073036153 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:07:42 PM] 1073036153 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:07:42 PM] 1073036153 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:07:42 PM] 1073036153 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:07:43 PM] 1073036153 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:07:46 PM] 1073036017 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:07:46 PM] 1073036017 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:07:57 PM] 1073036172 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:07:57 PM] 1073036172 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:07:57 PM] 1073036172 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:08:09 PM] 1073036068 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:08:09 PM] 1073036068 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:08:10 PM] 1073036068 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:08:10 PM] 1073036068 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:08:10 PM] 1073036068 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:08:11 PM] 1073036068 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:08:11 PM] 1073036081 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:08:11 PM] 1073036081 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:08:12 PM] 1073036081 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:08:18 PM] 1073036068 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:08:18 PM] 1073036068 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:08:18 PM] 1073036068 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:08:26 PM] 1073036017 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:08:26 PM] 1073036017 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:08:29 PM] 1073036017 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:08:30 PM] 1073036017 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:08:31 PM] 1073036195 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:08:32 PM] 1073036195 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:08:32 PM] 1073036195 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:08:54 PM] 1073036216 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:08:55 PM] 1073036216 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:08:55 PM] 1073036216 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:08:58 PM] 1073036017 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:08:58 PM] 1073036017 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:09:15 PM] Start logging on stock 4321...
[10/20/2006 2:09:15 PM] SQL statement to extract daily record on stock 4321:SELECT count(*) v_counter FROM  STOCK_COMMON_TAB,  DAILY_TRADING_TAB WHERE  DpCoID = '4321' and  DpDate >= '2006/7/1' and  DpDate < '2006/10/20' AND  DpClose <> 99999999 AND  CoID =  DpCoID AND  CoEnabled <> 'N'
[10/20/2006 2:09:15 PM] No of daily record count on stock 4321:78
[10/20/2006 2:09:15 PM] Regenerate chart on stock 4321
[10/20/2006 2:09:15 PM] Start generate X-axis label on stock 4321
[10/20/2006 2:09:16 PM] 1073036116 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:09:16 PM] End logging on stock 4321
[10/20/2006 2:09:34 PM] 1073036116 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:09:35 PM] 1073036116 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:10:56 PM] 1073036321 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
[10/20/2006 2:10:57 PM] 1073036321 Save English Image: -2147418113 . File Size: 0
[10/20/2006 2:10:57 PM] 1073036321 Save Chinese Image: -2147418113 . File Size: 0
[10/20/2006 2:11:02 PM] 1073036320 PriceChart create: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal.

Posted: Mon Oct 30, 2006 10:58 am
by Pep
Hi,

have you tried using :

Set PriceChart = Server.CreateObject("TeeChart.TChart.7")

Set TurnoverChart = Server.CreateObject("TeeChart.TChart.7")

instead of :
Set PriceChart = Server.CreateObject("TeeChart.TChart")

Set TurnoverChart = Server.CreateObject("TeeChart.TChart")

?

Having more than one TeeChart version installed you should specify the version you want to use.