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
Favorite Tags

3 Posted Topics

Member Avatar for ak24

This code works for me but when i delete both value of the textbox the total is still there... any solution for my problem?

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
194

The End.