Re: Delphi 2007 Glass

2007-04-07 Thread Jeremy North
When using glass you need to set DoubleBuffered to True for the form and all controls that will appear on the glass. cheers, Jeremy > It seems simple enough. On my form I changed "SheetOfGlass" to TRUE… > compile and run. > > My form looks glassy, but nothing draws right. Black text is completetl

3D XYZ Columnar Graphing Component needed

2007-04-07 Thread John W Wilson
I'm looking for a 3rd party tool which will give me columnar 3D XYZ charting. This is not the same as a 3D series bar chart, but a 3D XYZ plot using cones to represent the Z value. I can plot 'square' columns, but not cones. Any one got any suggestions? Regards John Wilson ___

RE: vcl runtime

2007-04-07 Thread Darren McBride
Cornel, If you have 'Runtime Packages' ticked on the 'Packages' tab of your project it will require any packages used by the application to be available on the target machines. Regards, Darren -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cornel Rebege

Re: vcl runtime

2007-04-07 Thread Francois PIETTE
In the project options, in the packages tab, check (or uncheck) the "build with runtime packages" and edit the list of packages you want to be used at runtime. Any package not listed there will be compiled into your application. If you uncheck "build with runtime packages" then your application

Re: Installing third part ActiveX controls in Delphi 2007

2007-04-07 Thread Francois PIETTE
Using D2007, first create a new empty package and let it open in the project manager (or just open an existing packge). Then import the ActiveX and you'll see a new checkbox allowing you to add the created component in the package you've opened. For the palette page where the component is insta

Re: Delphi 2007 Glass

2007-04-07 Thread Francois PIETTE
For each problem you see, enter a QC report (http://qc.codegear.com). The most important is to have the steps needed to reproduce. Try to keep those steps as simple as possible, making the shortest possible application showing the problem. Be sure to enter the best description possible. Make it

Re: Delphi 2007 Glass

2007-04-07 Thread Jeremy North
> For each problem you see, enter a QC report (http://qc.codegear.com). Don't do this unless you have already set DoubleBuffered to true for the form and the controls and the controls still don't paint correctly. Using glass, must use DoubleBuffered. __