Re: [Interest] Problems with Drag and Drop in Windows 7

2012-02-03 Thread norulez
Ok, I found the problem... Under Windows 7 the qt creator was configured to start/run as administrator. After I removed this property it works like expected. The Problem seems to be that the qt creator was running as administrator and the files were dragged with the current logged on user. Than

Re: [Interest] Problems with Drag and Drop in Windows 7

2012-01-26 Thread Wolfgang Baron
> Hello again, > I've attached a small and simple example, which doesn't work. > Maybe someone coul?d help You have to call "event->acceptProposedAction();" in your dragEnterEvent() implementation, as stated in the documentation. -- Cheers, Wolfgang Baron

Re: [Interest] Problems with Drag and Drop in Windows 7

2012-01-25 Thread Samuel Gaist
In my case they are reached. Are you building your application in debug or release mode ? In release mode, it won't break. Furthermore a line like int n = 0; is likely to get optimized out. If you want to have the correct behavior, do as said in the documentation with the acceptProposedAction(

Re: [Interest] Problems with Drag and Drop in Windows 7

2012-01-25 Thread norulez
But the main problem is that the breakpoint in the functions aren't reached. Make a breakpoint on a line (int n = 0;) in the code and run in debug mode Am 25.01.2012 um 16:48 schrieb Samuel Gaist : > > On 25 janv. 2012, at 15:44, NoRulez wrote: > >> Hello again, >> >> I've attached a small an

Re: [Interest] Problems with Drag and Drop in Windows 7

2012-01-25 Thread Samuel Gaist
On 25 janv. 2012, at 15:44, NoRulez wrote: > Hello again, > > I've attached a small and simple example, which doesn't work. > > Maybe someone could help > > Thanks in advance > Best Regards > > ___ > Interest mailing list > Interest@qt-project.org >

[Interest] Problems with Drag and Drop in Windows 7

2012-01-25 Thread NoRulez
Hello again,I've attached a small and simple example, which doesn't work.Maybe someone could helpThanks in advanceBest Regards DragDropExample.rar Description: Binary data ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mai

[Interest] Problems with Drag and Drop in Windows 7

2012-01-25 Thread NoRulez
Hello @all,I tried to compile and run the example which is listed here: http://developer.qt.nokia.com/wiki/Drag_and_Drop_of_fileshttps://www.gitorious.org/qtdevnet-wiki-mvc/qtdevnet-dropfilesMy Problem now is that I can't drop any files into the MDI Area.I already tried to create a simple applicati