Hi,
I have a buttonbar in resource but the size after compile dont respect the resource size, see the image below:
In my code I use this:
REDEFINE BUTTONBAR oBar10 ID 100 OF oDlg20
How I can adjust?
Thanks in advance
Buttonbar help
Re: Buttonbar help
Try with oBar10:nRight := 300 ( or any value ), after the REDEFINEwartiaga wrote:Hi,
I have a buttonbar in resource but the size after compile dont respect the resource size, see the image below:
In my code I use this:
REDEFINE BUTTONBAR oBar10 ID 100 OF oDlg20
How I can adjust?
Thanks in advance
If it does not work, try putting this instruction in the ON INIT clause of the dialog or container window
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: Buttonbar help
Thanks but no success in both options.cnavarro wrote:Try with oBar10:nRight := 300 ( or any value ), after the REDEFINEwartiaga wrote:Hi,
I have a buttonbar in resource but the size after compile dont respect the resource size, see the image below:
In my code I use this:
REDEFINE BUTTONBAR oBar10 ID 100 OF oDlg20
How I can adjust?
Thanks in advance
If it does not work, try putting this instruction in the ON INIT clause of the dialog or container window
Re: Buttonbar help
Also, try with oBar10:Move( ..... ) METHOD ( on init clause )
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: Buttonbar help
Move works but just move the bar not change the size.cnavarro wrote:Also, try with oBar10:Move( ..... ) METHOD ( on init clause )
Re: Buttonbar help
I think method Move allow change size, not?
Move( nTop, nLeft, nWidth, nHeight, lRepaint )
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: Buttonbar help
Thank you! It's work! Do you know how i display the buttonbar with border? oBar10:nStyle := WS_BORDER not work.cnavarro wrote:I think method Move allow change size, not?
Move( nTop, nLeft, nWidth, nHeight, lRepaint )