Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~11.0K People Reached
About Me

"My mam never has never beaten because of coding"

Interests
programming
PC Specs
Computer networking and programming
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for gloria_4

If you really want it real time regardless of which textbox you fill first, then make use of the text changed event i.e Private Sub textbox1 _TextChanged(sender As System.Object, e As System.EventArgs) Handles textbox1 .TextChanged textboxsum .Text = Format(Val(textbox1 .Text.Replace(",", "")) - Val(textbox2 .Text.Replace(",", "")), "0.00") End Sub Private Sub …

Member Avatar for mukiibi
0
9K
Member Avatar for kasun.madushanka.77770
Member Avatar for pratik65

i think that by the time you insert the marks into the database, the computation of the grades and everything should have already been done on your interface and about retrieving the results, i believe every student should have an id so you have to enter different marks for the …

Member Avatar for Dili1234
0
1K
Member Avatar for mukiibi

This code can help you to find the square root of three numbers accepting the inputs from the user and displaying the results in a Joption pane. let me hope it will help import javax.swing.JOptionPane; import java.text.DecimalFormat; public class Squareroot { public static void main(String[] args) { String stringNum1,stringNum2,stringNum3; double …

0
99
Member Avatar for mukiibi

The code below compares three numbers and it prints out the Maximum and Minimum value, let me hope it will rescue somebody :) import java.util.Scanner; public class MaxMin { public static void main(String args[]) { int w,x, y; System.out.println("\n\nTHE PROGRAM BELOW CALCULATES AND OUT PUTS THE MAXIMUM AND MINIMUM OF …

Member Avatar for bibiki
0
225

The End.