Forum Replies Created
-
AuthorPosts
-
These problems are really different, try attached file please.
Hello
You should be sure that files from old version of AlphaControls are not exists on your PC.
If you want I can connect to this PC and solve an issue remotely.
Thank you for demo, the issue was solved thanks this program 🙂
Hello, I plan to add the GroupIndex property later. 🙂
I see an issue from second post and I'll try to solve it soon.
TsDateEdit is not an analog of TDateTimePicker component.
Or you mean something other?
If you mean a skinning of controls loaded from Dll then it's possible and many discussions exists already here.
Try to search “*DLL*”
Hello and thank you for screenshot.
Please try to reproduce this problem in a new application. It's possible?
PS. This topic was moved to “Troubleshooting” part.
Hello
It's possible to change an any section in the current loaded skin in run-time :
Code:procedure TForm1.sButton1Click(Sender: TObject);
const
SectionName = 'EDIT';
var
SkinIndex : integer;
begin
SkinIndex := sSkinManager1.GetSkinIndex(SectionName);
if SkinIndex >= 0 then sSkinManager1.gd[SkinIndex].Color := clYellow;
if SkinIndex >= 0 then sSkinManager1.gd[SkinIndex].HotColor := clYellow;
sSkinManager1.RepaintForms(False);
end;'OldGrumpy' wrote:I solved it for this particular case by just editing the skin file and changing the color values for the EDIT section. It is only a small application so it is not a problem. 🙂 A really awesome solution would be: making the skin data writable at runtime so the application can change its appearance any time 🙂 (No, not loading another skin, just manipulating some bits of it)
Hello
Thank you, I see this issue and will research it.
Try to place TsSkinProvider component, I think it helps.
Alpha Buttons have OnPaint event too. 🙂
Hello
Please try to place the TsSkinProvider component on forms.
'AndreSoft' wrote:When I purchased the EurekaLog, had to install an update in which to build spent Version 7 (Build 8.1)Build number of Delphi7 is 8.1? Are you sure?
Can you show a screenshot of the “About” window please?
Раньше пакет был уже установлен?
Возможно проблема с правами в системе?
Еще, если есть уже такой файл, то нужно проверить его атрибуты – должен быть не ReadOnly.
Также могут мешать антивирус или файрвол.
These functions are for receiving of custom Color with changed HUE or Saturation.
Received color you can use in custom controls or elements where it's possible…
Hello
You can change HUE or Saturation of color using these functions :
function ChangeHue(Delta : integer; Color : TColor) : TColor;
function ChangeSaturation(Color : TColor; Delta : integer) : TColor;
These functions are declared in the sGraphUtils.pas
You uses OnPaint event?
Hello
Changing of this button will work in the next release.
Hello Ralf
This feature should be added specially. I have added it in ToDo list, but can't promise a quick implementation.
Hello
s_Today and s_WeeksTitle variables are published already and may be changed.
-
AuthorPosts