Support

Forum Replies Created

Viewing 20 posts - 4,001 through 4,020 (of 5,144 total)
  • Author
    Posts
  • in reply to: v7.47, D2007, DevEx 2011 – cannot install #46346
    Support
    Keymaster

      Hello

      I'm sorry for a trouble.

      Please open the sThirdParty.pas file and change “acLFPainte_r” to “acLFPainter”.

      I can't say why “_” is there, all files are updated now.

      in reply to: Graphics/icons library suggestions #46345
      Support
      Keymaster
        in reply to: DevExpress v2011 vol 1.3 compatibility #46341
        Support
        Keymaster

          Hi

          I will research DevExpress changes soon, and I will have more information.

          in reply to: Skinning of own components #46340
          Support
          Keymaster
            'HeDiBo' wrote:
            You may need some extra work, for instance in the OnPaint event. I'm lost here 😮

            This title will not be drawn automatically.

            Ralfii, if you want we can talk later via ICQ or Skype, maybe some solution will be found.

            (Nearest several weeks I'll be on vacation).

            in reply to: DevExpress v2011 vol 1.3 compatibility #46320
            Support
            Keymaster

              Can we connect via TeamViewer tool?

              in reply to: DevExpress v2011 vol 1.3 compatibility #46312
              Support
              Keymaster

                Try this changed file please.

                in reply to: DevExpress v2011 vol 1.3 compatibility #46303
                Support
                Keymaster
                  'Giuseppe' wrote:

                  Hi Serge,

                  installed with no truble, but DevExpress controls still no skinned,

                  same as per previus images …

                  regards,

                  Giuseppe

                  Native style should be Off by default, can you check it?

                  in reply to: DevExpress v2011 vol 1.3 compatibility #46301
                  Support
                  Keymaster

                    Sorry for a trouble, try the updated file please.

                    in reply to: DevExpress v2011 vol 1.3 compatibility #46308
                    Support
                    Keymaster

                      Try attached file please.

                      in reply to: Autosize truncates TsLabelFX caption #46297
                      Support
                      Keymaster

                        Thank you. An issue will be solved in the next release, I think.

                        in reply to: DevExpress v2011 vol 1.3 compatibility #46296
                        Support
                        Keymaster
                          'Giuseppe' wrote:
                          pls let me know when You think to look at this new version

                          At the end of August, I think.

                          in reply to: Popup menu flicker #46279
                          Support
                          Keymaster

                            Try the AlphaControls v7.46

                            This topic will be moved to “Troubleshooting” soon.

                            in reply to: Tip: How to avoid flicker when opening forms #46278
                            Support
                            Keymaster

                              Thank you! Also, TsSkinProvider component should be dropped on form in design-time.

                              in reply to: Autosize truncates TsLabelFX caption #46272
                              Support
                              Keymaster
                                'IPSteven' wrote:
                                Were you able to reproduce the problem?

                                No, unfortunately. Can you show an example please?

                                in reply to: v. 7.45: AV in sDirectoryEdit #46271
                                Support
                                Keymaster

                                  I have already a system where I can reproduce a problem.

                                  This issue will be solved in the next release.

                                  in reply to: Images in TColumn #46270
                                  Support
                                  Keymaster
                                    'Support' wrote:

                                    Thank you.

                                    I have changed your code, look it please [

                                    Code:
                                    procedure TFMain.sDBGrid1DrawColumnCell(Sender: TObject; const Rect: TRect;
                                    DataCol: Integer; Column: TColumn; State: TGridDrawState);

                                    var
                                    Png : TPNGGraphic;
                                    Ndx : integer;

                                    function GetColsWidth: Integer;
                                    var I: Integer;
                                    begin
                                    Result := 0;
                                    for I := 0 to Column.Index do begin
                                    Result := Result + TDBGrid(Sender).Columns.Items.Width;
                                    end;
                                    Result := Result + 10 + (Column.Index);
                                    end;

                                    begin
                                    with TDBGrid(Sender) do begin
                                    if Column.Index = nColumn then begin
                                    Png := TPNGGraphic.Create;
                                    try
                                    Ndx := integer(lDesc);
                                    DataModule1.sAlphaImageList.Items[Ndx].ImgData.Seek(0, 0);
                                    Png.LoadFromStream(DataModule1.sAlphaImageList.Items[Ndx].ImgData);
                                    if (RowHeights[0] < Png.Height + 4) then RowHeights[0] := (Png.Height + 4);
                                    Canvas.Draw((GetColsWidth – Png.Width),(RowHeights[0] – Png.Height) div 2, Png);
                                    finally
                                    Png.Free;
                                    end;
                                    end
                                    else DefaultDrawColumnCell(Rect,DataCol,Column,State);
                                    end;
                                    end;

                                    TBitmap can't draw a Png with transaprency, you should use TPNGGraphic here.

                                    in reply to: Images in TColumn #46269
                                    Support
                                    Keymaster

                                      Thank you.

                                      I have changed your code, look it please [

                                      Code:
                                      procedure TFMain.sDBGrid1DrawColumnCell(Sender: TObject; const Rect: TRect;
                                      DataCol: Integer; Column: TColumn; State: TGridDrawState);

                                      var
                                      Png : TPNGGraphic;
                                      Ndx : integer;

                                      function GetColsWidth: Integer;
                                      var I: Integer;
                                      begin
                                      Result := 0;
                                      for I := 0 to Column.Index do begin
                                      Result := Result + TDBGrid(Sender).Columns.Items.Width;
                                      end;
                                      Result := Result + 10 + (Column.Index);
                                      end;

                                      begin
                                      with TDBGrid(Sender) do begin
                                      if Column.Index = nColumn then begin
                                      Png := TPNGGraphic.Create;
                                      try
                                      Ndx := integer(lDesc);
                                      DataModule1.sAlphaImageList.Items[Ndx].ImgData.Seek(0, 0);
                                      Png.LoadFromStream(DataModule1.sAlphaImageList.Items[Ndx].ImgData);
                                      if (RowHeights[0] < Png.Height + 4) then RowHeights[0] := (Png.Height + 4);
                                      Canvas.Draw((GetColsWidth – Png.Width),(RowHeights[0] – Png.Height) div 2, Png);
                                      finally
                                      Png.Free;
                                      end;
                                      end
                                      else DefaultDrawColumnCell(Rect,DataCol,Column,State);
                                      end;
                                      end;

                                      in reply to: Popup menu flicker #46208
                                      Support
                                      Keymaster

                                        I have made many tests, but a flicker is not existing now. (Windows 7 x64, all updates).

                                        You are sure that version of the demo is 7.45? Aero is enabled?

                                        Maybe you can show me this?

                                        Earlier, I saw a blinking in old version, but now this issues must be solved already.

                                        in reply to: Dialog Skinning #46207
                                        Support
                                        Keymaster

                                          Also, in the next release will be added support of new skinsection : DIALOGTITLE

                                          If this section exists in a skin then dialog titles will be drawn using DIALOGTITLE skinsection.

                                          in reply to: Images in TColumn #46206
                                          Support
                                          Keymaster

                                            Pedro-Juan, can you provide an example? How you draw this arrow?

                                          Viewing 20 posts - 4,001 through 4,020 (of 5,144 total)