This tutorial will teach you how to send the data from one jframe to another Using java.data will be displayed on the second jframe.in the example i am going to teach add two number to calculating the total.the total will be displayed on the second jframe.
paste the code inside the send button
int num1,num2,tot; num1 = Integer.parseInt(txtno1.getText()); num2 = Integer.parseInt(txtno2.getText()); tot = num1 + num2; new second(tot).setVisible(true);
public class second extends javax.swing.JFrame { public second() { initComponents(); } int total; second(int tot) { initComponents(); this.total = tot; txttot.setText(String.valueOf(total)); }
The Touchable Shop POS (Point of Sale) system is a sophisticated software solution developed using…
Creating a responsive login form is a crucial skill for any web developer. In this…
In this tutorial will teach Laravel 12 CRUD API by step. Laravel 10 CRUD Application …
In this lesson we talk about laravel 12 image uploading and display the image step…
In this tutorial will teach Laravel 12 CRUD Application step by step. Laravel 12 CRUD…
Conditional statements in Python allow us to control the flow of execution based on conditions.…