write a VB.net program to swap two numbers
Answer Posted / biswasmit lenka
Private sub command1_click()
dim a,b,c as integer
a=Val(Text1.Text)
b=Val(Text1.Text)
c=a
a=b
b=c
Text1.text=b
text2.text=a
End sub
Private sub command2_click
end
End sub
| Is This Answer Correct ? | 38 Yes | 12 No |
Post New Answer View All Answers
What are the advantages of VB.NET?
What is intermediate langauge?
What is public assembly?
What is a static class?
Why do we use byref keyword in vb.net?
Explain about garbage collection?
What is the feature anonymous type?
Define cls?
Explain an assembly?
Explain the use of console application?
What is the main use of a namespace?
Is it necessary to have SQL server installed in your computer in order to create a service based database in vb.net?
Explain about the ruby interface generator?
Explain the services provided by common language infrastructure.
What is writeline in vb.net?