danielrgoes Postado Novembro 29, 2012 Denunciar Share Postado Novembro 29, 2012 PessoalEu estou usando a propriedade Anchors do DBGrid para alinhar ele conforme maximiniza a telaEle ate maximiniza junto mais as colunas nãoComo faço isso ??? Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Jhonas Postado Dezembro 1, 2012 Denunciar Share Postado Dezembro 1, 2012 TAnchorKind and TAnchors specify how a control is anchored to its parent.UnitControls or QControlsDelphi syntax:type TAnchors = set of TAnchorKind;type TAnchorKind = (akTop, akLeft, akRight, akBottom);C++ syntax:enum TAnchorKind { akLeft, akTop, akRight, akBottom };typedef Set<TAnchorKind, akLeft, akBottom> TAnchors;DescriptionTAnchors is a set of TAnchorKind values. TAnchorKind can have one or more of the following values:Value MeaningakTop The control’s position is fixed with respect to the top edge of its parent.akLeft The control’s position is fixed with respect to the left edge of its parent.akRight The control’s position is fixed with respect to the right edge of its parent.akBottom The control’s position is fixed with respect to the bottom edge of its parent.Basta deixar as opções ( akTop, akLeft, akRight, akBottom ) todos como trueabraço Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
danielrgoes
Pessoal
Eu estou usando a propriedade Anchors do DBGrid para alinhar ele conforme maximiniza a tela
Ele ate maximiniza junto mais as colunas não
Como faço isso ???
Link para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.