Support

Forum Replies Created

Viewing 20 posts - 4,021 through 4,040 (of 5,144 total)
  • Author
    Posts
  • in reply to: Minimizing form changes titlebar icons #46205
    Support
    Keymaster

      Hello

      This issue will be solved in the next release, I think.

      in reply to: v7.45 – Problem while restoring window #46204
      Support
      Keymaster

        Hello

        I think, in the version 7.46 this problem will be fixed.

        in reply to: how to change the skin of the form #46181
        Support
        Keymaster

          Hello

          Try this code :

          Code:
          procedure TForm1.sComboBox1Change(Sender: TObject);
          var
          IniFile : TIniFile;
          begin
          sSkinManager1.SkinName := sComboBox1.Text;
          end;

          Be sure that sSkinManager1.SkinDirectory is initialized correctly.

          And why you have added ' (internal)' in combobox items? Your project haven't internal skins with such names.

          And why you not uses a sample from the ASkinDemo project?

          in reply to: Popup menu flicker #46180
          Support
          Keymaster
            'gispos' wrote:
            PS: I’m testing Demo Version 7.45… oooh man, the solved problem with flickering on Edit controls by activate the application is now again available. šŸ™

            These issues are not linked. Maybe you can show me a demo with blinking?

            in reply to: Non-rectangular forms #46179
            Support
            Keymaster

              Hello

              Skinned forms can be non-rectangular if ExtendedBorders are used.

              But if you do not want to paint such form in skin (if you want use non-rect form common for all skins) then any third party component may be used. I think, such components exists already, in the Jedy project, for example.

              in reply to: Font Size in Popupmenu #46178
              Support
              Keymaster

                Hello

                For changing a menu font you can use the CustomMenuFont:TFont variable.

                This variable is declared in the sSkinMenus.pas unit and used for drawing of text in menus (if CustomMenuFont is not Nil).

                Example of using :

                  CustomMenuFont := TFont.Create;

                CustomMenuFont.Name := 'Comic Sans MS';

                CustomMenuFont.Style := [fsBold];



                uses sSkinMenus;
                in reply to: Images in TColumn #46176
                Support
                Keymaster

                  Hello

                  You mean arrows in the TsDBGrid component?

                  DrawColorArrow procedure used there, you can see an example of using in the acDBGrid.pas file.

                  Or maybe I not quite understand you?

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

                    Hello Giuseppe

                    I plan to check this version of DevEx, but can't do it now. I hope I'll be able to do it soon.

                    in reply to: v7.45 – Problem while restoring window #46174
                    Support
                    Keymaster

                      Hello and thank you for the demo.

                      Try to disable a minimizing animation : sSkinManager1.AnimEffects.Minimizing.Active := False;

                      Animation will not work in your case.

                      in reply to: Change Font style in sCheckListBox? #46173
                      Support
                      Keymaster
                        'IPSteven' wrote:
                        I don't know if it is bug in AlphaSkins or not but the MeasureItem() event in sCheckListBox is not firing.

                        With a regular list box you could use this event to individually adjust the height of each line as needed.

                        Serge – if your checking out this thread maybe you could comment or check it out?

                        Hello

                        Try change the style property to lbOwnerDrawVariable.

                        in reply to: v. 7.45: AV in sDirectoryEdit #46172
                        Support
                        Keymaster
                          'mol' wrote:
                          Bug is still present in 7.45 beta

                          Reasons are same as in the topic about a print dialog. I will search other systems.

                          Or maybe you can give me access to your PC for debugging?

                          in reply to: Skinning problem in form caption #46171
                          Support
                          Keymaster

                            Thank you for researching, I'll be thinking about that. šŸ™‚

                            in reply to: Timeline? #46170
                            Support
                            Keymaster

                              Hello

                              The stable release will be ready at the nearest 2-3 weeks.

                              in reply to: how to change the skin of the form #46059
                              Support
                              Keymaster
                                'Jore' wrote:
                                I want to be able to exchange the skins using a sCombobox.

                                You can find an example in the ASkinDemo project. You saw that?

                                in reply to: Popup menu flicker #46096
                                Support
                                Keymaster

                                  Hello

                                  What is version of the AlphaControls package? Can you try current ASkinDemo.exe? Such effect exists there?

                                  in reply to: Png Resource with tsbitbtn #46094
                                  Support
                                  Keymaster

                                    Try “Glyph.Assign(nil)”

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

                                      Hello and thank you for screenshots, I'll try to reproduce and improve it soon.

                                      in reply to: how to change the skin of the form #46133
                                      Support
                                      Keymaster

                                        Hello.

                                        You read the “Getting started” part in the help-file?

                                        in reply to: Custom image in title area of application #46132
                                        Support
                                        Keymaster

                                          Hello Warren

                                          TsSkinProvider component have the TitleIcon property. Try it for defining an image in the form caption, it's easiest way.

                                          in reply to: Png Resource with tsbitbtn #46131
                                          Support
                                          Keymaster

                                            Hello

                                            try such code please :

                                            Code:
                                            uses acPNG, CommCtrl;

                                            procedure TForm1.sButton1Click(Sender: TObject);
                                            var
                                            Png : TPNGGraphic;
                                            rs : TResourceStream;
                                            Ico : hIcon;
                                            begin
                                            Png := TPNGGraphic.Create;
                                            rs := TResourceStream.Create(hInstance, 'GLYF_CONFEDITOR', RT_RCDATA);
                                            Png.LoadFromStream(rs);
                                            rs.Free;
                                            sbitbtn1.Glyph.Assign(Png);
                                            Png.Free;
                                            end;

                                          Viewing 20 posts - 4,021 through 4,040 (of 5,144 total)