Browsing all posts in "seksi".

seksi drag and drop

Okay we now we learn how to make drag and drop application,with it we can drag and drop from label to or from textfield
import java.awt.GridLayout;
import java.awt.event.*;
import javax.swing.*;
/**
* Demo drag dan drop
*
* @author Didik Dwi Prasetyo, [didik_rpl at yahoo dot com]
* @version 1.00
*/
public class DragDrop extends JFrame {
JTextField txt;
JLabel lbl;
public DragDrop() {
super(”Drag dan Drop Teks”);
JPanel txtPanel [...]