how to get sum of two numbers in vb.net?
Answer Posted / prashant
windows form application vb.net
Private Sub Button1_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles Button1.Click
Dim a As Integer
Dim b As Integer
Dim c As Integer
a = Convert.ToInt32(Me.TextBox3.Text)
b = Convert.ToInt32(Me.TextBox11.Text)
c = a * b
TextBox13.Text = c
End Sub
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why should you use delegate?
Did vb6 support multi-threading ?
Explain redim keyword?
List the two main parts of .net?
What is portable executable?
What is tracing?
What is option strict?
Write the role of new keyword?
Which is the base class for all the classes in .net framework?
What is the top .net class that everything is derived from?
What are the advantages of migrating to vb.net?
What is late binding?
Explain private assembly?
I Am Developing A project where I can send Message from One Computer to Another Computer With The Help Of LAN.Already I Have developed..It is working Fine With The Details Of ..TO,FROM,REF No,DATE,BODY...Now I Want To Add Attachments part in the same projects...How Can I Send Attachment File & How To Send It..I Am Working in VB.Net 2005 With out Any database. Can Any One Help me ??How To Write Code??Plz Send me a copy to my Mail also...I Dont Need Any Software Available in The Internet...Plz refer me The Code in VB.Net maloy.adhikari@in.com
Before in my vb app I would just load the icons from dll. How can I load the icons provided by .net dynamically?