The section for radiobutton2 does not work properly
Usually it returns either nothing or it wil display the msgbox insuficient funds, and wont debi if its proper
' Declare the value of service charge
servicecharge = 10
transaction = TextBox1.Text
' Deposit Funds to the account
If RadioButton1.Checked = True Then
Label3.Text = Label3.Text + TextBox1.Text
End If
If RadioButton2.Checked Then
If Label3.Text > TextBox1.Text Then
Label3.Text = Label3.Text - TextBox1.Text
ElseIf TextBox1.Text.ToString > Label3.Text Then
MessageBox.Show("Insufficient Funds")
Label3.Text = Label3.Text - servicecharge
End If
End If
If RadioButton3.Checked = True Then
Label3.Text = Label3.Text - servicecharge
End If