VS 2008 - Make A Form Non Movable?
Mar 25, 2010
In VB6 there was a property on the form called movable that if set to false meant that the form could only be moved through code ... just wondering how i can do something like this in .net ... i don't want anything that flickers either like: vb Private Sub Form1_LocationChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.LocationChanged Me.Location = New Point(100, 100) End Sub the above flickers occasionally when the form is moved
View 8 Replies
ADVERTISEMENT
Jul 12, 2011
I am trying to make a Form Non-Movable. How can I do this??? I have already made it non-resizable, now I just need to make it non-movable.
View 13 Replies
Aug 15, 2011
i want to make a form with movable command buttons.the aim is that these buttons will represent the computers that are installed in one room.or the tables in one bar.all the tables can change depending the order that user give.
View 11 Replies
Nov 6, 2009
i create StudentForm as my mdi child form, what i suppose to do to let user unable to move my mdi child form to other location? i want it to be static location
Private Sub StudentToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StudentToolStripMenuItem.Click
StudentForm.Show()
StudentForm.MdiParent = Me
End Sub
View 1 Replies
Mar 8, 2012
How can i best make a movable widget within a windows form application? I wanted a area inside the form where the widgets can be placed / moved, i was thinking something like Windows desktop gadgets, where you can move them around and add/remove them. i was thinking of using a group box to contain each individual widget (notepad, time, calc ect) and a flow layout panel to contain and move all of the widgets.
Also i was hoping there would be a way to actually have icons to press which place the widgets into the flow layout panel.
View 3 Replies
Nov 9, 2011
I have made form with no border,removed default title bar And placed a picture box,have set the image too, So,now I want to make it moveable, i tried each moveable title bar code,but it gives many error, What would be the code to make that title bar picture box movable??
View 4 Replies
Sep 18, 2010
Okay, what I want to do is snap a movable panel to the form, like create a virtual grid kind of thing. The panels can be moved with the mouse and stop moving once the left mouse key is released.For the movable panel I have used a Class, it creates an object called NewComp in the toolbox.
Public Class NewComp
Inherits Panel
Public Sub New()
[code].....
View 1 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
Nov 5, 2009
TabMenu.Controls.Add(btnOrder)
'btnOrder.Parent = Me.TabMenu
'btnOrder.Location = New Point(300, vertloc + 20)
'btnOrder.Text = "Order"
'btnOrder.Name = intCount.ToString & "OrderButton"
So I have my program make buttons similar to the above, I'm going to have a button created at the point were the cursor is, as long as the location is a valid one. Now I have two questions.
1) I want to use the following code to be able to move around any of the new buttons that I place down on the form.
' a quick TY to Ronald_Hare here on the forums for posting this little snippet, as it does exactly what I want.
Private oControlOffsetPoint As Point
Private Sub Button_MouseMove(ByVal sender As Object, ByVal e As
[Code].....
2) I also want to be able to change the back color of the button based on a number of boolean flags I will be setting. Is any of this possible without completely mangling things? I'm hoping there are some easy options for setting a button made on runtime to use a number of premade subs or functions.
On a side note: This does not need to be exclusively a button. a picturebox or a text box would probably work just as well for what I want to do, but I like the look I can get with the button atm.
View 3 Replies
Jan 18, 2010
I have a form on which I want to place labels created by code executed by clicking a button(cmdAddLabel) at run time. I subsequently want to move the newly created labels around on the form. The following code sucessfully creates the labels at run time whenever the cmdAddLabel button is clicked:
Private
Sub cmdAddLabel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdAddLabel.Click
Dim
[Code]....
View 2 Replies
Dec 12, 2008
I am trying to create TextBoxes and RichTextBoxes that can be moved and resized durig runtime as part of a program that makes/edits media-slides for online learning. The textboxes can currently be moved and resized by filling out the values for Top, Left, Height and Width on "property sheets", a method I would like to change into something a little bit more user-friendly
I created a user control with besides the TextBox or RichTextBox 3 objects to control the moving.I have currently added 3 panels to try to use for this purpose.I have written all the code to resize the TextBox when my new control is resized and when theMoveAndResizeHandles are set to be visible.The resize panels are currently 10 points x 10 points (easy to change because the 10 points are defined in a constant) and located top left above and bottom right under the textbox. The panel to resize is located next to top-left panel and has the width of the textbox - 10 pixels
My question at this point is: were Panels an appropriate choice or is there a more fitting way to do this?
-and-
Which events should I use to check for movement and resizing of the control? I would start looking into "dragging and dropping" as event, but I have as yet no idea wether this will work and what the gotcha's will be in my approach.
View 1 Replies
May 28, 2010
How to make a form as bottom most form in vb.Net 2008
View 1 Replies
May 8, 2009
I want my login screen to open over my editor! Example MS word how they have the tips screen over top and you press the close button if you don't want it there.
View 3 Replies
Dec 7, 2009
I'm trying to make a simple game, but i have a question.i have a minimum damage and maximum damage lbl boxes on 1 form and i have a button if clicked it opens a 2nd form with buttons that deal "damage" when clicked
1. Attack (a regular attack that would deal the damage from form 1)
2. another attack ( this deals damage from form1 + 8)
3. another attack ( deals 30% damage for 4 attacks [so 4 attacks that deals 30% damage each])
4. another attack ( this one is great. it deals damage of 2 times of minimum damage to maximum damage and a third label box lblAP (attack power) which each 2 points of attack power you have it adds 1 more damage.)
i can do that math i just have no clue how to bring the info from form 1 to form 2.
View 12 Replies
Jun 15, 2012
My project is similar to JM's Manipulating GDI+ Drawings and NickThissen's Shape Editor. I haven't used their code though, I've written my own similar code. My shapes are custom controls.
All the shapes are working fine. But I'm having trouble with line control.
1. I've tried my own line control. But to resize/move I need to write separate code. The common code that works for all other shapes is not working.
2. I've tried VB Powerpack 3 Line Control,but moving/resizing it in runtime is too much complicated. It is NOT a real control. (I guess) It is directly drawn over a "ShapeContainer" control. So, i have to write custom code for this too.
View 3 Replies
Apr 7, 2012
I'm recently tried to make a custom tabcontrol that able to move the tab to left or right...
But there's a problem, I'm don't know how to get the tab's item width... What I get with TabControl1.SelectedTab.Bounds.Width is the tabpage's width, not tab item's width...
I need to get tab item's width to know if the selected tab had to be stay, or move left, or move right, when the mouse is moving and holding...
For an example, if the cursor pressed and holding Tabpage1, and it move to Tabpage2, then the Tabpage1 should be move right...
If I can get the tab item's width, then I can know the cursor is on which tab by mathematics... Or if can, I want to get the tab that on the cursor directly...
View 1 Replies
Mar 10, 2010
here is the deal, imagine that i've a fullscreen form, and when clicking on a button, it will create a new control, a control that could be selected and moved. I know that they are dynamic controls, but anyone know how to make them with the specific things i've said? A kind of dynamic controls allowing drag & drop to another position.
View 39 Replies
May 1, 2010
I am trying to create a slot machine application. I wanted to make a handle like gui so here is what I have:
[URL]
What I want is to be able to let the user drag the red button till a certain point and when they let go of the mouse click the button moves back slowly to the top.Here is what I have so far (I tried my best) :
Private Sub picBall_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles picBall.Click
tmrOne.Enabled = True
tmrTwo.Enabled = True
[code].....
View 3 Replies
Feb 7, 2010
How would I make the whole form transparent but leaving in all the objects and controls, i.e Textbox, Button etc..
View 3 Replies
Feb 12, 2010
I want to make a pie graph on my form. Can I do this? If so what do I need in the way of controls?
View 5 Replies
Jul 24, 2009
can some one so me an example of how i can make a form to a desktop that will let me save files to the form and duble click the file and it open a program to view that file in,
View 3 Replies
Jul 6, 2009
Is there a way to change the opacity of the main form without changing the opacity of the controls within it? I'd like the background to be semi-transparent, without affecting the buttons, etc
View 4 Replies
Aug 22, 2009
How can I make a form stay above a game? Something like a D3D/OpenGL game
View 12 Replies
Mar 29, 2010
Is there an Equivalent for the following code in VB2008?
VB6:
Load frmAlarm ' Loads the form
frmAlarm.EditAlarm oAlarm ' Loads what was saved on that form
[code]....
View 17 Replies
Jan 16, 2009
How can I make a form invisable but not the items on it?
View 2 Replies
Sep 10, 2009
I'm new to programming so I would like to know if is there any tutorial about how to make a custom skin for VB .Net 2008 and apply it to a form!?
View 10 Replies
May 7, 2010
im trying to make a win form application using visual studio 2008 express edition (which is free to download and install).i have installed a ms sql server 2005 on the local server at LAN. i want to display a combo box values from a table inside a database but i dont know how i can do this with ms sql connection string and where i have to store dat connection string. i have googled around but nothing useful found. where the connection string will be stored and if this form is not on the same computer (where the sql server installed) then wat will happen? the connection string will be changed?sql server is installed at windows server. im trying to make an application which runs on the same network (local i.e. LAN not on web server).
View 2 Replies
Feb 1, 2010
I am using a Gif animation on my Mainform. When i open a second form and then return to the mainform - the animation stops. How can i make sure that the animation restarts after the second form was closed?
View 1 Replies
Jun 25, 2009
I'm trying to make a Form pop up at an random place (given in a textbox). Here is my code so far:
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
Form2.Location = Textbox1.text
Form2.Visible = True End Sub
Yes i know it doesn't work. What I really need to know is how to make the txt understandable for the system.drawing.point.
View 2 Replies
May 14, 2009
I'm redoing a program I made up a while back and need some help changing a loop. The original program had all the text boxes on same form, the redesigned program still has them all on the same form but I have them spread across multiple tabs and the background of the form.
The code below loops through each possible text box and if it exists sets the value in an array. This only works for text boxes not on tabs. I found I could change the Me.Controls to TabPage1.Controls and that would get the text boxes on tabpage1. I would like to have a single loop that can find them on any tab and off the tabs, so I don't need three separate loops.
For num = 1 To 61
For Each controlctl In Me.Controls
If controlctl.Name = "TextBox" & CStr(num) Then
[Code].....
View 4 Replies