1 / 3
特殊的元件 (P. 11-19)
30 likes | 158 Vues
特殊的元件 (P. 11-19). MultiPage. OptionButton. Frame. 執行例. Program Code. Private Sub CommandButton1_Click() Dim rate As Double Dim nper As Integer Dim pmt As Integer rate = TextBox1.Text / 100 / 12 nper = TextBox2.Text pmt = TextBox3.Text * -1 If OptionButton1.Value Then
Télécharger la présentation
特殊的元件 (P. 11-19)
An Image/Link below is provided (as is) to download presentation
Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author.
Content is provided to you AS IS for your information and personal use only.
Download presentation by click this link.
While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server.
During download, if you can't get a presentation, the file might be deleted by the publisher.
E N D
Presentation Transcript
特殊的元件(P. 11-19) MultiPage OptionButton Frame
Program Code Private Sub CommandButton1_Click() Dim rate As Double Dim nper As Integer Dim pmt As Integer rate = TextBox1.Text / 100 / 12 nper = TextBox2.Text pmt = TextBox3.Text * -1 If OptionButton1.Value Then MsgBox "Future Value=" & FV(rate, nper, pmt, 0, 0) Else MsgBox "Future Value=" & FV(rate, nper, pmt, 0, 1) End If End Sub Private Sub CommandButton2_Click() End End Sub
More Related