RE: [DUG]: Messagbox again

2003-07-09 Thread Boyd, Conor
Without looking at it more closely, you might have to bypass the Delphi MessageBox function, and use the Windows API functionality directly. :-( Good luck, C. -Original Message- From: Alistair George [mailto:[EMAIL PROTECTED] Hi anyone know how to force a messagebox to the front in Wind

Re: [DUG]: TChart Set LeftAxis Labels

2003-07-09 Thread Todd Martin
Hi Tracey   You're passing a constant string _expression_ ('any old string') to GetAxisLabel() which expects a variable.   Try this var   AxisLabel : String; begin   GetAxisLabel(LeftAxis, HorizBarSeries, 1,AxisLabel);   ShowMessage('The label axis is ' + AxisLabel); end;   Todd. - Ori

[DUG]: Messagbox again

2003-07-09 Thread Alistair George
Hi anyone know how to force a messagebox to the front in WindowsXP? Thanks, Al+ --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz To UnSub, send email

RE: [DUG]: TChart Set LeftAxis Labels

2003-07-09 Thread Allan Vergara
Signiture: procedure GetAxisLabel(Sender: TChartAxis;  Series: TChartSeries; ValueIndex: Integer; var LabelText: string);   Use: GetAxisLabel(LeftAxis, HorizBarSeries, 1, 'any old string');   See anything wrong here?   Your passing 'any old string' (which is a const) and catching it as a var

RE: [DUG]: TChart Set LeftAxis Labels

2003-07-09 Thread Chris Veale
its bloody stupid actually, but what you have to do is set "any old string" to a var name     const     tmp:string="any old string";   begin   getaxislabel(LeftAxis, HorizBarSeries, 1,tmp); end; -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Tr

Re: [DUG]: TChart Set LeftAxis Labels

2003-07-09 Thread Chris Reynolds
I think getAxisLabel is something TChart calls itself so you probably shouldn't be calling it. On Thu, 10 Jul 2003 14:08:17 +1200, Tracey Maule <[EMAIL PROTECTED]> wrote: Hi I have dynamically created a Chart, with 3 HorizBarSeries which are mbStacked. What I now need to figure out is how to

[DUG]: TChart Set LeftAxis Labels

2003-07-09 Thread Tracey Maule
Hi   I have dynamically created a Chart, with 3 HorizBarSeries which are mbStacked.   What I now need to figure out is how to set the Left Axis labels to display the contents of another field returned by my query for that record.   does anyone know how to do this without affecting the data v

RE: [DUG]: ReportBuilder differences

2003-07-09 Thread David at McNeill Computers
Standard definitely can do any DB based reports (otherwise what would be the point of the product), it doesnt need DADE for that. Also you dont get source with Standard, but you do with the more expensive options. I bought 6, then they went to 7 fairly quickly, and wanted another $70 US DaveMc