Some Clarification.

M

Manuel Canas

I would like to know if this is true or not.

..NET does not support OLE drap and drop.

Let's say a OLE container(Scheduler) does not accept drag and drop from
another VB.NET control (Textbox) into it????

Find it hard to believe microsoft is not supporting this on VB.NET.

Anybody out there that know the asnwer to this one please.

Thanks in advance.

Manny
 
O

One Handed Man \( OHM - Terry Burns \)

I'm guessing, but thats probably more to do with the object you are trying
to drop. Scheduler will need an object of Type Appointment, or something
similar I would think.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing
 
J

Jay B. Harlow [MVP - Outlook]

Manuel,
I would like to know if this is true or not.

.NET does not support OLE drap and drop.
It is not true. .NET does support OLE drag & drop.

Let's say a OLE container(Scheduler) does not accept drag and drop from
another VB.NET control (Textbox) into it????
It is up to Scheduler on what formats it accepts, and what formats the
VB.NET control offers.

For example you can select & drag text from Word or Excel and drop in onto a
Windows Forms app, and it will be transferred as DataFormats.Text plus some
other common formats & some Word & Excel specific formats.

If your Scheduler control uses a proprietary format that only your Scheduler
knows about, then the TextBox cannot offer the format to it.

Charles Petzold's book "Programming Microsoft Windows with Microsoft Visual
Basic.NET - Core Reference" from MS Press provides some good information on
Drag & Drop, plus a sample app that shows the formats that are available
when you drag & drop with another app.

Hope this helps
Jay
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top