Thanks for your responses. I couldn't get anything to happen on the table if I just used the kind of commands that you suggested. I'll try it again though just in case I missed something the first time. Getting the calculated results to be put into the table is my cheif concern because those...
This is th code I tried on the third field.
method arrive(var eventInfo MoveEvent)
var
N1 Number
N2 Number
tc TCursor
endvar
tc.open("Calculator.db")
tc.Edit()
N1 = tc."FirstNum"
N2 = tc."SecNum"
tc."Sum" = N1 + N2
tc.postRecord()
tc.endEdit()
endMethod
I have a form and a table set up. The form allows me to enter two numbers and the third field adds the two numbers. When I look at the table it contains the two entered numbers, but does not show the calculated amount. I tried entering a formula in ObjectPAL. I'm quite new to this and I need an...
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.