Jump to content
Software FX Community

voostone

Members
  • Posts

    8
  • Joined

  • Last visited

Posts posted by voostone

  1. I called the RecalcScale method, but the result is 0.

    Ll_iy =chart.object.Series(0).Yvalue(1) //Ll_iy equals the value of the chart

    chart.object.ValueToPixel(Xvalue, Ll_iy, Ll_rx, Ll_ry, 0)

    the method i called is correct??

    i don't know the Xvalue..So i try 0, 1, 200 and so on..

  2. I download a demo VB source. It works without problem.

    When I transfer the function in the file of cfxocx.bas

    into PB(powerbuilder). It doesn't work correctly.

     

    Function CHART_LOWORD(ByVal l As Long)

      l = l And &HFFFF&

      If (l > 32767) Then 'why it's 32767? In PB the value is very big..

      l = l - 65536

      End If

      CHART_LOWORD = CInt(l)

    End Function

     

    Thank you very much!

     

     

×
×
  • Create New...