0
votes
1answer
21 views

FineUploader Drag-and-Drop Issue in Chrome

I've been working on implementing the FineUploader within an application and have encountered a minor issue (which isn't a deal-breaker) but I am just curious as to why it may not be working. The ...
0
votes
1answer
29 views

HTML5 - drag&drop a JPG and receive its width

I want to receive the width of a JPG after dragging it into the browser window. The strange thing is, sometimes it works perfectly and sometimes a width of zero is returned. fiddle ...
0
votes
1answer
16 views

SharpDevelop Drag-and-Drop a external file to a project as a link

In #develop (SharpDevelop IDE) I can add a file to a project as a link via : Right click in the project -> Add -> Existing item -> Add as link but how can I do this via drag-and-drop... I've tryed ...
4
votes
2answers
68 views

Java: How to drag a file from a JTable to native filesystem?

My Java 7 Swing application features a JTable that contains the following objects: public class MyFile { private long id; private long created; private long modified; private String ...
0
votes
1answer
38 views

Dragging images in jQuery

I have developed an option that enables users to drag and drop images into a div and upload that image. For that i am using: jQuery.event.props.push('dataTransfer'); and for getting files, i am ...
0
votes
2answers
25 views

How do I create an area were files dragged into it add the URI to a list?

I am trying to create a program were the user drags a file into an area (currently a JTextArea, but can be another container) and it adds the absolute path of the file to an ArrayList. I am having ...
0
votes
1answer
38 views

drop file in div and put it in file input

I have problem with dropped file in div I want to put it in file input I have this code document.getElementById('drop_div').addEventListener('drop', function(e){ e.preventDefault(); var ...
2
votes
1answer
504 views

Visual Studio does not let me drag drop items into it?

When using Visual studio 2010 I got problems that when dubble click for example a config file(*.config) Visual Studio would open but give me a error message about parameters. If I simple try to drag ...
0
votes
0answers
38 views

Drag'n'dropping files from Java app to any folder

I need to let users drag and drop files from my FTP-browser-like Java application to their desktop (or any other folder). I got a working draft using the TransferHandler and Transferable classes. My ...
0
votes
1answer
592 views

Drag and drop files and saving it using mvc

I want to upload file using drag and drop..i have written code as below but everytime its showing upload failed...plz can anyone tell me wherei am wrong...i want to drag items from outer source and i ...
0
votes
1answer
395 views

drag and drop files from OS into JTable java

Can someone show me what I'm doing wrong? I was able to get drag and drop working with a regular panel but now trying witha table and I can't sort it out. I'm getting confused with the Points and ...
0
votes
1answer
62 views

how drag and drop from tree list to windows file system?

I need drag and drop item, which represent file, to windows file system in C++. For how i can only drag and drop file from filesystem to my program, but how do that in opposite way?
0
votes
2answers
298 views

Java - How to drag and drop a file on to a JTextArea

i have a JTextField inside a JFrame, and I want it to find the file path of a file whenever the file is dragged in to the JTextField. Should I use some kind of Listener? How should I do this? public ...
2
votes
2answers
696 views

HTML 5 drag and drop in firefox not working as expected

I am implementing a file processor in JS and HTML 5 and it is working as expected in Chome, but not in Firefox. Here is the jsfiddle: http://jsfiddle.net/vapocalypse/G9QbX/ In Firefox, the drop ...
0
votes
1answer
47 views

How do I make a file draggable off of a JPanel?

I'm trying to make a program that allows users to drag files onto a window, it will then draw their icon/name where they dropped it. This I have working. My only issue is that I want the users to then ...
-1
votes
1answer
172 views

How to drag and drop files to copy into directory?

I have this label: //---- label5 ---- label5.setText("Drag and drop your texture\npack in the box *.zip files"); label5.setIcon(new ImageIcon( ...
4
votes
3answers
360 views

How can i implement opening a file with my java program?

I have a basic, simple and maybe stupid question, but how do I implement that I can drag a file onto my java program and open it? I searched really long for this basic question..... As long as I ...
1
vote
0answers
259 views

Downloading multiple files with data-downloadurl

I was looking over this case study on HTML5 drag-and-drop file download using data-downloadurl. I have a working model of this method that can download a file retrieved from the server on drop, but I ...
0
votes
1answer
56 views

html5 drag and drop returning wrong mime?

I have a HTML5 drag and drop file uploader, and it all works perfectly. However if I change say a .txt file to a .jpg file and upload it, the mime becomes image/jpeg, and the extension is .jpg. How ...
3
votes
2answers
626 views

HTML5: drag out a JS generated file

I have a feeling security concerns may not allow this but is it possible to generate a file with JavaScript and allow the user to drag it to the desktop (or file system)? The following code drags out ...
1
vote
1answer
2k views

How to make Uploadify work with Drag & Drop files?

How would I make Uploadify (http://www.uploadify.com/demos/) work with drag and drop files? I'm trying to create exactly this using Uploadify: I just don't know how to start? I assume that I will ...
3
votes
1answer
1k views

Drag and drop ajax file upload

I want to be able to upload files with drag and drop functionality via ajax. However, IE doesn't seem to support any type of drag and drop. Is there any way for IE to accept file drag and drop?
-1
votes
1answer
221 views

how to implement drag-and-drop functionality in cocoa?

Suppose I have a cocoa application with just a window and nothing in it. But if the user drags and drops a file into this window, the file will automatically be copied to a particular directory. How ...
0
votes
1answer
1k views

Can I use Jquery to implement a drag drop file from outside into web page (inter-Window drag drop) (like gmail attachment)?

Can I use Jquery to implement a drag drop file into web page (like gmail attachment)? Research so far has not shown existing examples: http://stackoverflow.com/search?q=drag+and+drop jQuery Drag ...
-3
votes
1answer
3k views

Drag and drop listview C#

Hi how to I enable drag event handler when I double click on the listview? This is what I get after double-clicking on the listview private void listView1(object sender, EventArgs e) However, I ...
1
vote
1answer
4k views

Drag and drop in listview C#

hi i currently trying to have my program able to drag a file and and drop it into the listview. I have see many sample and most of them have the following code "private void ...
0
votes
2answers
2k views

HTML5 Drag n Drop File Upload

I'm running a website, where I'd like yo upload files with Drag 'n Drop, using HTML5's File Api and FileReader API. I have successfully managed to create a new FileReader, but I don't know how to ...
1
vote
4answers
2k views

HTML5 drag and drop and multiple file upload

I have an HTML form that contains a file input field with multiple file selection and I also have a drag and drop feature that I am working on as well. My question is how to integrate both of these ...
1
vote
2answers
1k views

How do I distinguish a file or a folder in a drag and drop event in c#?

I have a form that you drag and drop files into and I was wondering how can I make the application know if the data is a file or a folder. My first attempt was to look for a "." in the data but then ...
0
votes
2answers
3k views

ActiveX control for drag and drop file upload in IE

Hi I need a drag and drop file upload in my asp.net application like gmail but it should support IE browser only.I thing i have to develop a ActiveX control to achieve this .Can any one guide me or ...
1
vote
0answers
472 views

Delphi - Drag & Drop Files with ListView [duplicate]

Possible Duplicate: Delphi - Drag & Drop with ListView Good evening :-)! I have this code to use Drag & Drop method for files: TForm1 = class(TForm) ... public procedure ...
1
vote
2answers
2k views

Delphi - Drag & Drop with ListView

Good evening :-)! I have this code to use Drag & Drop method for files: TForm1 = class(TForm) ... public procedure DropFiles(var msg: TMessage ); message WM_DROPFILES; end; procedure ...
2
votes
2answers
3k views

Read the contents of a “file” object?

So I have a "File" object (retrieved by handling file drag and drop from desktop). I can send the files to the server with ajax, and then throw them back for javascript to handle them. But is it ...
1
vote
1answer
475 views

swing drag&drop file transferable?

I would like to drag and drop from my application into a system folder, so that when I drop an item, it shows up as a new file that represents the object I dragged. What DataFlavor should I use?
6
votes
2answers
3k views

Get the path of a file dragged into winform

I am developing an application which required user to drag a file from windows explorer into the application window (winform). Is there a way to read the file name, path and other properties of the ...
1
vote
3answers
1k views

Drag and Drop does not work anymore in my project in delphi

This topic obviously has been hitted over and over again here, but now I just run out of options from my point of view. OS: Windows XP SP3 So, here is Drag and Drop example for RichEdit I use in my ...
0
votes
1answer
717 views

Drag and drop from windows explorer to web browser

I'd like in my web to let the user drag and drop a file instead of the tipical and boring <input type="file" />. A perfect example is gmail. You can do EXACTLY what I want to attach files to a ...
1
vote
1answer
589 views

c# Drag and drop functionality

In short, I want to make an application in which users can drag a file form their finder (mac), or their computer explorer (PC) to a location on my application, and then have that dragged file be ...
0
votes
1answer
58 views

What's the simplest way to embed (new) file information in a drag?

I want users to be able to drag elements from my program onto the desktop to create files from them. What's the simplest way to embed this information into a DataObject so explorer will accept drops ...
0
votes
1answer
32 views

Can anyone help me with drag and drop functionality of files using javascript supported by all versions of IE?

Hi I have text box. when I drag and drop a file into it, the path or content of the file should be displayed. the major concern being it's compatibility with all versions of IE. I am a beginner in ...
0
votes
2answers
447 views

How can I tell a shortcut from a file in a C# drag and drop operation?

I have a C# .NET 3.5 app that I have incorporated the DragDrop event on a DataGridView. #region File Browser - Drag and Drop Ops private void dataGridView_fileListing_DragDrop(object sender, ...
7
votes
4answers
3k views

Dropping Files onto Dock Icon in Cocoa

How can I drop a file(or select to open it in Finder) of a type specified in the Info.plist onto my dock icon and then calling a method with the full path of the file?
3
votes
1answer
992 views

Drag Drop to the Desktop after creation of the file? (C#)

I have a query about drag-drop in C# using .NET. My issue is with remote files. I have a list of remote files which the user can drag into an explorer window (desktop, etc). When such a drag occurs I ...
1
vote
1answer
2k views

Cannot get file data from the clipboard using Flex

Given: A Flex TileList with the following event: <mx:nativeDragDrop> <![CDATA[ if(event.clipboard.hasFormat(ClipboardFormats.FILE_LIST_FORMAT)) { var files:Array = ...