VERSION 4.00 Begin VB.Form Form3 BorderStyle = 3 'Fixed Dialog Caption = "Parameters of oscillator" ClientHeight = 3390 ClientLeft = 2640 ClientTop = 2160 ClientWidth = 5190 Height = 3795 Left = 2580 LinkTopic = "Form3" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 3390 ScaleWidth = 5190 ShowInTaskbar = 0 'False Top = 1815 Width = 5310 Begin VB.CommandButton Cmdrep Caption = "Ok" BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 1920 TabIndex = 4 Top = 2520 Width = 1575 End Begin VB.TextBox Text2 BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 3600 TabIndex = 3 Text = "0.05" Top = 1560 Width = 1215 End Begin VB.TextBox Text1 BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 3600 TabIndex = 1 Text = "500" Top = 480 Width = 1215 End Begin VB.Label Label2 Caption = "Reduced damping:" BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 615 Left = 480 TabIndex = 2 Top = 1680 Width = 2775 End Begin VB.Label Label1 Caption = "Frequency of oscillator :" BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 615 Left = 360 TabIndex = 0 Top = 480 Width = 2895 End End Attribute VB_Name = "Form3" Attribute VB_Creatable = False Attribute VB_Exposed = False Private Sub Command1_Click() End Sub Private Sub Cmdrep_Click() freq = Val(Text1.Text) dzeta = Val(Text2.Text) Unload Me End Sub