NetBeans Forums
| View previous topic :: View next topic |
| Author |
Message |
didiember
Joined: 21 Jul 2012 Posts: 2
|
Posted: Sat Jul 21, 2012 5:38 pm Post subject: hi can anybody solve my problem on iReport |
|
|
hi can anybody solve my problem on iReport
to print the action id just a JTextField
this my code to do the detail report
what if the only print a report based on the id
my code
| Code: |
private void btnprintActionPerformed(java.awt.event.ActionEvent evt) {
try {
JRDesignQuery newQuery = new JRDesignQuery();
File file = new File("src/report/pembayaran.jrxml");
jasperDesign = JRXmlLoader.load(file);
param.clear();
jasperReport = JasperCompileManager.compileReport(jasperDesign);
jasperPrint = JasperFillManager.fillReport(jasperReport, param, koneksi.getConnection());
JasperViewer.viewReport(jasperPrint, false);
} catch (Exception e) {
e.printStackTrace();
}
}
public void table(){
String[] header = {"ID", "NAMA", "ALAMAT","TELEPON","tipe_barang ","jumlah","total_harga(RP.)","waktu_ bayar"};
koneksi.tampilTabel(jTable1, header, "SELECT no_pelanggan,nama,alamat,telepon,tipe_produk,jumlah,total_harga,waktu_bayar_terakhir FROM view_pembayaran where no_pelanggan='" + no_pelanggan.getText() + "'");
}
perhaps there are tutorial
thanks before :cry: :lol: |
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You can attach files in this forum You can download files in this forum
|
|