Praneeth Pj
Praneeth Pj

Reputation: 351

Java Drag drop and netbeans

I create the GUI using the netbeans,I need to adding Drag and drop components to my project.but I tired of doing this.netbeans is not supporting (or not dragging correctly)drag and drop while the programme in the running.so I need your helps?

Upvotes: 1

Views: 2512

Answers (2)

Kumar Vivek Mitra
Kumar Vivek Mitra

Reputation: 33544

Drag and Drop features have been lessened/removed from NetBeans' current version.

Try using NetBeans version 6.1 to 6.8, which support full Drag and Drop functionality.

Upvotes: 0

MadProgrammer
MadProgrammer

Reputation: 347334

Does Netbeans bring up any kind of error (like the component can't be initialized or something??).

If so you can find the logs in {user}/.netbeans/{version}/var/log/messages.log

On Windows 7, that would be /users/{user}/.netbeans/{version}/var/log/messages.log

Netbeans 7.2 moved it to .AppData/local (I think - check roam if it's not there)

This will give you an idea of what the error is (includes a nice stack trace)

Also remember that components in the palette require a empty constructor

Upvotes: 2

Related Questions