Forum Replies Created
-
AuthorPosts
-
BionicWaveParticipant'Support' wrote:
I think, “Application.Initialize;” must be placed before creating of any forms.
I will try that out. Thank you.
'Support' wrote:Also, try to change a type of hidden form to TDataModule. This type is specially intended for such purposes, for placing of invisible components, TTimer, TImageList, etc…
I tried that too, but TsSkinManager can not be placed on a TDataModule. So…
'Support' wrote:Can you repeat the error in separate demo, which may be debugged?
This problem only seems to become relevant, when you developed a project for a longer time, since i worked on that project for nearly a year now and never had that problem
until recently.
I also switched back to version 14.11. This reduced the exception messages to almost none.
I blame these exceptions to a good degree on my rather old Delphi version, but it seems that the combination of my Delphi version and the 14.11 version of your components
seem to work better on a Win10 installation.
I already tried to test the error with an empty project, but had no success.
So as long as it works, i have to finish the project first, as you may understand.
I will message here again if i run into another “major problem” state and will exmamine this effect a bit deeper.
Thanks for your help.
BionicWaveParticipantForget my question.
I just realised i have the source-code. Lol.
:blush:
BionicWaveParticipantSorry,
i was away the last few days.
Here is a screenshot of the problem.
As i said earlier, this line is only visible, if the parent-form is active.
thx
BionicWaveParticipantWow, didn´t notice that one.
That is exactly what i was looking for.
Thank you.
BionicWaveParticipantI have the same problem. Maybe it interferes with some other component-packs editor. Didnt look to far into it, but that is my top guess.
BionicWaveParticipantThanks for the info.
I can work with 9.20 for the time beeing.
Looking forward for the update.
April 27, 2015 at 7:04 pm in reply to: [FIXED] TsSpeedbutton – no redraw on change of caption #53328BionicWaveParticipant'Support' wrote:Hello! This issue will be resolved in the nearest release, thank you for the demo.
Your welcome.
Actualy this issue seems to be fixed with the 10.03 update.
Many thanks for that.
BionicWaveParticipant'ozok' wrote:Thanks for the tip, it indeed stopped blinking. I hope you can reproduce that problem because it is so annoying.
PS. I've just installed 9.20 but skinmanager still show version as 9.19.
Just remove the components-package from the palette and reinstall the dpr files again. That should work.
BionicWaveParticipant'aballiva' wrote:Yesterday, I was trying to use a Bitmap Glyph, to replace the Standard Thumb, but I want to use a “transparent” image.
I Don't know how is the correct image format, or what property of component need to use.
What do you mean with “Standard Thumb”?
In which component do you want to use a bitmap glyph?
If you want to use images with buttons:
The easiest way to use transparent images is using a TAlphaImageList (under AlphaTools) and
adding PNG-images to the list.
Now you can use a TsBitBtn, which you can connect by setting the property “Images” to
the TAlphaImageList. With the ImageIndex you can choose what image to show on the button.
BionicWaveParticipantIt works for me if i do the following:
a) Delete all indexes and items:
Code:imgLst.Clear;
imgLst.Items.Clear;😎 Add the amount of items i want to be in the list with a dummy-picture:
Code:for i:=0 to sl.count-1 do
begin
with TsImgListItem(imgLstBlocks.Items.Add) do
begin
ImageFormat := ifPNG;
PixelFormat := pf32bit;
ImgData.LoadFromFile(dummy);
end;
end;c) Delete all indexes and items again:
Code:imgLst.Clear;
imgLst.Items.Clear;d) Now i can load my images into the list and everything works as expected.
I found something funny.
1) Drop a imagelist onto your form.
2) Load some icons in designtime to the list, say 5.
3) Try to delete and load more then 5 icons at runtime, lets say 10.
4) The last step wont work. But you can see that at least 5 icons were loaded, the last 5 icons
you tried loading are missing.
That lead to the steps a) to c) i mentioned above.
BionicWaveParticipant'Support' wrote:Try the TsSpeedButton component with ButtonStyle property defined to tbsDropDown
That works perfectly. Many thanks.
-
AuthorPosts