欢迎来到天天文库
浏览记录
ID:56397136
大小:102.00 KB
页数:19页
时间:2020-06-23
《科学计算器vb代码.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、·用VB写计算器似乎有很多例子,这个代码就是其中之一,科学计算器是在基本计算器的基础上,加入角度、弧度、梯度、正切、余切、正弦余弦、平方根等的数学计算,当然基础的加减乘除运算就更不用说了,这是在一本VB教程中摘录的代码,你可以此为基础完善扩展该计算器的功能,运行截图如下:核心代码,只有一个文件代码:VERSION5.00BeginVB.FormFrm_ScientificCaption="计算器"ClientHeight=2925ClientLeft=165ClientTop=735ClientWidth=5595LinkTopic="For
2、m1"LockControls=-1'TrueMaxButton=0'FalseScaleHeight=2925ScaleWidth=5595StartUpPosition=3'窗口缺省BeginVB.CommandButtonCmd_RndCaption="Rnd"Height=390Left=5025TabIndex=39Top=1455Width=510EndBeginVB.CommandButtonCmd_PICaption="PI"Height=390Left=1575TabIndex=38Top=2400Width=630EndB
3、eginVB.CommandButtonCmd_FactCaption="N!"Height=390Left=1575TabIndex=37Top=1935Width=630EndBeginVB.CommandButtonCmd_LogCaption="Log"Height=390Left=1575TabIndex=36Top=1455Width=630EndBeginVB.CommandButtonCmd_LnCaption="Ln"Height=390Left=1575TabIndex=35Top=960Width=630EndBegin
4、VB.CommandButtonCmd_SquareCaption="X^2"Height=390Left=840TabIndex=34Top=2400Width=630EndBeginVB.CommandButtonCmd_CubeCaption="X^3"Height=390Left=825TabIndex=33Top=1935Width=630EndBeginVB.CommandButtonCmd_OperatorCaption="X^Y"Height=390Index=5Left=840TabIndex=32Top=1455Width
5、=630EndBeginVB.CommandButtonCmd_ExpCaption="Exp"Height=390Left=840TabIndex=31Top=960Width=630EndBeginVB.CommandButtonCmd_SinCaption="Sin"Height=390Left=120TabIndex=30Top=960Width=630EndBeginVB.CommandButtonCmd_CosCaption="Cos"Height=390Left=120TabIndex=29Top=1455Width=630En
6、dBeginVB.CommandButtonCmd_TanCaption="Tan"Height=390Left=120TabIndex=28Top=1935Width=630EndBeginVB.CommandButtonCmd_AtanCaption="Atan"Height=390Left=120TabIndex=27Top=2400Width=630EndBeginVB.FrameFrame1Height=510Left=90TabIndex=23Top=330Width=2625BeginVB.OptionButtonOtn_Grd
7、Caption="梯度"Height=180Left=1695TabIndex=26Top=210Width=750EndBeginVB.OptionButtonOtn_RadCaption="弧度"Height=180Left=900TabIndex=25Top=210Width=795EndBeginVB.OptionButtonOtn_DegCaption="角度"Height=180Left=135TabIndex=24Top=210Value=-1'TrueWidth=675EndEndBeginVB.CommandButtonCm
8、d_OperatorCaption="="Height=390Index=4Left=5025TabIndex=22Top=2400Width=510EndBegi
此文档下载收益归作者所有