PictureBox Expansion Problem
Brian,I believe the problem is that you have commented out the "InitializeComponent" method in Public Sub New. The IntializeComponent method is what adds all your stuff to the form.Public Sub New()...
View ArticlePictureBox Expansion Problem
Please verify that the SplitContainer's Visible property is set to True.If that is not the problem, then it would help if you could post the form's designer generated code. Go to solution Explorer and...
View ArticlePictureBox Expansion Problem
Please verify that the SplitContainer's Visible property is set to True.If that is not the problem, then it would help if you could post the form's designer generated code. Go to solution Explorer and...
View ArticlePictureBox Expansion Problem
Have you thought of using a panel control instead of a split containerhope this helpsRegards ~~ Zeldacat
View ArticlePictureBox Expansion Problem
Add a SplitContainer to your form and set it for a horizontal split. Then move your buttons to the lower half and the picturebox to the top half.Set the split container to dock fill and the same for...
View ArticlePictureBox Expansion Problem
Add a SplitContainer to your form and set it for a horizontal split. Then move your buttons to the lower half and the picturebox to the top half.Set the split container to dock fill and the same for...
View ArticlePictureBox Expansion Problem
use the Anchor property to pin the top, left, right and bottom where you want it
View ArticlePictureBox Expansion Problem
In the designer, select the PictureBox and look in the Properties Window for an appropriate property. I have it set to autosize, but that make the picture box coverup my buttons. I also want to be...
View ArticlePictureBox Expansion Problem
In the designer, select the PictureBox and look in the Properties Window for an appropriate property.
View ArticlePictureBox Expansion Problem
I have a picturebox that I am importing an image to. I need it to expand but not expand past my buttons at the bottom of the screen. See image below. When I import the image it takes up the whole...
View Article