Forum Replies Created
-
AuthorPosts
-
Rafał DrzewieckiParticipant
Follow up on TMS
Does your TAdvStringGrid work properly if so, what version of this component do you have?
Rafał DrzewieckiParticipantI didn’t think it would be that easy. thank you for the tip
Rafał DrzewieckiParticipantI think you forgot to attach the test application
No, the file was too large, I sent it directly to support
Rafał DrzewieckiParticipantHere is test app
Rafał DrzewieckiParticipantYes 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ł DrzewieckiParticipantHi, OnChanging and OnChange not handled:
PageControl.ActivPageIndex := 2;
PageControl.ActivPageIndex := 1;and
PageControl.ActivPageIndex = 3;
PageControl.Pages[2].Free;Rafał DrzewieckiParticipantHere you are: ac_win64.rar
Rafał DrzewieckiParticipantHow to do it to turn off only the panel BevelOuter ( with panel no border and Transparent = False )?
Rafał DrzewieckiParticipantIf use unit FastMM4 in “delphi debug mode” i get AV but i delete FastMM4 all is ok.
Rafał DrzewieckiParticipantYes, 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ł DrzewieckiParticipantI have installed AC Version 10.24 and i use Delphi XE5.
The same problem is a new application, I attach skin.
Rafał DrzewieckiParticipant'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ł DrzewieckiParticipant'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ł DrzewieckiParticipantLook this: http://youtu.be/8xsYHt-Ytsk
And enclose file:
Rafał DrzewieckiParticipantEnclose file
Rafał DrzewieckiParticipantYes 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ł DrzewieckiParticipantYes only with this skin
Rafał DrzewieckiParticipant'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