- This topic has 8 replies, 3 voices, and was last updated 7 years, 9 months ago by
Support.
-
AuthorPosts
-
March 12, 2017 at 7:16 pm #56315
Support
KeymasterThank you for the message. I will check and I will try to improve it.
If you have a test-application with error and you can share it, this would be great.
March 13, 2017 at 9:55 am #56319Whookie
Participant'Support' wrote:Thank you for the message. I will check and I will try to improve it.
If you have a test-application with error and you can share it, this would be great.
It is a rather big project and I'm on a tight schedule so maybe next month.
To fix my problem do at least the following:
Code:…
Contrib[A].Data := Data;
Data := PContributorList(NativeUInt(Data) + DWord(CSize));
==========March 13, 2017 at 10:31 am #56320Support
KeymasterI have changed it to this:
Code:…
Contrib[A].Data := Data;
Data := PContributorList(PAnsiChar(Data) + CSize);What you think about the “PAnsiChar” in this case?
March 18, 2017 at 1:59 pm #56328Whookie
Participant'Support' wrote:What you think about the “PAnsiChar” in this case?
This will work since you are using a pointer type now.
I think you have some backward compatibility issues to take into account (D2007 and lower?) so it's sort of a good compromise (otherwise I would use
Code:Data := PContributorList(PByte(Data) + CSize);instead).
BTW it would be really great to have a selectable background color in the Imagelist window (as I'm working with styles I always have lists with pure white icons and they are invisible)!
March 22, 2017 at 12:54 pm #56340Support
Keymaster'Whookie' wrote:BTW it would be really great to have a selectable background color in the Imagelist window (as I'm working with styles I always have lists with pure white icons and they are invisible)!I will try to do it in the v12.03
July 18, 2017 at 2:40 pm #56917Whookie
Participant'Support' wrote:I will try to do it in the v12.03
Hi, I went to the current version (12.12) and found that you have
* Added support of the BkColor property in the TsAlphaImageList component
in 12.03 but it seems as it isn't what I was after.
So I thought a show you a screenshot of what I'm struggling with:
[attachment=8388:imagelist_win.jpg]
The mouse hovers over image 5 (cursor not shown) so this is the only way to see what image is stored there.
What I meant was something like this:
[attachment=8392:imglst_bk.JPG]
I hacked that into your dialog and attached that project too (you need to remove “.pas” though and unpack it).
July 18, 2017 at 3:01 pm #56918Stephane Senecal
ParticipantI think it was a typo. I'm quite sure he meant 12.13 since that's the number of the next version.
Stephane Senecal
CIS Group
Delphi programmer since 2001July 21, 2017 at 3:50 am #56928Support
KeymasterHello, Whookie
I think, you need a possibility to change a color of icons background in this dialog. Right?
I can add such ColorSelector there.
-
AuthorPosts
- You must be logged in to reply to this topic.