Hey,
Hopefully this should be simple enough for someone to help with.
I am writing a simple program to do a couple of calculations. I have got this far by doing tutorials.
My program does a calculation and puts the result in a external Message box. How do I change it so the result will appear on the same form?
Here is a section of code:
As you can see its very simple stuff but I dont like the way it shows me the result in an external pop-up box.
I would like to create a text box at the bottom of my form which displays the answer when I click the button for result.
Any help with this would be greatly appreciated.
Thanks All!!
Hopefully this should be simple enough for someone to help with.
I am writing a simple program to do a couple of calculations. I have got this far by doing tutorials.
My program does a calculation and puts the result in a external Message box. How do I change it so the result will appear on the same form?
Here is a section of code:
VB.NET:
Select Case A
Case A = 0 To 99.99
MsgBox(L)
Case A = 100 To 499.99
If CheckBox1.Checked = False Then
MsgBox(B & " " & vbCrLf & vbCrLf & C & A * 0.9)
Else
MsgBox(B & " " & vbCrLf & M & vbCrLf & vbCrLf & C & A * 0.875)
End If
As you can see its very simple stuff but I dont like the way it shows me the result in an external pop-up box.
I would like to create a text box at the bottom of my form which displays the answer when I click the button for result.
Any help with this would be greatly appreciated.
Thanks All!!