VS 2010 : Resizing Two Panels?
May 2, 2010
I am using vb 2010 and I have a question about anchor. I have two panels side by side, I anchored them both: top, left, right. But when I resize it the left panel goes behind the right panel. Isn't there a way so that when I resize, both panels grow parallel?
View 14 Replies
ADVERTISEMENT
Mar 21, 2011
I am in the process of creating an all-in-one application for my own purposes. This application has panels with different "Mini-apps" inside of each. Timer, Notepad, Calculator, etc... The top of the application is a drop down menu and each of the drop downs has "Minimize" and "Maximize" for the appropriate application. When the minimize function for a "mini-app" is clicked, then that application is not visible. When maximize is clicked, the the application reappears.What I am attempting to accomplish is that when, for example, the two lower panels are minimized then the form resizes to only show the top two application.Basically, its like rows. If the two bottom are not visible, then the application should resize to fit nicer. An example of this type of application would be Windows Calculator (found in Windows 7 systems and probably other OS).[code]
View 2 Replies
May 8, 2012
I'm trying to make custom ListBox with some graphics. Base is ItemCollection - each item contains Panel, 2x label and 2x picturebox. What each panel have to do:
- Change backcolor on MouseEnter and set color back when MouseLeave occurs.
- On MouseDown(LMB) - Panel stays "selected" - different color.
Problem: I can't access multiple panels at a time(and I need to), just one via sender as in function. Of course, I can do it hacky way, but I want to do it effective and regular. Is ItemCollection the right solution or should I do it just like an array of panels? Also I want them in one "box", ItemCollection is good for it.
Second "problem": I need to make labels "merged" in panels, when i MouseEnter them(labels), background color on that panel sets to my default color. when i MouseClick them(labels), nothing happens (need to "select" parent panel). It can be again fixed with hacky way, just disable labels - but then the colors of labels are unchangeable.
View 6 Replies
Oct 3, 2010
i have 2 panels , one next to other and one picture , when i have the mouse in front of the picture i hover another panel to show , it has a lil bigger width than the panel 1 and that doesnt allow it to show fully.
View 16 Replies
Mar 11, 2011
I'm building a memory game but I'm not exactly the most experienced coder. Basically, if two panels are shown then I want them to stay on the screen. The second part I can do, but I can't figure out how to have two variables in an If statement.I'll just post a bit of code (that is probably nothing near what it should be) so that you can understand what I'm trying to do.If Q1.Show() + A1.Show() then
View 3 Replies
Jun 29, 2011
use regular panels in a collapsible panel? Mine seem to be disappearing at runtime...
View 1 Replies
Apr 30, 2012
I am trying to open up an image file that gets created by my program edit it and then resave it to the same location.
View 3 Replies
Apr 27, 2012
I've set every setting I could find on the DataGridView to a specific font size however when the form it resides on loads I step through the code and put my cursor over the DataGridView1.Font.Size and it always shows 8.25 (I've set everything to 18).
What I'm trying to do is resize the DGV on load of the form to a percentage based on the size of the form relative to the size of the screen. Everything else on all of my other forms are resizing correctly but the DGV is not.
Here is the designer generated code for property reference:
vb.net
'DataGridView1
'
Me.DataGridView1.AllowUserToAddRows = False
[Code].....
View 5 Replies
Mar 2, 2011
Is it possible to disable resizing of the SplitContainer's panels?
View 2 Replies
Apr 16, 2012
Having a bit of a nightmare with my application. I have developed my application in 1366 x 768. When moving onto other resolutions, the form looks totally wrong. Is there a way to have the application force itself to open up in a box that will fit the screen?(I'm more than happy to pay someone today or tomorrow who could look at making sure that my form gracefully up / down scales). This really is pretty urgent in that respect. If you have the ability to gracefully scale a form up / down and can do so for me either today or tomorrow, let me know of your price. (Possibly a bit naughty to pop this into the forums but I am willing to pay to get this sorted asap).
View 4 Replies
Mar 23, 2011
I have a Form (Form1) that contains a Panel inside the form. Inside that panel I want to load another form (Form2). This all works fine, however when I resize Form1 I want Form2 to resize aswell. The panel resizes fine but Form2 will not resize. Here is the code for Form1
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code].....
Is there some sort of setting I am missing to be able to achieve this or is it not possible?
View 6 Replies
Jan 14, 2011
I have a datagrid and load data from a database in and can't find thesolution for a couple of propblems..
1) The columns from the DB is loaded in to the datagrid but the width of each column is very small and needs resizing to view all data everytime it loads. Can I programmically make the colums show wider annd fill the datagrid?
2) I load the columns using SELECT col1,col2,col3 from table; then load that in to the datagrid. col1 is a primary key so has to be loaded as I perform an update of edited data at the end. Can I somehow hide col1 so it does not show in the datagrid?
View 5 Replies
Mar 20, 2011
Where is the best place to resize a control on a form when a form is resized?....I'm currently using the Form1_SizeChanged event and seems to work ok. Also is there any need to check in the forms resize event if the form is in a minimized state before resizing controls?.,.. in VB6 if you try to resize a control when the form is minimized you get an error, but I don't see that happening in BV10 Form1_SizeChanged event, does VB10 automatically ignore resizing controls when a form is minimized or something?
View 2 Replies
May 6, 2012
I have developed a windows application on a size of 1366,768. When i have opened the application on another pc, the location of the controls are not the same anymore. Part of the application can't be displayed as well. How can I handle that in vb?
View 1 Replies
May 23, 2010
I am creating a simple shape editor, much like the Visual Studio form designer. You can create shapes, select them and move/resize them using drag handles just like in Visual Studio or most other applications (Visio, etc).
I have run into some problems trying to implement a MinimumSize property for the shapes.First of all, this is how I'm resizing the shapes. Each shape has a Resize method, accepting two integers (dx and dy) that represent how much the shape must resize by, and one 'HitStatus', which determines in which direction the resize must take place (for example, from the TopLeft, or Bottom, or BottomRight, etc..)
What it does basically is use a large Select Case statement for the hit status. In each case, it changes the Bounds property of the shape (which determines the location and size), so that it is resized:
[Code]...
View 3 Replies
Sep 10, 2011
While the application is running, I want the buttons, text boxes, datagrid, everything thats on the form to resize when the screen is maximized and again resize when its minimized.
View 2 Replies
Jan 10, 2012
I've got a data-bound data grid view and one of the fields is an image. How do I scale down the image to a reasonable thumbnail size (say, 100px wide) and adjust the height and width of that cell so that it fits the image?
View 2 Replies
Sep 2, 2008
There are two panels A and B in a form horizontally, same size. Panel A archors with top,bottom, left and Panel B with top, bottom, right.When the form changed, the gap did.Panel A archors with top,bottom, left and Panel B with top, bottom, right and left.When the form changed, the gap doesn't, but only Panel B came bigger, Panel A didn't.Have you a way to keep the gap and the two panels can change in same time when the form changed?Must calculate the size of panels within Form's SizeChanged Event?
View 7 Replies
Jan 30, 2011
I have a form which has two panels each containing there own controls (Pnl1, Pnl2). By Default I want Pnl1 to show and Pnl2 to be hidden which I have set but I want Pnl2 to sit ontop of Pnl1 so when Pnl2 is selected Pnl2 is Visiable and Pnl1 is hidden. Therefore Pnl2 and the controls sit in the same place as the controls in Pnl1. I have got everything lined up but as I move Pnl2 over Pnl1 to sit ontop, Pnl2 is moved into Pnl1 and becomes a Panel within the Controls of Pnl1. Therefore when I hide Pnl1 everything is hidden as Pnl2 is part of Pnl1.
View 1 Replies
Mar 11, 2010
I am working with tab controls (tab1, tab2, etc) I want to more than one panel in tab1 and switch between them using a button. My problem is working with more than one panel in tab1. This is an educational program i am working on for schools in the Dominican Republic.
View 1 Replies
Jul 10, 2011
I had a form with four panels all have the same size and location I switch between them using .BringToFront
what I need is a transforming animation between them , can I do this with vb.net 2010
another explain I want somthing like fade effect when I change the visibility of a panel and show the other one and if I cant do this with panel control or vb.net windows forms ,
View 5 Replies
Oct 9, 2009
i want to make a Application Who Show Panel One By One or Visible =true one By one Like Panel1.visible=true & allpanels.visible=falsei m using 100 Panels how to make possible like this [URL]..
View 7 Replies
Jun 12, 2011
I like to use pop out panels that would just slide but sometimes it looks bad. is there a way i can fix it to make is as smooth as possible?
Here is the code i use:
dim pp as new point
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
pp = Panel1.Size
End Sub
[CODE]...
View 1 Replies
Jan 17, 2010
How to randomize the panels?
and if the panel reached about 5 randomizing, it will stop randomize..
View 3 Replies
Apr 14, 2011
I am adding controls to form at run time.I am doing the following with no problem:
[Code]...
View 12 Replies
Jun 25, 2010
Is there a way to hide all panels on a form?
View 2 Replies
Jun 19, 2010
I am trying to stack panels on top of each other, but they keep becoming children of the one I put them on top of. I am stacking three panels. I want to show each based on certain criteria. The showing and hiding works if they are not directly on top of each other. However, I would like to have them on top of each other. They are all exactly the same size and same position
View 2 Replies
Feb 23, 2012
Im working to develop an application thats going to run on some not-so-good as performance PC's. The application is done in VB.NET and i encountered some obstacles during my work.
The idea of the application is to allow the users to slide through some pages when they click with the mouse and drag (while the left click is pressed) to right (for browsing to the previous page) and to left (for browsing to the next page). Every page contains 4/6/9 panels with 4/6/9 pictureboxes with some gifs as images.
The issue is that when the user drag with the mouse to browse to a page, the panels and the pictureboxes jerks around when they are moved.
Here is the code that handles the slide part
If i + speed < 1024 Then
For j As Integer = 0 To nrOfGamesInTotal - 1
totemGame.gamePanel(j).Left = totemGame.gamePanel(j).Left + direction * speed
[Code].....
View 1 Replies
May 15, 2011
I'm having a bit of trouble creating draggable panels that will stay on top of all the other panels and not 'hide' behind them. My code for dragging works fine, I just need to set the layer of a panel to the top of all the different controls
View 1 Replies
Jul 4, 2009
I want to make a form with two panels. I one panel have eight circles that represent leds.And have a but to start turning on the firdt, then turn it off and turn on te second one, and so on.
View 1 Replies