Feb 28, 2008 #1 peljo Technical User Mar 3, 2006 91 BG Does anybody know some referemce how to build a simple calculator on the form ?
Feb 28, 2008 #2 Remou Technical User Sep 30, 2002 13,030 BE You could use Shell and possibly AppActivate with the built-in calculator. A very simple calculator can be created with two textboxes and Eval: Text1: 2*3+4 Text2: 10 'Answer Code: Private Sub Text1_AfterUpdate() Me.Text2 = Eval(Me.Text1) End Sub Upvote 0 Downvote
You could use Shell and possibly AppActivate with the built-in calculator. A very simple calculator can be created with two textboxes and Eval: Text1: 2*3+4 Text2: 10 'Answer Code: Private Sub Text1_AfterUpdate() Me.Text2 = Eval(Me.Text1) End Sub
Feb 28, 2008 #3 ZmrAbdulla Technical User Apr 22, 2003 4,364 AE look for Calculator here.. http://www.mvps.org/access/resources/downloads.htm ________________________________________________________ Zameer Abdulla Help to find Missing people Upvote 0 Downvote
look for Calculator here.. http://www.mvps.org/access/resources/downloads.htm ________________________________________________________ Zameer Abdulla Help to find Missing people