Search found 2 matches

by hare
Mon Nov 03, 2008 3:26 am
Forum: C, C++, C#
Topic: Using with Borland C++ Builder 5
Replies: 3
Views: 19999

thanks a lot..
it works after I set NumCurves = 1. Looks like the dll is not handling this kind of exception..
by hare
Fri Oct 31, 2008 10:17 am
Forum: C, C++, C#
Topic: Using with Borland C++ Builder 5
Replies: 3
Views: 19999

Using with Borland C++ Builder 5

Hi,

I am trying to use the dplotlib.dll in BorlandC++.
I set the preferences as:

memset(&dplot,0,sizeof(DPlot));
dplot.Version = DPLOT_DDE_VERSION;
dplot.DataFormat = DATA_XYYY;
dplot.MaxCurves = 1;
dplot.MaxPoints = NP;
dplot.NumCurves = 2;
dplot.Scale = SCALE_LINEARX_LINEARY;
dplot ...