Forum Replies Created
-
AuthorPosts
-
October 2, 2019 at 12:11 pm in reply to: Access Violation when GroupBoxStyle is gsCard (AC 14.31) #61444HeDiBoParticipant
Can you send me this Dfm-form, please?
It is awfully big (> 6 MB ). I could send it to you by private mail if you want.
HeDiBoParticipantYou should know that Iām searching a way to skin it completely latest 2-3 years.
But without success, unfortunately.That’s a shame. Maybe you should not try then. Just (optionally) show the dialog in native windows style. Users would be used to that. As it is now, it is a horrible mix.
PS. As you can see above, the message quotations look very large.
HeDiBoParticipantThe following code will solve the problem:
s := Text; {$ENDIF} if s = '' then begin (*** DB ***) Value := 0; (*** DB ***) s := Text; (*** DB ***) end{if}; (*** DB ***) case FPos of
The spin buttons still don’t do anything, but that’s probably OK.
October 1, 2019 at 4:50 pm in reply to: Access Violation when GroupBoxStyle is gsCard (AC 14.31) #61328HeDiBoParticipantThe bug is still present in 14.32
HeDiBoParticipantCould you have another look at it?
HeDiBoParticipantThings seem to be much better now.
I reattached the project, so you can use it, if you didn’t yet.
I noticed a bug in TheFrog skin. The horizontal line in the group header is still visible. Maybe this problem is in other skins too, I did not test it.Attachments:
You must be logged in to view attached files.HeDiBoParticipantI’m searching ways for making it.
In 14.32 still no change š¢
HeDiBoParticipantAny progress ā
HeDiBoParticipantI cannot reproduce it anymore.
For now, consider it solved.
HeDiBoParticipantIf TsButton.ShowFocus is false, focus is still shown. In fact, I could not find any difference between ShowFocus = True and ShowFocus = False.
HeDiBoParticipant'Support' wrote:I'm searching ways for making it.
In 14.31 still no change
HeDiBoParticipant'Support' wrote:I will fix it in the v14.30, form will not be closed if “ClosingForbide” used.
It's solved now š
HeDiBoParticipantHi Serge,
Do you have any thoughts about the suggested implementation for hints on disabled controls? š
HeDiBoParticipantYou can disable the unwanted close by modifying the code in the popup form as follows:
Code:with GetIntController do begin
ClosingForbide(Self);
end{with};
AbErr_Popup_Sub := TAbErr_Popup_Sub.Create(Self);
AbErr_Popup_Sub.ShowModal;
with GetIntController do begin
ClosingAllow(Self);
end{with};
Self.Close;but that does not work for clicks on the title bar of the TAbErr_Popup_Sub window.
HeDiBoParticipantThis problem has to be solved, Serge. It's no option not to use FastMM4.
HeDiBoParticipant'Support' wrote:I'm sorry Dick, my message was addressed to SzakiLaci.
I can send you new files where your reported memory leak is removed (by PM).
That's not necessary, I'll await the next release.
HeDiBoParticipantFastMM4_FullDebugMode.dll
You must use FastMM4 as the first line in uses in dpr file:
Code:program SomeProgram;
uses
FastMM4,
MidasLib,
Vcl.Forms,I use these options:
[attachment=9410:FastMM4Options.zip]
My memory leak occurs when I change a skin programmatically.
HeDiBoParticipant'Support' wrote:Hello
Do you mean a color of font or other properties? I'm trying to repeat it but without success.
Maybe I'm doing wrong something, I will try to test it more today.
Here's a test project. [attachment=9405:acSBBug.zip]
Try to change the font size of the button with text “Caption at 10 points” to say 12. Nothing seems to happen
HeDiBoParticipant'Support' wrote:I think, buttons without skins should use the ShowFocus property only.
They should not depend from TsSkinManager.ButtonsOptions.ShowFocusRect property if have standard look.
How you think?
I made the mistake thinking ShowFocusRect was a standard TButton property. What you're saying is correct. Default the ShowFocusRect property to False will do the trick.
HeDiBoParticipant'Support' wrote:Default value of this variable will be changed to False in the nearest release.
Maybe you could make an effort to better skin the dialogs when UseLatestCommonDialogs is True.
-
AuthorPosts