Forum Replies Created
-
AuthorPosts
-
Rafał Drzewiecki
ParticipantFollow up on TMS
Does your TAdvStringGrid work properly if so, what version of this component do you have?
Rafał Drzewiecki
ParticipantI didn’t think it would be that easy. thank you for the tip
Rafał Drzewiecki
ParticipantI think you forgot to attach the test application
No, the file was too large, I sent it directly to support
Rafał Drzewiecki
ParticipantHere is test app
Rafał Drzewiecki
ParticipantYes ofcurse, This procedure is simple to write but you have to remember about it. This is only for changing tabs programmatically. It is necessary to write one more for TabSheet.Free;
Rafał Drzewiecki
ParticipantHi, OnChanging and OnChange not handled:
PageControl.ActivPageIndex := 2;
PageControl.ActivPageIndex := 1;and
PageControl.ActivPageIndex = 3;
PageControl.Pages[2].Free;Rafał Drzewiecki
ParticipantHere you are: ac_win64.rar
Rafał Drzewiecki
ParticipantHow to do it to turn off only the panel BevelOuter ( with panel no border and Transparent = False )?
Rafał Drzewiecki
ParticipantIf use unit FastMM4 in “delphi debug mode” i get AV but i delete FastMM4 all is ok.
Rafał Drzewiecki
ParticipantYes, but I make a mistake in options “Allow Aero bluring (black pixels are not blured)” I have to uncheck and skin is ok. Sorry
Rafał Drzewiecki
ParticipantI have installed AC Version 10.24 and i use Delphi XE5.
The same problem is a new application, I attach skin.
Rafał Drzewiecki
Participant'Support' wrote:Hello!
Thank you for demo-apps. I have made some changes, can you check it? Do you have a package sources?
Yes, I have sources. My email lcdk@lcdk.pl
Rafał Drzewiecki
Participant'RafaĆ wrote:Look this: http://youtu.be/8xsYHt-Ytsk
And enclose file:
-> Secound bug
When SkinMenager.AnimEffects.Minimizing
– Active = True (is error)
– Active = False (no error)
Rafał Drzewiecki
ParticipantLook this: http://youtu.be/8xsYHt-Ytsk
And enclose file:
Rafał Drzewiecki
ParticipantEnclose file
Rafał Drzewiecki
ParticipantYes i send you code with exe,
but problem is in this code:
procedure TfRaflo.FormResize(Sender: TObject);
begin
TitleBar.Items[1].Caption := 'Wymiary Formy: ' + IntToStr(fRaflo.Width) + ' x ' + IntToStr(fRaflo.Height) + ' SkinManager ' +
SkinManager.Version;
end;
Rafał Drzewiecki
ParticipantYes only with this skin
Rafał Drzewiecki
Participant'Support' wrote:Hello
Why you wrote about the sFrameAdapter?
Can you show a demo with sources, please?
Source:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, sButton, sSkinManager, sDialogs;
type
TForm1 = class(TForm)
sSkinManager1: TsSkinManager;
sButton1: TsButton;
procedure sButton1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.sButton1Click(Sender: TObject);
begin
sShowMessage('Wrong draw');
end;
end.
New project + (add) sSkinMenager + (skin) AndroidOS + sDialogs
Important I get bad skin only when i run application in delphi 7. When I run application without Delphi, it is ok. When i run procedure sShowMessage with sFrameAdaptor i get good skin. (Run in Delphi)
-
AuthorPosts