Create form with three text boxes(text1,text2,text3), one CommandButton(cmdAdd) and one label(label1). Double click on the button and add the following code.
Private Sub cmdAdd_Click()
Dim x1, x2, x3, sum As Single
x1 = Val(Text1.Text)
x2 = Val(Text2.Text)
x3 = Val(Text3.Text)
sum = x1 + x2...
Is there a simple way to bind an ado recordset to a flex grid so that the data is in columns instead of rows without going through each record in a nested for loop and transposing the data?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.