Search found 4 matches

by max
Wed Nov 26, 2008 2:02 pm
Forum: VCL
Topic: Problem running on server with no-one logged on
Replies: 3
Views: 3555

workaroud

ok, there is a bug somewhere. In case someone needs it, here's the workaround for my case: procedure TfrmStandardGrafik.BottomAxis_SetMinMax(AChart: TChart); /// <summary> /// workaround if Bottomaxis.automatic fails (if not logged on on server) /// </summary> var i: Integer; min, max: TDateTime; be...
by max
Wed Nov 26, 2008 12:11 pm
Forum: VCL
Topic: TeeChart copy to clipboard does not retain transparency
Replies: 1
Views: 2990

try to switch off double buffering

Try using this:

Code: Select all

procedure Tform1.OnTeeCommanderCopy(Sender: TObject);
begin
  Chart1.BufferedDisplay := False;
  Chart1.CopyToClipboardBitmap;
  Chart1.BufferedDisplay := True;
end;
by max
Wed Nov 26, 2008 12:07 pm
Forum: VCL
Topic: Problem running on server with no-one logged on
Replies: 3
Views: 3555

it is an axis scaling problem

I found out that it is an axis scaling problem. At least if I set the Bottomaxis to fixed min and max, it works. The bottom axis is a DateTime axis. It is set to autoscaling. Anyone any idea why autoscaling does not work in a scheduled task, but works when logged on ? Whats the difference, anyway? M...
by max
Mon Nov 24, 2008 5:32 pm
Forum: VCL
Topic: Problem running on server with no-one logged on
Replies: 3
Views: 3555

Problem running on server with no-one logged on

Hello, I have three programs that use TeeChart and run fine. They can be started by scheduler and then will open a database, create (among other output) some graphs and save them as .png-files and exit. (BDS2006 / Tee7; D2007 / Tee8). Now I have to run these programs on a Windows2003 Server. Everyth...