Move / Drag Labels On A Form?

Jul 11, 2010

There is an image of a patient on the form.I have to mark the location of wounds on this picture.What I want to do is place 5 labels on a form.I am using these labels to mark the location of the wounds.these labels will be shown on the side of the form.the user can drag any one of the labels to a specific location on the image of the person.e.g face,head,leg.arm etc

Then I want to save the location of the labels in database so that when the record of the patient is retrieved the labels appear on the moved position.

View 1 Replies


ADVERTISEMENT

Drag And Drop Element On Form With Labels

Mar 19, 2011

As I have been working on a project from a development book for self learning, I am having a problem with Dragging and dropping on my form. My form has labels that represent questions on one side and labels on the other side to be drag/dropped as the answers. I understand that under the element's properties there is Dragdrop and you can work with that, but how exactly do I actually make the element drag/drop? I want to be able to click and hold the element to drag drop, just as you would for reorganizing preferred settings or for my case of a drag/drop Q and A form.

View 3 Replies

Allow The User To Drag The Text Back And Forth From Labels

Nov 10, 2009

Im trying to allow the user to drag the text back and forth from labels. The code I have below seems to just show the little circle with a slash through it, and I cant drag or drop the text?

Private Sub Label_MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Label1.MouseDown, Label2.MouseDown, Label3.MouseDown
Dim lbl As Label = DirectCast(sender, Label)

[code]....

View 1 Replies

Forms :: Implement Drag And Drop Using Labels?

Dec 5, 2011

I am trying to implement drag and drop using labels, when the label is to be dropped in location not currently visible auto scrolling should happen.

View 2 Replies

Labels Move At Runtime?

Jan 4, 2012

The position of my labels won't remain fixed during run time whenever i've added a background picture to my form. What should i do so that my labels remain fixed at one position at run time. I've tried locking them and also locking the form but the labels still move a few pixels from their original position.

View 2 Replies

How To Move X Axis Labels To Bottom

Jan 21, 2012

I have inserted a simple chart (Line type) on a form in VB 2010.I reversed the values of the Y axis in order to achieve a water depth graphic.(I used the property: IsReversed)The X- axis seems to be moved to the top of the chart !How can I move the X axis labels to the bottom ??

View 3 Replies

Make Labels Move Up And Down In Panel By Themselves At A Set Speed?

Feb 9, 2010

I am currently making a VB.Net game for my end of the project, but I have found myself in a deadlock. I was wondering how to make labels move up and down in my panel by themselves at a set speed. Also left and right by themselves. I've tried a couple different methods but none seem to work. They either lag or I can't seem to set where there bounds are.

View 1 Replies

.net - Drag And Move Winform Using Mouse?

May 28, 2011

I know how to 'drag and move' a winform by adding following code

Protected Overrides Sub WndProc(ByRef m As Message)
If (((m.Msg = 163) And ClientRectangle.Contains(PointToClient(New Point(m.LParam.ToInt32)))) And (m.WParam.ToInt32 = 2)) Then
m.WParam = CType(1, IntPtr)

[code]....

But after a panel being added to winform, I can not 'drag and move' the winform within that panel area. Any idea of how to 'drag and move' within a panel? I mean the mouse point, click, hold and move within that panel and the winform will follow the mouse movement until I release the mouse button.

'Add these to your form class
Private MouseIsDown As Boolean = False
Private MouseIsDownLoc As Point = Nothing

[code]....

View 1 Replies

C# - Drag And Drop: Copy Instead Of Move Item

Oct 25, 2011

I have two (Telerik) TreeView controls, let's call them tvSource and tvDest. I want to drag/drop items from tvSource to tvDest. I have this somewhat working, but am experiencing two problems:

1) What it now does is moving the item. Instead I want them to be copied (from tvSource to tvDest), leaving the item in tvSource.

2) To allow items to be dragged from the tvSource control I have to enable DragDrop. With this enabled the user can drag/drop inside the tvSource control, which is not what I want. The items may only be dragged (copied) to an other control (tvDest).

Below is my code so far:

Private blnMouseIsDown As Boolean = False
Private Sub tvSource_MouseDown(sender As Object, e As System.Windows.Forms.MouseEventArgs) Handles tvSource.MouseDown

[Code]....

View 1 Replies

VS 2008 Move Checkbox As Drag And Drop?

Feb 28, 2010

I got a form and a checkbox with default name in Visual Basic 2008

I need code to check data of value "link" on the pictures above

if the data is 00 00 00 00 the checkbox will show a check if 1b 00 00 00 or else nothing is showed

I'm new to VS and don't know code formula so please give me some codes with explaination

View 1 Replies

ListView Drag&Drop Allow To Drag&Drop Between Form?

Aug 27, 2009

ListView Drag&Drop allow to Drag&Drop between form??

Public Class frmModule
Private Sub ListView1_ItemDrag(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ItemDragEventArgs) Handles ListView1.ItemDrag[code]....

Can it be drap and drop item to other form control??How to write the event when mouse up at the other form control?

View 2 Replies

Mdi Child Form Order - Move The New Form Behind The Main Form While It Loads

Aug 5, 2010

i have my main child form open. then i show the new form:

[Code]...

but when the form opens it flickers a lot. so i want move the new form behind the main form while it loads so the user does not see the flicker. once it is done loading i will set the form to topmost. how do i move the new form behind the main form?

View 12 Replies

Drag Textbox Value To One Form To Another Form With Program?

Feb 28, 2011

I am working in vb.net. i want to drag textbox value one form to another form without use show and hide property in the form.

View 2 Replies

Unable To Drag The Form By Click On The Form?

Jul 9, 2009

I want to be able to drag the form by click on the form.... not by clicking on the bar...

The formborderstyle is at None.

View 4 Replies

Gets All Of The Labels In The Form Except For A Few?

Nov 28, 2011

Is there anyway to have a for each statement that gets all of the labels in the form except for a few?example i have

dim x as label
for each x in me.controls
x.tag = randomnumber
next

i want to get every label except for 2 of them (name1 and name2)

View 2 Replies

.NET Iterating Form Labels?

Mar 26, 2012

I have several label boxes on my design form that all share the naming convention lbl_#.text where # ranges from 1 to 60. I want to make a loop that iterates through each lbl_#.text adding some incremental value, let's say multiples of 2 for this question's theoretical purpose.Something such that the end result would amount to the following:

lbl_1.text = "2"
lbl_2.text = "4"
lbl_3.text = "6"
lbl_60.text = "120"

I'm not sure how to access each of these labels through the coding side, I only know how to explicitly mention each label and assign a value :/

View 3 Replies

Re-positioning Labels On A Form

Jun 13, 2011

I have a form where I need to place some labels dinamically. Some of the label's height needs to change depending on the string size that will populate the label's text. So what I need to do is position the labels one below the other, after the text has been populated and the height has been set.

View 6 Replies

Searching Labels Within A Form?

Jun 13, 2011

how to do this. I have a search box at the top of a vb.net windows form. And a bunch of labels throughout the same scrollable windows form. so when a user enters a search term within the search box it will highlight and set focus to the label that matches.

View 4 Replies

Show 2 Labels In A Form ?

May 7, 2009

is it possible to show 2 labels in a form (one after the other) with the click of a button for example i have label1 and label2 (but label2 is like hidden), the form loads with label and a button when i click on the button, label2 shows....is it possible?

View 2 Replies

Instruct VB To Save These Values In The Text Property Of The Labels So That The Next Time The Program Is Loaded The Labels?

Oct 21, 2008

I created a program that has serval labels on a form and a listview object. It has a button that when clicked reads a textfile and loads up values in the listview object. I then can click and drag text from the listview box to any label on the form and then the program removes the value from the listview box. Now, my question is how can I instruct VB to save these values in the text property of the labels so that the next time the program is loaded the labels will contain the values loaded during the last run time session?

View 1 Replies

Progress Bar In Status Bar To Move When Load Any Child Form Inside The MDIParent Form

Sep 16, 2009

i am asking about using the progress bar into the status bar to move when i load any child form inside the MDIParent form.

View 1 Replies

Change Startup Position And Move A Docked Form With Parent Form?

Mar 23, 2011

well i successfully docked a perpixel alpha form with the main form(form1). but the perpixel alpha form always appears at the top left corner of the screen and when i move the main form the form(perpixel alpha form) inside it dosen't move it stays at the top left corner. ALWAYS. to dock the perpixel alpha form i used

Me.toplevel = false
Me.parent = form1

View 6 Replies

VS 2010 - Form - MoveWindow API Alternative - Resize & Move A Form Using VB Commands

Mar 22, 2012

What is the best way to resize & move a form using just VB commands? I have a form that I need to set the Height and Top props, problem is that takes two calls and there is a noticable flicker. I tried using SuspendLayout/ResumeLayout, DoubleBuffered, swaping the top and height calls around, etc, but nothing seems to help. The test forms only have one small listview and one or two buttons. [Code]

View 2 Replies

Labels (SHOW/HIDE) Place The Labels Ontop Of Eachother

Jun 1, 2012

Well im currently developing an application for public use, I have a login screen in which the user enter's their registered credential's and the progressbar loads by increments of 3, now i placed 6 labels ontop of eachother and where the progressbar coding is i put:

If Progressbar.Value >= 1 Then
Label3.Show()
If Progressbar.Value >= 20 Then
Label3.Hide()
Label4.show()

And so on up until Label8 Show at 100%,

Now the problem is... As i have placed the labels ontop of eachother i need them hidden until they are called to show, i have tried adding a background worker to do this but have had no luck, all i see is the labels overlapping eachother when i run my application when i want them hidden untill Label3.Show() is called, and then to display them as they are called and hide them when another one is called to show...

View 3 Replies

Allow User To Move A Top Form Within The Boundary Of A Bottom Panel Or Form?

Jun 30, 2009

I have one form lays on the top of a form or a panel. I would like be able to drag the top form within the boundary of the bottom form or panel. How can I do that?

View 4 Replies

.net - Change The ForeColor Of All Labels On A Form?

Feb 23, 2011

Is it possible to change the ForeColor of all the labels on a form at runtime, including the form which is yet to be called? So that all the labels have the same color throughout the app.

View 2 Replies

Adding Two Labels Together/ Calculation On Form?

Mar 8, 2012

Public Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
Dim vatResult As Decimal

[code].....

View 5 Replies

Labels Showing Wherever They Want When Form Is Maximized?

Nov 21, 2009

I have a form showing a datagrid with info from a database. It also has 2 date pickers to filter the database results. It shows everything perfectly in the datagrid, so the db connection is ok. But it also has a few labels below, showing some info taken from the datagrid. For example, the datagrid has sales information and the labels below show the total sales. This works fine too.But the problem comes when I open some other form, maximize it and then open this form containing all this stuff (while the previous one is still open and maximized). These labels (along with a few more labels that only contain the '$' character) get on top
of the datagrid. Even if I restore the form to its normal size the labels are positioned wherever they want. The weird thing is that this only happens with some labels and not with all of them.My first guess was the anchor property, but I set it to left-bottom and it still does this.

View 6 Replies

Moving Labels From One Location To Another In A Form In 4?

Feb 26, 2011

I'm making a small program in which i want to move labels from one position to another , I used the following statementLabel1.Location.Y = 10 ' Error - Expression is a value and cannot be the target of an assignment

View 3 Replies

Resize Labels According To The Size Of The Form?

Dec 19, 2011

I have an application in VB. In a single form are lots of labels with atleast 3 different sizes. What I want to do is, when I resize the form or maximize it, all of the labels and pictureboxes int the form are also going to be resized.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved