Paulo César

Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • in reply to: Highlighted button #47237
    Paulo César
    Participant

    sButton1.TabStop := False;

    or

    It's start with focus because the propertie TabOrder of sButton1 is “0”, set with TabOrder 0 the component that you would like to start with the focus.

    in reply to: How to show frame in form #45525
    Paulo César
    Participant

    It's simple.

    Quote:

    var

    CurrentFrame: TFrame;

    procedure TForm1.ShowFrame;

    begin

    if (Assigned(Self)) and

    (Assigned(CurrentFrame)) then

    begin

    CurrentFrame.Visible := False;

    CurrentFrame.SetBounds( 5, 78, 774, 484 ); // Here the position and size of the frame

    CurrentFrame.Parent := Self;

    // Refresh the application

    Application.ProcessMessages;

    if SkinManager.Active then

    begin

    PrepareForAnimation(CurrentFrame);

    CurrentFrame.Visible := True;

    AnimShowControl(CurrentFrame, 200);

    end

    else

    begin

    CurrentFrame.Visible := True;

    CurrentFrame.Repaint

    end;

    end;

    end;

    using:

    procedure TForm1.Button1Click(Sender: TObject);

    begin

    if Assigned( CurrentFrame ) then

    FreeAndNil( CurrentFrame );

    CurrentFrame := TFrame_Notices.Create( Self ); // Here your frame

    ShowFrame;

    end;

    in reply to: ExtendedBorders "block" the window #44348
    Paulo César
    Participant

    Strangely when I rebooted my computer and compiled, the program returned to work perfectly. Problem solved, sorry for the inconvenience.

    in reply to: AC new bug #40526
    Paulo César
    Participant

    Here, the AC 6.44 + the newest WMP 2008 and with “SkinManager.ExtendedBorders := True;” when click in maximize button don't maximize, the window go to top and bug the window.

    in reply to: AC new bug #40529
    Paulo César
    Participant

    I tested here now, AC 6.44 still bugged.

    in reply to: Bugs in AC 6.43 stable. #40492
    Paulo César
    Participant

    thanks, it's working! =D

    in reply to: AC 6.44 is still bugged… #40449
    Paulo César
    Participant

    I use the Delphi 2007 and AC 6.44
    The Old WMP 2008 don't have this bug, but the updated have!

    QUOTE
    myListBox.items.beginupdate();
    //Load all items
    myListBox.items.endupdate();

    don't work … =/

    Well my application needs of listbox, because draw item and scrollbar skin, I can't use other…

    in reply to: Bugs in AC 6.43 stable. #40443
    Paulo César
    Participant

    Other bug in WMP 2008 skin, when the mouse is in “x” button and move to maximize have one bug.

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