Dock Another Form Next To The Original
May 16, 2011
This is a big idea and I'm unsure of how easy or difficult this really is. I do not know how I would get this even started. What I am trying to accomplish is "docking" so to speak, a sub form into the original. Basically, there are 2 forms open, but one is like a helper so to speak. This concept is not new as many programs use it. An example is a program widely used call Teamviewer. If you use Teamviewer, open the "Partner List" Pane at the bottom to see exactly what I am talking about. Basically, it opens a new form that is next to it.
[Code]...
View 4 Replies
ADVERTISEMENT
Mar 30, 2009
I am trying to get my VB6 app to "dock" inside my vb.net form. I currently am using this [code]...
View 6 Replies
Jul 5, 2010
Dock/Hide Borderless Form?
View 7 Replies
Mar 9, 2010
I'm just wondering if there is any way to dock a separate process in my form? For example, Firefox.
View 2 Replies
Oct 21, 2011
I need to write application in which I can embed (Dock) third party exe into panel witch I done partially with following
[Code]...
View 7 Replies
Mar 7, 2010
From this forum I saw some discussions about form/controls resizing issue with different resolution screen setting. Most suggestions are using Anchor/Dock. My application's form has 10 group boxes and some buttons. In each group box there are 5 Text boxes and other more controls. I tried anchor and dock but couldn't make it work. My questions are -
1, How to re-size form and all individual controls as well?
2, If anchor/Dock are suggested, do i have to use both of them or just one? it seems to me there is no big difference between them.
View 4 Replies
Sep 2, 2010
how can i dock a form into the MDIParent form?
View 1 Replies
May 28, 2012
I have made two forms lets say form1 and form2 and i want form2 to be shown at the bottom of form1 always even when i move form1 and i want it to be visible only when mouse is moving.
View 4 Replies
Dec 6, 2009
How can I make my MDI child form to load in a specific position in the parent form? Or preferably, how can I make the child form Dock Inside a Panel in the parent form?
View 4 Replies
Feb 12, 2011
we all know how to dock or anchor controls so that they resize themselves accordingly when a form is resized. It works fine till we have rows of controls on left and right size of the form. But what if have three columns (Columns as in visual sense. I'm not talking about any column control containing other controls) of controls? For example a form having a bunch of controls in the left side, a bunch in the middle and a bunch in the right. There may be a few more bunches in the middle. Now while resizing the form, I want the controls to resize accordingly as well as change their positions to make space for the previous bunch of controls that are resizing.I mean, while the user increases the form size horizontally, the controls of the second bunch should resize and at the same time they should move right because the controls of the first bunch are increasing horizontally too. When the user decreases the form size horizontally the same thing should occur in the reverse order.I can manage it somehow using nested splitcontainers but that's too cumbersome. I would like to know if there's some better way to achieve it, like setting some property etc.?
View 3 Replies
May 20, 2010
I have 2 forms. Form1 and Form2. When Form2 is closing, how do I make Form2 to inform Form1 that Form2 is closed.
View 2 Replies
Feb 15, 2009
possible to reload a form to its original state?i.e all pictureboxes, labels, functions are back the way they were when the form loaded.
View 1 Replies
Jun 15, 2012
I have settings called set1 and what I want this to do is when I open up a form and I then click close is doesn't show it anymore it shows the original one.
View 11 Replies
May 6, 2009
i want to resume layout of form . how can i do that. every i run program. the location of controls change i want to get original location of controls.
View 5 Replies
Nov 14, 2009
I am making a program for easily entering maths symbols. For entering the powers, I superscipted the text in richtext box, but whenver I use another symbol, the effect of superscripting disappears and the text becomes in its original form
[Code]...
View 6 Replies
Oct 25, 2010
This might seem like an odd question, but is there a way to make it so that any form that is created based on another, would have some comments in the code behind of the new form?
For example, i create a form called frmONE, and i put in code like this:
Overridable Sub frmONE_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Make sure you call these functions, in this order:
[Code]....
View 4 Replies
Mar 30, 2011
I have a form that I want to have a control box so you can close it at any time but I don't want it to be movable from its origainal position. It opens maximized and I want it to stay maximized. I've tried all the different FromBorderStyle options in properties and I've tried all the SizeGripStyle properties though I can't say I've tried all the combinations possible between those two but whatever I've tried I can always click on the border at the top and then the form breaks free from its starting position and when it does the vertical scroll bar disappears.
How can I have this form stay in place with the vertical scroll bar and the control box and not break free from its starting position if someone clicks on the border at the top? If I try FromBorderStyle None then I don't have control box to close it. I was looking at the form events list and I noticed when I break the form free by clicking on the border that that is a ClientSizeChanged event.
View 2 Replies
Apr 12, 2011
how to bring the search window back to its original form when it has filled the whole screen? Usually there are at the right upper corner small buttons to resize or to close, but I don't see them (visual basic 10 express edition)
View 3 Replies
Jul 16, 2009
How do I revert a form including the controls back to a original state without closing the app? For example I got a picture box and 2 buttons in a form..
[Code]...
View 7 Replies
Aug 22, 2011
my goal is to
1.Take an file(exe,dll,etc)
2.Convert it into hex
3.place that hex values in a stack
4.Execute the values inside the stack to its original form(i.e. take the elements out of stack and then convert it to a compile format)
Imports System.IO
Sub Main()
Dim fileName As String = "ABC.exe"
[code]....
View 1 Replies
Jul 25, 2010
Theres no error that is stroked with red but when i try draging a icon i just dont work ::(
heres the code:
Imports System.Runtime.InteropServices
Imports System.IO
Public Class Form1
Public rowz = 50
[code].....
View 4 Replies
Jul 29, 2011
I'm trying to dock my form to the top of the screen, but not as a desktop toolbar. There must be a simple way or a property... I just want it to start on the very top center of the desktop, I can't figure out how?
View 7 Replies
May 4, 2012
Can any one tell me is it possible to dock one object to another.Currently i have a datagridview in my form which i docked to bottom at runtime.after that i added a status bar to the form, and by default its docked bottom at design.when i run the application. status bar has come above the datagrid. and the grid is docked to bottom.
I want status bar to be at bottom of the form and Datagrid to be docked to the top of the status bar.is it possible.PBL (Visual Studio 2010 Professional, Win 7 64 bit Ultimate)
View 2 Replies
Mar 22, 2011
How can i run form2 in form1(i mean under one process) and when i move form 1 form 2 also should move.
View 4 Replies
Feb 25, 2010
How do i get a Shockwaveobject to dock into form1
View 1 Replies
Apr 20, 2010
I created a basic winform project where I want to handle all resizing without writing a single line of code. I set up controls using dock/anchor. They all work properly, until I add a custom UserControl. When I first press F5, the project works fine. However when I get back to the IDE some (but not all) controls which have anchor right/bottom are resized/moved into positions and sizes not previously defined. Some cannot even be restored as they are moved permanently below the container's boundary with coordinates above 2000. If I fiddle around and test the project many times, all controls with right/bottom anchoring will go haywire eventually.
If the custom UserControl has controls inside with right/bottom anchoring those also get resized in weird ways. Adding the controls again solves the problem temporarily. It is the IDE that moves these controls around since these movements are displayed in the undo stack right after I exit testing the project (however,undoing these steps only messes things up even more).I am using VB 2010 on Windows 7 x64.
View 3 Replies
Nov 30, 2011
Basically I want to make a dock bar that is on the desktop, I want to be able to drag files into it and when the files are dragged in there icon appears and when you click the icon it opens the file
View 14 Replies
Apr 20, 2010
i want to snap or dock two forms together and have them move as one. i tried to download SandDock but i can't get it to work.
View 2 Replies
Sep 3, 2009
I am new to VB 2008 programming The first project I've been tasked with is creating a ticker/notice-board for our office - which will show Horizontaly scrolling updates of incidents being reported. I'm ok with the scrolling, keeping on top etc - but what I am unable to do is make my form dock to the top of the desktop window, and make any other applications windows smaller.
So that when any other application is maximized, it's window will not go behind my ticker application - so people can still easily use any other applications toolbar etc. Is this possible to do in VB 2008?
View 3 Replies
Jan 12, 2011
Is there any compnent I can add to add a mac-like
View 8 Replies