Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~9K People Reached
About Me

╔♫═╗ ╔╗ ♥ ╚╗╔╝ ║║♫═╦╦╦╔╗ ╔╔╗ ╔╝╚╗ ♫╚╣║║║║╔╣ ║║║ ╚═♫╝ ╚═╩═╩♫╩═╝ ╚═♫ © NO COPYRIGHTS. █║▌│█│║▌║││█║▌║▌║

Favorite Forums
Member Avatar for ak24

Hello... I have three textboxes on a form. The first two are for entering numbers for addition. And the third is for displaying the result of addition. I want the result of addition to appear in the third textbox as soon as I enter the numbers in the first two …

Member Avatar for Santanu Das
0
7K
Member Avatar for arvinrrnhine

I dont know the code! PLS HELP!!! I want to create a program that scan QR Code and Display the value in a textbox in VB.NET

Member Avatar for Hamza_B
0
2K
Member Avatar for arvinrrnhine

Private Sub txtamount_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtamount.TextChanged If String.IsNullOrEmpty(txtquantity.Text) OrElse String.IsNullOrEmpty(txtamount.Text) Then Exit Sub If Not IsNumeric(txtquantity.Text) OrElse Not IsNumeric(txtamount.Text) Then Exit Sub txttotal.Text = CDbl(txtquantity.Text) * CDbl(txtamount.Text) End Sub Private Sub txtquantity_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtquantity.TextChanged If String.IsNullOrEmpty(txtquantity.Text) OrElse …

Member Avatar for cgeier
0
190