RE: [DUG]: Setting up the # of drop down rows from a WINDOWS Dialog Control

1999-04-06 Thread Dennis Chuah
Chris, I sort of worked something like that out looking at the D4 source code for the Combo Box. I came up with this bit of code below. I was doing this as part of my new Open Dialogs for a project. The project adds combos, checkboxs, and groups to the open dialogs. Have you considered

RE: [DUG]: Setting up the # of drop down rows from a WINDOWS Dialog Control

1999-04-06 Thread Chris Crowe
Sounds and Looks like a far easier method than what I did. I might even convert to that since I only want to add mainly group box's with some controls, and check box's. Thanks Chris Christopher Crowe (Software Developer) Microsoft MVP, MCP Adrock Software Byte Computer Software LTD P.O Box

RE: [DUG]: Very Strange Quick Report

1999-04-06 Thread Patrick Dunford
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Not to me :) A detail band will be generated for every single record in your datasource (this is normal), quickreport probably does this even if the band height is set to 0. I don't know how it saves the QRP file, but presumably it must have an

[DUG]: Installing components D4

1999-04-06 Thread Laurie Bisman
Has anyone had any problems installing simple components in D4? I have a TCard component that I have installed in D3, but when I try to install the .DCU file in D4, I get a fatal error that the .PAS file is missing! Failing that (it may not be D4 compatible) does anyone know of a D4 CARD

Re: [DUG]: Installing components D4

1999-04-06 Thread Peter Hyde
Laurie wrote: I have a TCard component that I have installed in D3, but when I try to install the .DCU file in D4, I get a fatal error that the .PAS file is missing! The DCUs are not compatible. You need a D4 DCU, or the PAS file. Failing that (it may not be D4 compatible) does anyone

[DUG]: Changing TeeChart Series at run Time

1999-04-06 Thread Jeremy Coulter
Hi all. I am just playing around with TeeChart at the moment, and I was wondering if there is a way to set acharts series at runtime so as to change it from a Line to a Bar or to a Pie on the fly Thanks, Jeremy Coulter (chief software engineer)Visual Software SolutionsChristchurch,

RE: [DUG]: Changing TeeChart Series at run Time

1999-04-06 Thread Chris Crowe
Easily Jeremy, you can't just change the type, since you are creating a specific data type. The demos's show you how. Basically you just fill the series with the values for each type and then show each series. Chris Christopher Crowe (Software Developer)Microsoft MVP, MCPAdrock

Re: [DUG]: Changing TeeChart Series at run Time

1999-04-06 Thread James
Quoting Jeremy Coulter [EMAIL PROTECTED]: Hi all. I am just playing around with TeeChart at the moment, and I was wondering if there is a way to set acharts series at runtime so as to change it from a Line to a Bar or to a Pie on the fly Thanks, Jeremy Coulter (chief software

Re: [DUG]: Tricky dicky bitmap format

1999-04-06 Thread Nic Wise
bitmap.HandleType := bmDIB; try setting this to something other than bmDIB (Device Independant Bitmap) - from memory, DIB's are not always well supported, try and see if you can save it 'raw'. Nic --- New Zealand

[DUG]: Tricky dicky bitmap format

1999-04-06 Thread Alistair George
Well RAW didnt work, but heres some useless information that you could categorise under the 'Jammy' type: if bitmap.PixelFormatpf24bit then bitmap.PixelFormat:=pf24bit; {ripleys believe it or not - works} Alistair+ ---