Skip to content

Instantly share code, notes, and snippets.

@anugrahbsoe
Created December 15, 2014 11:37
Show Gist options
  • Save anugrahbsoe/3c570722a0d695cb65be to your computer and use it in GitHub Desktop.
Save anugrahbsoe/3c570722a0d695cb65be to your computer and use it in GitHub Desktop.
membuat textarea dan scrollpane resizable
//membuat textarea dan scrollpane resizable
scrollPane = new JScrollPane();
scrollPane.setAutoscrolls(true);
scrollPane.setBounds(120, 330, 524, 72);
scrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
contentPane.add(scrollPane);
txtSolusi = new JTextArea();
txtSolusi.setLineWrap(true);
txtSolusi.setEditable(false);
txtSolusi.setEnabled(false);
scrollPane.setViewportView(txtSolusi);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment