Very basic code for a simple calculator
Very basic code for a simple calculator
API Declarations
call command1(*)command2(-)command3(+)command4(\)note \ is a back slash for devide
Rate Very basic code for a simple calculator
(1(1 Vote))
msgbox(text1.text*text2.text)
private sub command2_()
msgbox(text1.text-text2.text)
private sub command3_()
dim x as integer
x=val(text1.text)
dim y as integer
y=val(text2.text)
msgbox(x+y)
'and there you have the code to make a simple calculator
Very basic code for a simple calculator Comments
No comments yet — be the first to post one!
Post a Comment