Neon

Forum Replies Created

Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • in reply to: TsAlphaImageList with Skins turned off #40531
    Neon
    Participant

      QUOTE (JohnBank @ Sep 17 2009, 02:55 AM) <{POST_SNAPBACK}>
      And make sure that you had activated the TsSkinManager your application is using(it appears you didn't from your picture).

      We're talking about Sking turned off here.

      in reply to: TsAlphaImageList with Skins turned off #40452
      Neon
      Participant

        I'm using AC without skins on Delphi 7 for some time and couldn't ever reproduce this issue.
        The PNGs are not transparent in design-time though, but in runtime all goes well.

        in reply to: How to determine required button width based on caption? #40162
        Neon
        Participant

          You may tamper with sGraphUtils functions. For example, function CutText has saved me a lot of time when I tried to ellipse caption of TsTabSheet.

          in reply to: We Want Windows 7 Skin #39839
          Neon
          Participant

            I don't think it will be significally different from Vista skin, but I'd like to take a look at one <img src="style_emoticons//smile.gif” style=”vertical-align:middle” emoid=”:)” border=”0″ alt=”smile.gif” />

            in reply to: Uninstalling Trial? #39830
            Neon
            Participant

              Maybe you should try AC Uninstaller, maybe it will help.

              in reply to: How do I use them..? :P #39829
              Neon
              Participant

                This is merely a focus.

                in reply to: NO Debugging of AC source code #39757
                Neon
                Participant

                  I'd place a breakpoint inside procedure and avoid all unnecessary steps while debugging. Otherwise I suppose that can't be done.

                  in reply to: NO Debugging of AC source code #39752
                  Neon
                  Participant

                    Maybe by pressing F8? <img src="style_emoticons//smile.gif” style=”vertical-align:middle” emoid=”:)” border=”0″ alt=”smile.gif” />

                    in reply to: Using TJsDialog with Alphacontrols #39741
                    Neon
                    Participant

                      Yeah, that's really good question. The AdvTaskDialog from TMS has the same problem and I suppose that can't be done right now…

                      P.S. I'm done with Delphi now, so my advices are not always correct <img src="style_emoticons//rolleyes.gif” style=”vertical-align:middle” emoid=”:roll:” border=”0″ alt=”rolleyes.gif” />

                      in reply to: Using TJsDialog with Alphacontrols #39737
                      Neon
                      Participant

                        You can try this code, maybe this is what you need:

                        CODE
                        sSkinManager1.SkinningRules := sSkinManager1.SkinningRules – [srDialogs];
                        JsDialog1.ShowModal();
                        sSkinManager1.SkinningRules := sSkinManager1.SkinningRules + [srDialogs];

                        in reply to: Screen capture with Apprehend #39296
                        Neon
                        Participant

                          CODE
                            sSkinManager1.SkinningRules := sSkinManager1.SkinningRules – [srStdForms];
                            //capture the object here…
                            sSkinManager1.SkinningRules := sSkinManager1.SkinningRules + [srStdForms];

                          Neon
                          Participant

                            georgettank,

                            I didn't mess with frames but controls on main form are aligned properly. Hope you'll get the idea.

                            And by the way, Align is one of the basic things that everyone should know… <img src="style_emoticons//huh.gif” style=”vertical-align:middle” emoid=”:huh:” border=”0″ alt=”huh.gif” />

                            Neon
                            Participant

                              I agree, aligning is sufficient for most tasks.

                              in reply to: PageControl #38763
                              Neon
                              Participant
                                CODE
                                procedure TForm1.Button2Click(Sender: TObject);
                                begin
                                with TsTabSheet.Create(self) do begin
                                Caption:='Page '+inttostr(sPageControl1.PageCount);
                                PageControl:=sPageControl1;
                                Visible:=True;
                                end;
                                sPageControl1.ActivePageIndex:=sPageControl1.PageCount-1;
                                end;

                                And this works too, just make it visible after setting its PageControl.

                                in reply to: PageControl #38762
                                Neon
                                Participant

                                  Well that's strange… I'm using dynamically created sTabSheets quite often, but couldn't reproduce the problem you described.
                                  The one difference in my code from listed above is:

                                  CODE
                                  ts:=TsTabSheet.Create(Pager);
                                  ts.Parent:=Pager;
                                  ts.ImageIndex:=0;
                                  ts.PageControl:=Pager;

                                  This way it works well.

                                  in reply to: Reflected property #38721
                                  Neon
                                  Participant

                                    Hmmm… try to increase button's height <img src="style_emoticons//rolleyes.gif” style=”vertical-align:middle” emoid=”:roll:” border=”0″ alt=”rolleyes.gif” />
                                    I tried the effect with PNG glyph, and all worked perfectly.

                                    in reply to: [HELP]Aah, I cant get it installed.. :( #38720
                                    Neon
                                    Participant

                                      You should describe your problem more clearly, if you want the community to help you. With error message and/or screenshot.

                                      in reply to: Reflected property #38718
                                      Neon
                                      Participant

                                        It controls the reflection of the button's glyph.

                                        in reply to: To use 2 skins in Delphi 2009 Application – How I do? #38486
                                        Neon
                                        Participant

                                          Then put a TsFormProvider to the form and set it to TsSkinManager you need. I hadn't this problem you described, all worked well…

                                          in reply to: To use 2 skins in Delphi 2009 Application – How I do? #38477
                                          Neon
                                          Participant

                                            You should use two different TsSkinManager components and set one to Golden skin and another to Capuccino.

                                          Viewing 20 posts - 1 through 20 (of 20 total)