Forum Replies Created
-
AuthorPosts
-
SpeedTIParticipant
Do not.
See attached image please.Thank You.
Attachments:
You must be logged in to view attached files.Regards
Valdir SolaSpeedTIParticipantThanks for the tip, I’ll take a look.
Regards
Valdir SolaSpeedTIParticipantI just saw that this possibility already exists. Please disregard.
Regards
Valdir SolaSpeedTIParticipantIt is true Stephane, its placement is correct, and I withdraw the comment from my suggestion, thank you, however, in my case, the first tab of the pagecontrol is of the Menu type, and I need it to be smaller in size than the other tabs, reason so I made this suggestion.
Regards
Valdir SolaJune 13, 2020 at 3:31 pm in reply to: Access Violation loading TitleSkin property upon IDE start (AC 15.08) #68963SpeedTIParticipantSorry, the error generated was due to my failure.
Regards
Valdir SolaSpeedTIParticipantSo as I understand it, the transition effect between the tabs has been replaced by the effect on the content of the tabs, is that it?
- This reply was modified 4 years, 5 months ago by SpeedTI.
Regards
Valdir SolaJune 12, 2020 at 4:35 am in reply to: Access Violation loading TitleSkin property upon IDE start (AC 15.08) #68944SpeedTIParticipantIn version 15.09
Regards
Valdir SolaJune 12, 2020 at 4:05 am in reply to: Access Violation loading TitleSkin property upon IDE start (AC 15.08) #68942SpeedTIParticipantI had the same problem
Regards
Valdir SolaSpeedTIParticipantI forgot to mention that the ComboBox on this Skin is bigger (height) than the EditBox for example.
- This reply was modified 4 years, 5 months ago by SpeedTI.
Regards
Valdir SolaSpeedTIParticipantExact!
Regards
Valdir SolaSpeedTIParticipantI performed the procedure, but it did not solve the problem related to the focus on the button.
Please click on the link to watch the video where I tried to demonstrate what happens when the mouse is moved over the button. See the problem related to the focus on the button.Thank You
Regards
Valdir SolaSpeedTIParticipantSpeedTIParticipantI made this change and apparently resolved:
constructor TsLayout.Create(AOwner: TComponent); begin
inherited;
SkinData.SkinSection := ‘TRANSPARENT’;
BevelOuter := bvNone;
Ctl3D := False;
ShowCaption := False;
ParentCtl3D := False;
ParentFont := False;
// Although the following would make sense, after the Create event
// … apparently the BevelKind property is reset again during load.
// … So this logic is moved to after the Loaded event.
BevelKind := bkFlat;
end;procedure TsLayout.Loaded;
begin
inherited;
// Moved from Create event:
BevelKind := bkNone;
end;Regards
Valdir SolaSpeedTIParticipantIt’s a great implementation.
Thank you.Regards
Valdir SolaSpeedTIParticipantHello!
I did not say that the TPanel component configured in this way is better or worse (I don’t particularly like to use it), I am referring to practicality, besides that it does not have the transparency feature itself. The TPanel after being inserted, needs several configurations to fulfill this purpose. If there was a TLayout it would simply be added to the Form without requiring any adjustment, not to mention that it should be more “light” as I said earlier.Regards
Valdir SolaSpeedTIParticipantI put it manually in the Form’s OnShow event and solved the problem
procedure TfrmClientes.FormShow (Sender: TObject);
begin
with frmGeral.AdvOfficePagerOfficeStyler1.TabAppearance do begin
Font.Size: = 10;
end;
end;Regards
Valdir SolaSpeedTIParticipantIn the same way as it would occur in a TImage
Regards
Valdir SolaSpeedTIParticipantThe font is changed in the TAdvOfficePagerOfficeStyler component in the TabAppearance-> Font property
Regards
Valdir SolaSpeedTIParticipantYes, it would be better if only the cursor was changed.
Regards
Valdir SolaSpeedTIParticipantThanks for the changes, however I would like to report some problems:
When the mouse pointer is over the button, its edges are visible. There could be some property to control this. They could have left it as is, including only the choice for the mouse cursor.
When the mouse pointer leaves the button, the focus remains and is only removed when the pointer is placed over the text box.
Thank you!- This reply was modified 4 years, 6 months ago by SpeedTI.
Attachments:
You must be logged in to view attached files.Regards
Valdir Sola -
AuthorPosts