Support

Forum Replies Created

Viewing 20 posts - 4,421 through 4,440 (of 5,144 total)
  • Author
    Posts
  • in reply to: sSpeedButton demo question! #42750
    Support
    Keymaster

      You must use AlphaImageLists with multi-glyphs and sSpeedButton.Numglyphs must be changed to 2
      You did it?

      in reply to: Getting colour of skinned TPanel #42749
      Support
      Keymaster

        Hello

        You can try this code

        CODE
        Color := TColor(SendMessage(Panel.Handle, SM_ALPHACMD, MakeWParam(0, AC_GETCONTROLCOLOR), 0))


        (!) uses sMessages;

        But using TsPanel is always more preferably, this control especially optimized for work with AlphaSkins.
        For the TsPanel may be used this function : Color := GetBGColor(sPanel1.SkinData, 0); (uses sCommonData)

        in reply to: BUG with TwwDBGrid from Woll2Woll #42748
        Support
        Keymaster

          Hello, I'm researching it now.

          in reply to: BUG with TsPageControl #42747
          Support
          Keymaster

            This problem is linked with animation of pages changing. Deactivate an animation temporary (SkinManager.AnimEffects.PageChanging.Active := False)
            The problem will be solved in the AlphaControls v7 soon.

            in reply to: AC 6.22 Demo: Stack overflow on app start #42746
            Support
            Keymaster

              Hi

              QUOTE (Anderson Peterle @ Jun 1 2010, 05:41 PM) <{POST_SNAPBACK}>
              I'm a new registered user and waiting for new version of converter too!!!

              What you expect to see in this new version?

              in reply to: acDBGrid.pas TNTControls #42745
              Support
              Keymaster

                Thank you very much, i'll check it

                in reply to: TMenuItem at runtime #42744
                Support
                Keymaster

                  Hello
                  The answer exists already on this forum http://www.alphaskins.com/forum/index.php?…ost&p=21510

                  sSkinManager1.SkinableMenus.HookPopupMenu(sPopupMenu1, True);
                  Menu items, created in the run-time, must be updated manually in old versions of the package.

                  Btw. Which version of AlphaControls is used? Menus must be updated automatically in latest versions.
                  And which control is owner of your menu?

                  in reply to: AlphaSkins Ver 6.45 and QuickReport 5.01 #42727
                  Support
                  Keymaster

                    Hello
                    QuickReport preview will be supported in the AlphaControls v7 soon.

                    in reply to: Uninstalling Alpha Controls #42672
                    Support
                    Keymaster

                      Hello

                      It's enough to replace all files from the package (remove old and copy new files from Zip) and rebuild two Dpk files usually :
                      1. acntD*_R.dpk – Build
                      2. acntD*.dpk – Install (if you will receive a message about a wrong Entry point here, then just ignore this error messages and click “Inctall” again).

                      in reply to: skin a dll form #42670
                      Support
                      Keymaster

                        Hello
                        You saw other topics related to using AlphaControls and DLL's?
                        Can you show a demo, how you call a form from Dll?

                        in reply to: Light monochrome skins #42640
                        Support
                        Keymaster

                          Hello!

                          Thank you for suggestion, but SkinManager.Saturation property was made specially for this purpose..

                          in reply to: sSpeedButton demo question! #42639
                          Support
                          Keymaster

                            Hello
                            Images in the button must be changed automatically if state of the button is changed.
                            Fading effect will be occured automatically if buttons animation is allowed and used.

                            in reply to: Suggestion : two patches #42638
                            Support
                            Keymaster

                              Thank you!

                              in reply to: [6.64 bug] MessageBox AccessViolation #42637
                              Support
                              Keymaster

                                Thanks, the problem will be solved in the next version.

                                Support
                                Keymaster

                                  Hi and thank you for the demo!
                                  I'll try to solve the problem in the nearest release.

                                  in reply to: Devex gives an AV #42632
                                  Support
                                  Keymaster

                                    Hello.
                                    I haven't TCQLabel and TCQBitBtn controls, so, they were changed to standard TLabel and TBitBtn.
                                    Your problem occurs because this code in the project source is not good :

                                    CODE
                                      bCanStart := True;

                                      Application.Initialize;
                                      Application.MainFormOnTaskbar := True;

                                      Application.CreateForm(TDataModule3, DataModule3);

                                      Form1 := TForm1.Create(Application);
                                      if Form1.ShowModal <> mrOK then
                                        bCanStart := False;

                                      if not bCanStart then
                                      begin
                                        Form1.Free;
                                        Application.Terminate;
                                        Exit;
                                      end;

                                      Application.CreateForm(TForm2, Form2);
                                      Application.Run;

                                    You have memory leaks there, and these leaks are reason of the problem.
                                    Problem will be solved if you will use a code like this :

                                    CODE
                                      Application.Initialize;
                                      Application.MainFormOnTaskbar := True;

                                      Application.CreateForm(TDataModule3, DataModule3);

                                      Form1 := TForm1.Create(Application);

                                      bCanStart := Form1.ShowModal = mrOK;

                                      if bCanStart then Application.CreateForm(TForm2, Form2);
                                      Application.Run;

                                    in reply to: TRichEdit seems not supported by alphaskin #42631
                                    Support
                                    Keymaster

                                      As a solution may be used the TsRichEdit control with enabled SkinData.CustomFont and SkinData.CustomColor properties.

                                      in reply to: Suggestion : two patches #42623
                                      Support
                                      Keymaster

                                        Hello!

                                        I think that I will have a problem with recompiling of resources because some your characters are not exists in my system.
                                        Could you change Rc file, recompile it and send me these files?
                                        Command for compilation : brcc32 sStrings.rc sStrings.res

                                        About hints, I'll try to change sources in the nearest release already.

                                        Support
                                        Keymaster

                                          Tabs will be skinned if you disable the USETABCONTROL key in the ExpressQuantumGrid 6SourcescxGridVer.inc file.
                                          About CardView – I will research it more, soon.

                                          in reply to: How to disable scroll bars skin? #42525
                                          Support
                                          Keymaster

                                            What component have a problem?
                                            If this component is standard edit control, then you can try an other skinning rule when control is added to the ThirdParty list.
                                            Choose 'Panel' type of skin, for example. Used SkinSection may be declared in the SkinProvider.OnSkinItem event.
                                            And, maybe I can solve a problem with scrollbars?

                                          Viewing 20 posts - 4,421 through 4,440 (of 5,144 total)