Creating Adorners At Runtime Using 2005 For Resizing ,Drag And Drop?

Feb 23, 2009

I am creating a Visual basic Editor application. the thing i amnot able toselect the multiple controls at runtime from my application. Is the AdornerWindow supported at runtime to select the multiple controls at runtime ??RegardsVB 8.0VS.

View 1 Replies


ADVERTISEMENT

DataGridView Drag And Drop With Column Resizing?

Mar 22, 2011

I have implemented couple of websites) drag and drop functionality between two Datagridviews (i.e to be able to add/remove columns on the fly). After much playing, I have managed to make this work, however it now presents a new issue - I cannot resize the columns.Below is the code for this, but I can't see how I would need to change to accomodate the resize (the drag and drop effects dont have it as an option, so I assume I need to stop the dodragdrop when the resize is taking place, but I'm not sure how to do this.

View 2 Replies

Drag And Drop Control In RunTime?

Feb 28, 2010

How can drag and drop control in RunTime ?

View 10 Replies

Drag And Drop Pictureboxes At Runtime?

Oct 14, 2010

Having created my picture boxes at runtime, I am able to drag and drop them, but I have a few technical problems. After a few days of 'playing' seem to be going around in circles.There are three main problems:-

1. The last picturebox created is the only one I can drag.

I tried using "CType(sender,PicBox)" but never got it to work successfully.

2. The picturebox moves to the mouse cursor whenever I click it.

3. There seems to be an offset from where the cursor actually is, to where the picturebox actually moves.

Heres what I have so far.

Private Sub BtnRepeatCubDes_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnRepeatCubDes.Click
Try
intPicBoxCount += 1
ReDim PicBoxes(100)

[code]....

View 3 Replies

Asp.net - Drag & Drop In VB / ASP Using Controls Created During Runtime

May 18, 2009

Site is located at [URL] and the section in question is the "configurator" button on my top row navigation. Everything is written in the latest flavor of VB.NET and ASP 3.5, and I have a SQL2005 server available with my host. Here is the down 'n dirty of my dilemma:

During pageload, I get a list of all the parts in my parts table. Then I create an image object and 2 label objects per entry and place them in my fancy accordion pane control. Works great so far, I can get a giant list of pictures and text that's aligned how I like it (for now). Now - I really need a way to be able to have a visitor drag an image/label/label combo from the accordion over to a panel (or anything really) on the right side that is currently invisible. Once the dragged thing is dropped into the drop target, I would like it to fire a function or sub that I write in VB.

From what I've seen about jquery, apparently there is a way to make an element on my webpage draggable, droppable, or what have you. The example code for it - I'm not entirely understanding so a quickie sample would be great. I'm a fast learner and can apply it from there to my project. More importantly, how do I get objects that are created during runtime to be draggable, and fire my event that I wrote in the only language that I know?

[Code]....

View 1 Replies

Drag And Drop A Picturebox That Was Created During Runtime?

Mar 19, 2010

I have found multiple examples of how to drag and drop images, but all of them use controls that are already on the form at runtime.

In my program, all of my pictureboxes are being drawn during runtime with the following

[code]...

View 1 Replies

Simpler Method Of Drag And Drop Of Buttons In Runtime

Sep 2, 2009

i know is there any simpler ways of coding to enable the user to drag and drop button and this button will toggle the background color when the condition is true. So which means to say i need to know where can i place the main program code in the code block.There will also be a provision for the user to delete the button control at runtime.

View 2 Replies

Creating An Application That Is Able To Drag And Drop?

Dec 29, 2010

I am trying to create and application that has a section on the left of the form that has about 8-10 smallish images in it. The user can then drag the images one at a time from the box of images and create his own model/diagram. I am going to be doing more with the application, but I need to just start by accomplishing this.

View 30 Replies

VS 2005 - ListView Drag And Drop

May 20, 2011

In the attached program, I have 3 listviews.
1 is Source Invoices
2 and 3 is Customers.

When I drag something from ListView1 - it stays there, and turns a different color to show it has already been assigned. It stays in the list. This is what I want. When I drag something between 2 and 3, it should delete from the source and clone to the destination. It does this when I move 1 at a time, but if I select multiples (try 5 records) it does 3 of them, then the source list gets an error:
System.NullReferenceException: Object reference not set to an instance of an object.

If I highlight all 5 items in list 2 or 3 - then select the top item as the item to drag across, it seems to work.
If I highlight all 5 items in list 2 or 3 - then select the middle item as the item to drag across, it seems to NOT work.

I have tried going from top of list to bottom. Then thought, since I am deleting rows, maybe I should start at bottom and work up. Same thing?

View 22 Replies

[2005] Drag And Drop With TreeViews?

Feb 3, 2009

Here is my situation:

I have a TreeView (TreeView1) on the left part of the screen with computers, then I have a list of files on the right side in another TreeView (TreeView2). I would like to drag a file from TreeView2 to TreeView1 and copy the file from the local machine to that other computer.

Now I have the code in a separate function to do the file IO, so all I need to know is how to do the drag and drop..

View 8 Replies

VS 2005 - Drag And Drop From One List Box To Another Listbox

May 2, 2012

I want to select some user from list of user(listbox1) to another listbox(listbox2). The listbox1 contains the userids which is from a access table. If i move from listbox1 to listbox2 with the default values it is working fine, but when i try to do the same which is loaded from access table i am getting error. "Items collection cannot be modified when the DataSource property is set." [Code]

View 2 Replies

VS 2005 Drag And Drop From Files On My Computer

Jul 8, 2009

I am trying to do drag and drop from files on my computer.Say the user has a file on the desktop, and he/she drags it onto the open application, I would like it to read the file path of the file and put that in the first column of my DataGridViewI have tried this but get no luck, I have DataGridView AllowDrop equal to True, but when I drag a file to it I get the "Circle with a line through it" action meaning it can't be done.How do I drag and drop?

View 3 Replies

VS 2005 Drag And Drop From TreeView To Textbox?

Sep 3, 2010

vb
Private Sub SystemFields_ItemDrag(ByVal sender As Object, ByVal e As System.Windows.Forms.ItemDragEventArgs) Handles SystemFields.ItemDrag

[code].....

View 4 Replies

VS 2005 Drag Drop Image In Panel

Mar 19, 2010

I want to drag drop a picture box in a panel, but the problem with this code is that the picture box doesn't drop where my cursor is. Can someone help me.

[code]...

View 1 Replies

Make A Drag And Drop Teeth Chart In VB 2005?

Feb 17, 2009

How can i make a drag and drop teeth chart in vb2005? i really need help, please just tell me how to go about it? i just need a simple dental teeth chart.

View 1 Replies

VS 2005 Drag From Tree View And Drop To Gridview?

Jul 29, 2010

i have a treeview filled with directory structure, now want to drag some file name from treeview and drop it to GridView.

i tried with the Item_Drag event it works for drag only...but GridView's DropOver event doesn't work what can do ?

View 1 Replies

Drag And Drop - Drag Picturebox1 And Drop It In Picturebox2

Nov 18, 2009

I am currently working on a drag and drop project and I was wondering if there is a way to drag picturebox1 and drop it in picturebox2; that will snap to a specific location in the picturebox2?

View 2 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

C# - Drag And Drop From Excel Cells To A Drag-enabled Task Pane Programatically?

Oct 31, 2010

I am using Excel 2007, VS2008 Pro.I am building a VSTO Add-in that requires "drag and drop from Excel cells to a drag-enabled task pane".So far I notice that I can only drag and drop within the cells themselves. It does not allow me to drop into the task Pane or drag past the sheet limits.(http:)[url]...

Note: The task pane has drag drop enabled, I ahve already tested I can drag/drop from task pane to excel but I need to do this the other way around?

View 1 Replies

VS 2008 Listview Drag And Drop (preserving The Listview .tag After Drag And Drop)

May 25, 2011

I am trying to figure out a way to include the listview's tag field when dragging one listview's subitems into another listview. I am hoping someone here has experience with this. My Listview drag code is below - the two listviews that I am dragging subitems into or from are LV1 and LV3. Also, this is being done in Visual Basic 2008 and the project is a windows application.

[Code]...

View 4 Replies

VS 2005 - Creating Folder By Giving Name And Path At Runtime?

Jul 25, 2009

Imports System.IO
Public Class Form1
Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Directory.CreateDirectory("D:Micheal")
End Sub
End Class

This creates a folder. How to create a folder by giving its name and path at the runtime?
not like changing the code and running it again and again
Directory.CreateDirectory("D:Micheal")

View 19 Replies

Drag/Drop Within A Tree And Drag/drop From Tree To Textbox

Oct 20, 2010

drag and drop nodes within the same tree (not between trees) when users drag and drop nodes within the tree, give them the option to move the original node to a new location within the tree OR to just copy the original node in a new location (seems complex but I have a month to figure this out). change the system default blue highlight for selected nodes to another color change the system default cursors for invalid and valid drops (instead of the circle with slash indicating invalid target, i want a red minus) and (instead of the little plus sign with little box indicating a valid target, i want just a big green plus sign) add a red insert line to indicate where the node would be dropped within a tree also drag and drop the text of a node from the tree to a textbox add a "folder" image next to parent nodes and a "document" image next to children nodes

I have looked through the internet but I am having difficulty sorting through all the information available (I see a lot of information for Visual Basic 5 and 6, and those codes don't work for me in visual studio 2008). I can email anyone my code I have so far.

Public Class Form1
Private MouseIsDown As Boolean = False
Public Sub TreeView_ItemDrag(ByVal sender As Object, ByVal e As ItemDragEventArgs)Handles TreeView1.ItemDrag

[Code]....

View 4 Replies

Drag/Drop In A Drop Down List?

Apr 5, 2011

Is it possible to reorder the elements of a drop down list (combobox) via drag and drop?For example, when the list is dropped down, I want the user to be able to drag the items up or down to reorder them. I tried this (and some google searching) but I'm wondering if its just not possible:

Private Sub cmbClassLists_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles cmbClassLists.MouseDown
If cmbClassLists.DroppedDown And Not cmbClassLists.SelectedIndex = -1 Then

[code].....

View 2 Replies

Resizing Array At Runtime In .net?

Jun 8, 2009

on my winform at runtime i will be resizing my array each time i add an element. so first i must resize to the size + 1, and then add a member to this index. how do i do this?

View 5 Replies

Resizing A Rectangle Shape In Runtime?

May 6, 2011

Resizing a Rectangle shape when the program is running.

View 14 Replies

Resizing Controls At Runtime Not Using Anchor Or Dock

Feb 14, 2012

I have a code method that I wrote in vb6 that works on every screensize and resolution combo...however vb.net is not letting me do this. Here is what I do. upon form load at program startup I gather all of the data of the controls (height,width,top,left,font
size) prior to the form actually resizing and I store those in a listbox that is not visible. Then when the form resize is called I proportion all of the controls from their old positions versus the new form size.

[Code]...

View 3 Replies

Resizing In Mdi Form At Runtime In Normal Mode?

Oct 20, 2010

When I compile my solution and execute the program and set the form in window normal, it behaves strangely. The grip is apparent, the mouse changes to the appropriate icon, but I cannot change the size of the window.

View 2 Replies

Resizing Of Forms According To Users Input During Runtime?

Jan 9, 2009

I am creating a form in vb.net and i want its size to change the form as soon as the user inputs the desired number of items. In my form I have two combo boxes: one for number of items and the second is for the choices, then when the user choose 5 items 5 text boxes will appear and if the choice is 25 then 25 text boxes will appear. Is there any way that I can change the form based on the input and number of text boxes?

View 1 Replies

Can't Drag And Drop Right

Jun 23, 2009

I want to be able to hold CTRL down to select multiple text entries and drag them all to certain text boxes. Or even one at a time, but once I try dragging another word into the box it replace the first one. Is there any way to just have it add to the text box rather than replace it?

And if possible, place a "-" between each entry?

This is the pop-up form with the listbox that contains the words to drag:

Private Sub ListBox1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles ListBox1.MouseDown
ListBox1.DoDragDrop(ListBox1.SelectedItem, DragDropEffects.Copy)

[Code]....

View 13 Replies

Drag And Drop In Wpf?

Jan 20, 2011

I am wondering how to do simple drag and drop in wpf? All examples I found over the new were in C#

View 8 Replies







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