Lasse

Forum Replies Created

Viewing 20 posts - 101 through 120 (of 212 total)
  • Author
    Posts
  • in reply to: AlphaSkins v.16.16 #70348
    Lasse
    Participant

      This is Delphi 11 Alexandria issue. Your demo works fine from executable but when I build it with Alexandria, it does not. You can get both errors for example when you open your mega demo and click “Internal skins editor” button.

      • This reply was modified 4 years, 5 months ago by Lasse.
      in reply to: AlphaSkins v.16.16 #70346
      Lasse
      Participant

        I will try to find time to create demo for the first issue. The second issue is quite simple.

        in reply to: AlphaSkins v.16.16 #70338
        Lasse
        Participant

          BorderStyle = bsToolWindow is causing white border (see attachment).

          Attachments:
          You must be logged in to view attached files.
          in reply to: Time Frame for RAD Studio 11 Update Release #70336
          Lasse
          Participant

            Oh, sorry about that. It is my own control. Yes, you can remove it.

            in reply to: Time Frame for RAD Studio 11 Update Release #70329
            Lasse
            Participant

              You can make project files easily by yourself while waiting for official files.

              Here you are (see attachment). No warnings, hints, or errors.

              I created dozen project files today for Alexandria at work and I saw only minor changes in stream class parameters.

              Attachments:
              You must be logged in to view attached files.
              in reply to: Skin for Windows 11 #70299
              Lasse
              Participant

                Try combo box item lists with these new skins. Both are not highlighting the row when the mouse is over…

                in reply to: Windows 11 Dark skin with TVirtualDrawTree #70259
                Lasse
                Participant

                  Btw. another weird issue with this skin is that in a combo box the last item is not highlighted when the mouse is over.

                  in reply to: Windows 11 Dark skin with TVirtualDrawTree #70258
                  Lasse
                  Participant

                    All other skins are fine. And that Windows 11 Dark skin is also fine after that fix. Not necessarily fixed correct thou… but I see similar settings in other dark skins.

                    in reply to: Windows 11 Dark skin with TVirtualDrawTree #70253
                    Lasse
                    Participant

                      I fixed this by changing Edit controls > EDIT values like this (see attachment)… No idea, if it is correct but looks ok now.

                      Attachments:
                      You must be logged in to view attached files.
                      in reply to: Combobox not working properly in V16.00 #69955
                      Lasse
                      Participant

                        ComboBox.Clear and ComboBox.Items.Clear are two different things.

                        in reply to: TsColorBox in V16.02 with FastMM5 #69940
                        Lasse
                        Participant

                          I was able to fix this for now like this:

                          procedure TacItemsPopupForm.UpdateControls;
                          ...
                            procedure AddItem(const ACaption: string);
                           ...
                                Flat := False; // True; Lasse

                          You will see why. It will crash here:

                          procedure TCustomSpeedButton.UpdateTracking;
                          var
                            P: TPoint;
                          begin
                            if FFlat then

                          Of course this is just a temporary solution.

                          • This reply was modified 4 years, 11 months ago by Lasse.
                          in reply to: Combobox not working properly in V16.00 #69918
                          Lasse
                          Participant

                            I had exactly same issue and fixed it like this in acPopupController.pas:

                            procedure TsPopupController.AnimShowPopup(AForm: TForm; wTime: word = 0; BlendValue: byte = MaxByte);

                            h := HWND_TOPMOST; //TopWndAfter; Lasse

                            in reply to: ActionList with VirtualImageList #69426
                            Lasse
                            Participant

                              Did you check it? This is still an issue in v.15.15. Tried in Delphi 10.3.3 this time…

                              • This reply was modified 5 years, 6 months ago by Lasse.
                              in reply to: NeonNight skin is raising exception #69425
                              Lasse
                              Participant

                                I found the reason which UI element is causing this in my application. It happens when I have a title bar items aligned right and the style is bsMenu. But I still can’t repeat this in your demo.

                                So, I ended up to fix this:

                                procedure CopyByMask32(R1, R2: TRect; const Bmp1, Bmp2: TBitmap; const CI: TCacheInfo; const MaskData: TsMaskData);
                                ...
                                CacheBMP := Bmp.ScanLine[R1.Top + PosY + Y];
                                =>
                                CacheBMP := Bmp.ScanLine[Max(R1.Top + PosY + Y, 0)]; // Lasse
                                in reply to: NeonNight skin is raising exception #69352
                                Lasse
                                Participant

                                  Well, this is weird. I can’t repeat it in your demo using TsSkinSelector but in my own program I can. I have tried all skins and that is the only skin causing that error. I will try to figure out why.

                                  in reply to: Hint timing is much too fast #69308
                                  Lasse
                                  Participant

                                    Don’t remember exactly but I had to put a comment here:

                                    procedure TsAlphaHints.OnCheckTimer(Sender: TObject);
                                    begin
                                    ...
                                        // Lasse Application.HintPause := Manager.FOldHintPause;

                                    Otherwise I could not change it.

                                    in reply to: v15.13 is slow #69300
                                    Lasse
                                    Participant

                                      It is perfect now.

                                      in reply to: AV on idle #69283
                                      Lasse
                                      Participant

                                        Yeah, we are using MadExcept in our commercial products. I’ve been just lazy to add it for hobby projects.

                                        in reply to: v15.13 is slow #69277
                                        Lasse
                                        Participant

                                          Finally had time to see what is the cause. Changes in acgpBlur procedure in acgpUtils.pas unit are causing the slowness.

                                          I reverted that procedure to v15.12 and everything is fine now.

                                          • This reply was modified 5 years, 6 months ago by Lasse.
                                          in reply to: v15.13 is slow #69239
                                          Lasse
                                          Participant

                                            No, I don’t use lightning effect. It didn’t work well last time I tried it. But I will try to find time (at weekend) to find the reason for this slowness. I remember seeing some suspicious code while I was merging the version but I will see…

                                          Viewing 20 posts - 101 through 120 (of 212 total)