i've some problems in creating a program using V.B since i'm new in learning this language. basically i learn V.B just by browsing the net by myself without any guide from other people.
i need to work on my task (downloadable calculation) and i'd be glad if u help me sharing the code for calculation.
thank you
Hi there,
What is "downloadable calculation" in the first place? Can you explain a little bit more on the term "downloadable calculation"? Anyway, since you are talking abt calculation in VB, kindly refer to below code segment, hope it helps. Good luck & Take care.
-
Dim intValue1, intValue2, intTotal As Integer
-
-
intValue1 = 1
-
intValue2 = 1
-
-
intTotal = intValue1 + intValue2
-
-
MsgBox intTotal
-