-
Drag&Drop
Can anybody give me a hint on how to perform a Drag&Drop on several text
boxes at the time.
Thanks
-
Re: Drag&Drop
Look at the help topic "Drag and Drop Changes in Visual Basic .NET" for an
example of dragging and dropping text.
I'm not sure exactly what you're asking for. If you want the drag operation
to drag the text from several textboxes, just add them together in the
DoDragDrop method:
TextBox1.DoDragDrop(TextBox1.Text & "," & TextBox2.Text,
DragDropEffects.Copy)
KLikewise, if you want to drop the text to several textboxes, you should be
able to do that in the DragDrop event.
--
hth,
Steve Hoag (the V-Bee)
Microsoft Corp.
This posting is provided "AS IS" with no warranties, and confers no rights.
"tg" <terje@erols.com> wrote in message news:3cbf3ad6$1@10.1.10.29...
>
> Can anybody give me a hint on how to perform a Drag&Drop on several text
> boxes at the time.
>
> Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks