Form1.frm
上传用户:woden7206
上传日期:2015-11-28
资源大小:14486k
文件大小:2k
源码类别:

单片机开发

开发平台:

MultiPlatform

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   7980
  5.    ClientLeft      =   60
  6.    ClientTop       =   450
  7.    ClientWidth     =   8565
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   7980
  10.    ScaleWidth      =   8565
  11.    StartUpPosition =   3  '窗口缺省
  12.    Begin VB.CommandButton Command1 
  13.       Caption         =   "计算"
  14.       Height          =   615
  15.       Left            =   6360
  16.       TabIndex        =   1
  17.       Top             =   480
  18.       Width           =   1575
  19.    End
  20.    Begin VB.TextBox txtInfo 
  21.       Height          =   6855
  22.       Left            =   360
  23.       MultiLine       =   -1  'True
  24.       ScrollBars      =   2  'Vertical
  25.       TabIndex        =   0
  26.       Top             =   480
  27.       Width           =   5535
  28.    End
  29. End
  30. Attribute VB_Name = "Form1"
  31. Attribute VB_GlobalNameSpace = False
  32. Attribute VB_Creatable = False
  33. Attribute VB_PredeclaredId = True
  34. Attribute VB_Exposed = False
  35. Const MAX_CNT = 512
  36. Private Sub Command1_Click()
  37.     Dim i As Long
  38.     Dim t As Double
  39.     For i = 0 To MAX_CNT - 1
  40.         t = Sin(3.14159265758 * 2# * CDbl(i) / 128) 'CDbl(MAX_CNT))
  41.         t = t * 127 + 128
  42.         s = Sin(3.14159265758 * 2# * CDbl(i) * 1209 / 697 / 128) 'CDbl(MAX_CNT)))
  43.         s = s * 127 + 128
  44.         x = (t + s)  2
  45.        'txtInfo.Text = txtInfo.Text + vbTab + Str(i) + ":" + Str(CInt(t)) + Str(CInt(s)) + Str(CInt(x)) + ";" + vbCrLf
  46.        txtInfo.Text = txtInfo.Text + vbTab + Str(CInt(x)) + vbCrLf
  47.     Next
  48. End Sub