...I... III... V TQC-PD VISUAL BASIC VISUAL BASIC VB VB

Size: px
Start display at page:

Download "...I... III... V TQC-PD VISUAL BASIC VISUAL BASIC VB VB"

Transcription

1 TQC-PD Visual Basic

2 ...I... III... V TQC-PD VISUAL BASIC VISUAL BASIC VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB I

3 II

4 2.1.1 VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB III

5 VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB VB IV

6 1 TQC-PD VISUAL BASIC TQC-PD VISUAL BASIC V

7 VI

8 Visual Basic 2008 [1] TQC-PD Visual Basic TQC-PD Visual Basic 2008 (statements) Visual Basic 2008 [1] Visual Basic 2008 TQC-PD Visual Basic

9 2

10 1 TQC-PD Visual Basic 2008 TQC-PD Visual Basic Visual Basic 2008 [1] TQC-PD Visual Basic (statements) TQC-PD Visual Basic TQC-PD Visual Basic TQC-PD Visual Basic V ( ) V ( ) V ( ) 1.2 Visual Basic 2008 [1] 2 3

11 2 TQC-PD Visual Basic SQL MDI ipod / DES /

12 2 Visual Basic 2008 TQC-PD Visual Basic ) 2) 3) 4) ( ) Visual Basic 2008 [1] VB Public Class Form Dim ChkPrice, TotAmount Sub CheckSubRtn() 0006 LblAmount.Text = ChkPrice 0007 End Sub Private Sub ChkPizzaOrginal_CheckedChanged( _ 0010 ByVal sender As System.Object, _ 0011 ByVal e As System.EventArgs) _ 0012 Handles ChkPizzaOrginal.CheckedChanged 0013 If ChkPizzaOrginal.Checked = True Then 0014 ChkPizzaBeef.Checked = False 0015 ChkPizzaSeafood.Checked = False 0016 ChkPrice = Else 0018 ChkPrice = End If 0020 End Sub Private Sub ChkPizzaBeef_CheckedChanged( _ 0023 ByVal sender As System.Object, _ 0024 ByVal e As System.EventArgs) _ 0025 Handles ChkPizzaBeef.CheckedChanged 0026 If ChkPizzaBeef.Checked = True Then 0027 ChkPizzaOrginal.Checked = False 0028 ChkPizzaSeafood.Checked = False 0029 ChkPrice = Else 0031 ChkPrice = 0 5

13 0032 End If 0033 End Sub Private Sub ChkPizzaSeafood_CheckedChanged( _ 0036 ByVal sender As System.Object, _ 0037 ByVal e As System.EventArgs) _ 0038 Handles ChkPizzaSeafood.CheckedChanged 0039 If ChkPizzaSeafood.Checked = True Then 0040 ChkPizzaOrginal.Checked = False 0041 ChkPizzaBeef.Checked = False 0042 ChkPrice = Else 0044 ChkPrice = End If 0046 End Sub Private Sub Form1_Load(ByVal sender As Object, _ 0049 ByVal e As System.EventArgs) _ 0050 Handles Me.Load 0051 ChkPizzaSeafood.Checked = False 0052 ChkPizzaOrginal.Checked = False 0053 ChkPizzaBeef.Checked = False 0054 LblAmount.Text = "" 0055 TxtOrderQuanty.Text = End Sub Private Sub BtnCalculate_Click(ByVal sender As System.Object, _ 0059 ByVal e As System.EventArgs) Handles BtnCalculate.Click 0060 TotAmount = ChkPrice * Val(TxtOrderQuanty.Text) 0061 LblAmount.Text = "NT$" & TotAmount 0062 End Sub Private Sub TxtOrderQuanty_TextChanged(ByVal sender As System.Object, _ 0065 ByVal e As System.EventArgs) Handles TxtOrderQuanty.TextChanged 0066 If Val(TxtOrderQuanty.Text) < 0 Then 0067 TxtOrderQuanty.Text = End If 0069 End Sub End Class Form Form1 Text 2 3 CheckBox Name ChkPizzaOrginal ChkPizzaBeef ChkPizzaSeafood Text $250 $275 $ LabelBox Name Label1 Text 4 1 LabelBox Name LblAmount Text BackColor ControlText ForeColor Lime Font 14pt 5 1 TextBox Name TxtOrderQuanty Text Button Name BtnCalculate Text 6

14 ChkPizzaOrginal ChkPizzaBeef ChkPizzaSeafood Label1 TxtOrderQuanty BtnCalculate LblAmount VB VB VB

15 2.1.2 VB Public Class Form Dim TotAmount Private Sub BtnCalculate_Click(ByVal sender As System.Object, _ 0006 ByVal e As System.EventArgs) Handles BtnCalculate.Click 0007 TotAmount = Val(TxtCapital.Text) * _ 0008 (1 + Val(TxtInterest.Text) / 100) ^ Val(TxtYear.Text) 0009 TotAmount = Math.Round(TotAmount, 1) 0010 lbloutput.text = Format(TotAmount, "###,###,###,##0.0") 0011 End Sub Private Sub Form1_Load(ByVal sender As Object, _ 0014 ByVal e As System.EventArgs) Handles Me.Load 0015 TxtCapital.Text = TxtYear.Text = TxtInterest.Text = End Sub End Class Form Form1 Text 2 GroupBox1 3 LabelBox Name Label1 Label2 Label3 Text 3 GroupBox1 3 TextBox Name TxtCapital TxtInterest TxtYear Text GroupBox1 1 Button Name BtnCalculate Text 5 lbloutput BackColor ControlText ForeColor Chartreuse Font 12pt GroupBox1 TxtCapital Label3 TxtYear Labell Label2 TxtInterest BtnCalculate lbloutput VB

16 2.1.5 VB

17 2.1.3 VB Public Class Form Dim WeekNumber ', 1->, 2-> 0004 Dim DateSerialToday ' 0005 Dim DateSerialVisit ' 0006 Dim DateSerialGape ' 0007 Dim DateYn 0008 Dim GroupAmount As Integer ' Dim num As Integer = 1 ' Public Function checkdate(byval DateYn) As Boolean 0013 ' 0014 ', MessageBox Return false 0015 ' 0016 ', MessageBox Return false 0017 WeekNumber = DatePart("w", tickdate.value) ' If WeekNumber = 2 Then 0019 MsgBox(" ",, " ") 0020 Return False 0021 Else 0022 If WeekNumber = 1 And dayrb2.checked = True Then 0023 MsgBox(" ",, ") 0024 Return False 0025 End If 0026 End If 0027 Return True 0028 End Function Private Sub Form1_Load(ByVal sender As System.Object, _ 0031 ByVal e As System.EventArgs) Handles MyBase.Load 0032 ' 0033 tickdate.mindate = Today 0034 tickdate.value = Today 0035 Me.payPanel.Visible = False 0036 End Sub Private Sub percb_checkedchanged(byval sender As System.Object, _ 0039 ByVal e As System.EventArgs) Handles percb.checkedchanged 0040 ' CheckBox 0041 If percb.checked = True Then 0042 tickpanel.enabled = True 0043 Else 0044 tickpanel.enabled = False 0045 End If 0046 End Sub Private Sub grpcb_checkedchanged(byval sender As System.Object, _ 10

18 0049 ByVal e As System.EventArgs) Handles grpcb.checkedchanged 0050 ' CheckBox 0051 If grpcb.checked = True Then 0052 grouptb.enabled = True 0053 grouptb.text = Else 0055 grouptb.enabled = False 0056 End If 0057 End Sub Private Sub Button2_Click(ByVal sender As System.Object, _ 0060 ByVal e As System.EventArgs) Handles Button2.Click 0061 ' 0062 Me.dayRB1.Checked = True 0063 Me.tickDate.Value = Today 0064 Me.perCB.Checked = True 0065 Me.tickPanel.Enabled = True 0066 Me.tickRB1.Checked = True 0067 Me.num = Me.grpCB.Checked = False 0069 Me.groupTB.Text = "20" 0070 Me.movieCB.Checked = False 0071 Me.vrCB.Checked = False 0072 Me.payPanel.Visible = False 0073 End Sub Private Sub Button1_Click(ByVal sender As System.Object, _ 0076 ByVal e As System.EventArgs) Handles Button1.Click 0077 ' 0078 '() DateYn Function checkdate(dateyn) 0079 If checkdate(dateyn) = True Then 0080 ' 0081 ' CheckPeople() 0082 If grpcb.checked = True Then 0083 CheckPeople(GroupAmount) 0084 If GroupAmount = 0 Then 0085 Exit Sub 0086 End If 0087 End If 0088 ' 0089 Dim tickprice, totalprice As Integer 0090 tickprice = 100 ' 0091 ' tickprice 0092 ' 3D Golf tickprice 0093 ' 0094 ' 0095 ' 0096 Dim AddPrice As Integer ' 0097 Dim PersonAmount As Integer ' 0098 AddPrice = If moviecb.checked = True Then 11

19 0100 AddPrice = AddPrice End If 0102 If vrcb.checked = True Then 0103 AddPrice = AddPrice End If 0105 If dayrb2.checked = True Then 0106 tickprice = Else 0108 tickprice = End If 0110 PersonAmount = If percb.checked = True Then 0112 If tickrb1.checked = True Then 0113 PersonAmount = End If 0115 If tickrb2.checked = True Then 0116 PersonAmount = End If 0118 If tickrb3.checked = True Then 0119 PersonAmount = End If 0121 If tickrb4.checked = True Then 0122 PersonAmount = End If 0124 End If 0125 totalprice = (tickprice + AddPrice) * PersonAmount + _ 0126 (tickprice + AddPrice) * GroupAmount * paylabel.text = "NT$ " & totalprice 0128 paypanel.visible = True Else 0131 ' 0132 paypanel.visible = False 0133 End If 0134 End Sub Private Function CheckPeople(ByRef GroupAmount) As Integer 0137 ' 0138 If IsNumeric(groupTB.Text) = True Then 0139 GroupAmount = Int(Val(groupTB.Text)) 0140 If GroupAmount < 20 Then 0141 MsgBox(" 20 ",, " ") 0142 End If 0143 Else 0144 MsgBox(" ",, " ") 0145 GroupAmount = End If 0147 Return GroupAmount 0148 End Function End Class 12

20 dayrb1 dayrb2 percb tickrb1 tickdate tickrb3 grpcb grouptb tickrb2 vrcb tickrb4 moivecb Button1 Button2 paypanel( ) paylabel( ) VB VB

21 2.1.8 VB VB

22 VB VB

23 2.1.4 VB Public Class Form ' userdict String Key UserRec Dictionary 0004 Dim userdict As New Dictionary(Of String, UserRec) Public Structure UserRec 0007 Public passwd As String 0008 Public sex As Boolean 0009 Public usertype As Byte 0010 Public As String 0011 End Structure Public Sub ClearUserData() 0014 Me.userTypeCB1.SelectedIndex = Me.nameTB1.Text = "" 0016 Me.pwdTB1.Text = "" 0017 Me.pwdCTB1.Text = "" 0018 Me.sexMRB1.Checked = True 0019 Me. TB1.Text = "" 0020 End Sub Private Sub Button1_Click(ByVal sender As System.Object, _ 0023 ByVal e As System.EventArgs) Handles Button1.Click 0024 ' 0025 Dim rec As New UserRec 0026 ' userdict 0027 If userdict.trygetvalue(trim(usertb.text), rec) Then 0028 ' 0029 If Trim(pwdTB.Text) = rec.passwd Then 0030 ' TabPage 0031 usertypecb.selectedindex = rec.usertype 0032 nametb2.text = Trim(userTB.Text) 0033 pwdtb2.text = rec.passwd 0034 If rec.sex = True Then 0035 sexmrb2.checked = True 0036 sexfrb2.checked = False 0037 Else 0038 sexmrb2.checked = False 0039 sexfrb2.checked = True 0040 End If label.text = rec ' 0043 TabControl1.SelectTab(2) 0044 Else 0045 'MessageBox.Show("!", " ", _ 0046 ' MessageBoxButtons.OK, MessageBoxIcon.Warning) 0047 MessageBox.Show("!", " ", _ 0048 MessageBoxButtons.OK, MessageBoxIcon.Warning) 0049 End If 16

24 0050 Else 0051 ' " "TabPage 0052 'Dim msg As String 0053 'msg = " " & Me.userTB.Text & "!" & vbcrlf & _ 0054 '" " 0055 'MessageBox.Show(msg, "!", MessageBoxButtons.OK, _ 0056 'MessageBoxIcon.Warning) 0057 Dim msg As String 0058 msg = " " & Me.userTB.Text & "!" & vbcrlf & _ 0059 " " 0060 MessageBox.Show(msg, "!", MessageBoxButtons.OK, _ 0061 MessageBoxIcon.Warning) 0062 ' 0063 ClearUserData() 0064 TabControl1.SelectTab(1) 0065 End If 0066 End Sub Private Sub Button4_Click(ByVal sender As System.Object, _ 0069 ByVal e As System.EventArgs) Handles Button4.Click 0070 ' 0071 Dim rec As New UserRec 0072 ' 0073 'MessageBox.Show(" " & Me.nameTB1.Text & "!", _ 0074 '" ", MessageBoxButtons.OK, MessageBoxIcon.Information) 0075 'MessageBox.Show(" " & Me.nameTB1.Text & "!" & _ 0076 'vbcrlf & " ", ", _ 0077 'MessageBoxButtons.OK, MessageBoxIcon.Information) 0078 If userdict.trygetvalue(trim(nametb1.text), rec) Then 0079 MessageBox.Show(" " & Me.nameTB1.Text & "!", _ 0080 " ", MessageBoxButtons.OK, MessageBoxIcon.Information) 0081 Else 0082 MessageBox.Show(" " & Me.nameTB1.Text & "!" & _ 0083 vbcrlf & " ", ", _ 0084 MessageBoxButtons.OK, MessageBoxIcon.Information) 0085 End If 0086 End Sub Private Sub Button3_Click(ByVal sender As System.Object, _ 0089 ByVal e As System.EventArgs) Handles Button3.Click 0090 ' 0091 Dim rec As New UserRec 0092 ' 0093 If Trim(nameTB1.Text) = "" Or _ 0094 Trim(pwdTB1.Text) = "" Or _ 0095 Trim(pwdCTB1.Text) = "" Then 0096 MsgBox("!",, " ") 0097 Exit Sub 0098 End If 0099 ' 17

25 0100 If Trim(pwdTB1.Text) <> Trim(pwdCTB1.Text) Then 0101 MsgBox("!",, " ") 0102 Exit Sub 0103 End If 0104 ' 0105 ' userdict 0106 If userdict.trygetvalue(trim(nametb1.text), rec) = False Then 0107 'Dim UserData As New UserRec 0108 'UserId = Trim(nameTB1.Text) 0109 rec.passwd = Trim(pwdTB1.Text) 0110 If sexmrb1.checked = True Then 0111 rec.sex = True 0112 Else 0113 rec.sex = False 0114 End If 0115 rec.usertype = usertypecb1.selectedindex ' 0116 'UserData.userType = usertypecb1.selecteditem ' 0117 rec. = Trim( TB1.Text) 0118 Try 0119 userdict.add(trim(nametb1.text), rec) 0120 MsgBox("!",, ") 0121 Catch ex As Exception End Try 0124 End If 0125 ' " "TabPage 0126 TabControl1.SelectTab(0) 0127 End Sub Private Sub TabControl1_Enter(ByVal sender As System.Object, _ 0130 ByVal e As System.EventArgs) Handles TabControl1.Enter 0131 Me.userTypeCB1.SelectedText = " " 0132 End Sub Private Sub TabControl1_Selected(ByVal sender As System.Object, _ 0135 ByVal e As System.Windows.Forms.TabControlEventArgs) _ 0136 Handles TabControl1.Selected 0137 ClearUserData() 0138 End Sub Private Sub Button5_Click(ByVal sender As System.Object, _ 0141 ByVal e As System.EventArgs) Handles Button5.Click 0142 ' 0143 ClearUserData() 0144 End Sub Private Sub Button2_Click(ByVal sender As System.Object, _ 0147 ByVal e As System.EventArgs) Handles Button2.Click 0148 ' 0149 Me.userTB.Text = "" 0150 Me.pwdTB.Text = "" 0151 End Sub 18

26 End Class TabControl1 TabControl1 TabPage usertb pwdtb Button1 Button VB TabControl1 TabControl1 TabPage usertypecb1 Button4 nametb1 sexmrb1 tb1 pwdtb1 pwdctb1 sexfrb1 Button3 Button VB

27 TabControl1 usertypecb TabControl1 TabPage sexmrb2 nametb2 pwdtb2 sexfrb2 label VB VB

28 VB VB

29 2.1.5 VB Public Class Form Dim cardchar() As String = {"A", "2", "3", "4", "5", "6", "7", "8", "9", _ 0004 "10", "J", "Q", "K"} 0005 Private Sub ButtonPlay_Click(ByVal sender As System.Object, _ 0006 ByVal e As System.EventArgs) Handles ButtonPlay.Click 0007 ' 0008 '5 0~51, Dim CardNum(4) As Integer 0010 '5 0~12, A, 1,.., J, Q, K 0011 Dim CardValue(4) As Integer 0012 '5 0~3, spade, heart, diamond, club 0013 Dim CardSuit(4) As Integer 0014 Dim istaken(51) As Boolean ' 0015 Dim i As Integer ' 0016 ' PicCover1~ Panel1.Visible = True 0018 ' 0019 PicCover1.Top = Label1.Top 0020 PicCover1.Left = Label1.Left 0021 PicCover2.Top = Label2.Top 0022 PicCover2.Left = Label2.Left 0023 PicCover3.Top = Label3.Top 0024 PicCover3.Left = Label3.Left 0025 PicCover4.Top = Label4.Top 0026 PicCover4.Left = Label4.Left 0027 PicCover5.Top = Label5.Top 0028 PicCover5.Left = Label5.Left 0029 ' 0030 PicCover1.Visible = True 0031 PicCover2.Visible = True 0032 PicCover3.Visible = True 0033 PicCover4.Visible = True 0034 PicCover5.Visible = True 0035 ' 0036 Label1.Visible = False 0037 Label2.Visible = False 0038 Label3.Visible = False 0039 Label4.Visible = False 0040 Label5.Visible = False 0041 ' 0042 PictureBox1.Visible = False 0043 PictureBox2.Visible = False 0044 PictureBox3.Visible = False 0045 PictureBox4.Visible = False 0046 PictureBox5.Visible = False 0047 ' 0048 Randomize() 0049 Dim Ij As Integer 22

30 0050 Dim AfgColor(4) As Object ' 0051 For i = 0 To 4 ' 0~ Dim isok As Boolean = False ' 0053 ' 0054 isok = True 0055 ' 0056 Do While True 0057 CardNum(i) = Int(Rnd() * 52) ' 0~ ' 0059 For Ij = 0 To i If CardNum(Ij) = CardNum(i) Then 0061 ' 0062 isok = False 0063 Exit For ' 0064 End If 0065 Next Ij 0066 If isok = True Then 0067 ', 0068 Exit Do ' 0069 End If 0070 Loop 0071 ' 0072 CardValue(i) = CardNum(i) Mod 13 ', 0073 CardSuit(i) = CardNum(i) \ 13 ', 0074 If CardSuit(i) = 0 Or CardSuit(i) = 3 Then 0075 AfgColor(i) = Color.Black 'spade, diamond 0076 Else 0077 AfgColor(i) = Color.Red 'heart, club 0078 End If 0079 Next i 0080 ' 0081 Label1.Text = cardchar(cardvalue(0)) 0082 Label2.Text = cardchar(cardvalue(1)) 0083 Label3.Text = cardchar(cardvalue(2)) 0084 Label4.Text = cardchar(cardvalue(3)) 0085 Label5.Text = cardchar(cardvalue(4)) 0086 ' 0087 Label1.ForeColor = AfgColor(0) 0088 Label2.ForeColor = AfgColor(1) 0089 Label3.ForeColor = AfgColor(2) 0090 Label4.ForeColor = AfgColor(3) 0091 Label5.ForeColor = AfgColor(4) 0092 ' 0093 PictureBox1.Image = ImageList1.Images(CardSuit(0)) 0094 PictureBox2.Image = ImageList1.Images(CardSuit(1)) 0095 PictureBox3.Image = ImageList1.Images(CardSuit(2)) 0096 PictureBox4.Image = ImageList1.Images(CardSuit(3)) 0097 PictureBox5.Image = ImageList1.Images(CardSuit(4)) 0098 ' Label1 ~ Label ' PictureBox1 ~ PictureBox 'Label1.ForeColor = 23

31 0101 'Label1.Text = 0102 'PictureBox1.Image = 0103 'Label2.ForeColor = 0104 'Label2.Text = 0105 'PictureBox2.Image = 0106 'Label3.ForeColor = 0107 'Label3.Text = 0108 'PictureBox3.Image = 0109 'Label4.ForeColor = 0110 'Label4.Text = 0111 'PictureBox4.Image = 0112 'Label5.ForeColor = 0113 'Label5.Text = 0114 'PictureBox5.Image = 0115 ' Panel 0116 End Sub Private Sub PicCover1_Click(ByVal sender As System.Object, _ 0119 ByVal e As System.EventArgs) Handles PicCover1.Click 0120 ' 0121 PicCover1.Visible = False ' 0122 Label1.Visible = True ' 0123 PictureBox1.Visible = True ' 0124 End Sub Private Sub PicCover2_Click(ByVal sender As System.Object, _ 0127 ByVal e As System.EventArgs) Handles PicCover2.Click 0128 ' 0129 PicCover2.Visible = False ' 0130 Label2.Visible = True ' 0131 PictureBox2.Visible = True ' 0132 End Sub Private Sub PicCover3_Click(ByVal sender As System.Object, _ 0135 ByVal e As System.EventArgs) Handles PicCover3.Click 0136 ' 0137 PicCover3.Visible = False ' 0138 Label3.Visible = True ' 0139 PictureBox3.Visible = True ' 0140 End Sub Private Sub PicCover4_Click(ByVal sender As System.Object, _ 0143 ByVal e As System.EventArgs) Handles PicCover4.Click 0144 ' 0145 PicCover4.Visible = False ' 0146 Label4.Visible = True ' 0147 PictureBox4.Visible = True ' 0148 End Sub Private Sub PicCover5_Click(ByVal sender As System.Object, _ 0151 ByVal e As System.EventArgs) Handles PicCover5.Click 24

32 0152 ' 0153 PicCover5.Visible = False ' 0154 Label5.Visible = True ' 0155 PictureBox5.Visible = True ' 0156 End Sub Private Sub ButtonClear_Click(ByVal sender As System.Object, _ 0159 ByVal e As System.EventArgs) Handles ButtonClear.Click 0160 ', Panel 0161 Panel1.Visible = False 0162 End Sub 0163 End Class ButtonPlay ButtonClear Panel1 Labell ~5 PictureBox1~5 PicCover1~ VB VB

33 VB VB VB

34 2.1.6 VB Public Class Form Dim PicN As Integer 0004 Dim PicFileName As String 0005 Dim Rr As Double Private Sub Form1_Load(ByVal sender As Object, _ 0008 ByVal e As System.EventArgs) Handles Me.Load 0009 Rr = 0.05 ' 0010 ' 0011 picview.sizemode = PictureBoxSizeMode.StretchImage 0012 btnfirst.enabled = False 0013 btnprevious.enabled = False 0014 btnlast.enabled = True 0015 btnnext.enabled = True 0016 PicN = Call ShowPicture() 0018 End Sub Private Sub btnlast_click(byval sender As System.Object, _ 0021 ByVal e As System.EventArgs) Handles btnlast.click 0022 ' 0023 btnfirst.enabled = True 0024 btnprevious.enabled = True 0025 btnlast.enabled = False 0026 btnnext.enabled = False 0027 PicN = Call ShowPicture() 0029 End Sub Private Sub btnfirst_click(byval sender As System.Object, ByVal e As System.EventArgs) Handles btnfirst.click 0032 ' 0033 btnfirst.enabled = False 0034 btnprevious.enabled = False 0035 btnlast.enabled = True 0036 btnnext.enabled = True 0037 PicN = Call ShowPicture() 0039 End Sub Public Sub ShowPicture() 0042 ' 0043 Label1.Text = PicN ',, 0044 ' 0045 PicFileName = My.Computer.FileSystem.CurrentDirectory & _ 0046 "\images\img0" & Trim(Str(PicN)) & ".JPG" 0047 ' 0048 picview.image = Image.FromFile(PicFileName) 27

35 0049 If PicN > 1 And PicN < 5 Then 0050 btnfirst.enabled = True 0051 btnprevious.enabled = True 0052 btnlast.enabled = True 0053 btnnext.enabled = True 0054 End If 0055 End Sub Private Sub btnprevious_click(byval sender As System.Object, _ 0058 ByVal e As System.EventArgs) Handles btnprevious.click 0059 ' 0060 PicN = PicN If PicN = 1 Then 0062 btnfirst.enabled = False 0063 btnprevious.enabled = False 0064 End If 0065 Call ShowPicture() 0066 End Sub Private Sub btnnext_click(byval sender As System.Object, _ 0069 ByVal e As System.EventArgs) Handles btnnext.click 0070 ' 0071 PicN = PicN If PicN = 5 Then 0073 btnlast.enabled = False 0074 btnnext.enabled = False 0075 End If 0076 Call ShowPicture() 0077 End Sub Private Sub btnsmall_click(byval sender As System.Object, _ 0080 ByVal e As System.EventArgs) Handles btnsmall.click 0081 ' 0082 If picview.width >= (Me.Width * 0.4) Then 0083 ' 40%~90% 0084 picview.top = picview.top + (picview.height * Rr) / picview.left = picview.left + (picview.width * Rr) / picview.width = picview.width * (1 - Rr) 0087 picview.height = picview.height * (1 - Rr) 0088 End If 0089 End Sub Private Sub btnlarge_click(byval sender As System.Object, _ 0092 ByVal e As System.EventArgs) Handles btnlarge.click 0093 ' 0094 If picview.width <= (Me.Width * 0.9) Then 0095 ' 40%~90% 0096 picview.top = picview.top - (picview.height * Rr) / picview.left = picview.left - (picview.width * Rr) / picview.width = picview.width * (1 + Rr) 0099 picview.height = picview.height * (1 + Rr) 0100 End If 28

36 0101 End Sub End Class picview img01.jpg btnsmall Labell btnfirst btnprevious btnlarge btnnext btnlast VB VB

37 VB VB

38 2.1.7 VB Public Class Form Dim m_num As Integer 0004 Dim InputNum As Integer Private Sub btnok_click(byval sender As System.Object, _ 0007 ByVal e As System.EventArgs) Handles btnok.click 0008 ' 0009 If Len(txtGuess.Text) < 3 Then 0010 MsgBox("!",, ") 0011 Exit Sub 0012 End If 0013 InputNum = Val(txtGuess.Text) 0014 If InputNum = m_num Then 0015 MsgBox("!",, ") 0016 Exit Sub 0017 End If 0018 If InputNum < Val(lblSmall.Text) Or InputNum > Val(lblLarge.Text) Then 0019 MsgBox(" " & Val(lblSmall.Text) & " " & _ 0020 Val(lblLarge.Text) & " ",, " ") 0021 Exit Sub 0022 End If 0023 If InputNum > m_num Then 0024 MsgBox("!",, ") 0025 lbllarge.text = InputNum 0026 Exit Sub 0027 End If 0028 If InputNum < m_num Then 0029 MsgBox("!",, ") 0030 lblsmall.text = InputNum 0031 Exit Sub 0032 End If 0033 End Sub Private Sub Form1_Load(ByVal sender As System.Object, _ 0036 ByVal e As System.EventArgs) Handles MyBase.Load 0037 ' 0038 Randomize() 0039 gennumber() 0040 End Sub Private Sub btnagain_click(byval sender As System.Object, _ 0043 ByVal e As System.EventArgs) Handles btnagain.click 0044 gennumber() 0045 lblsmall.text = "100" 0046 lbllarge.text = "999" 0047 txtguess.text = "" 0048 End Sub

39 0050 Private Sub btnend_click(byval sender As System.Object, _ 0051 ByVal e As System.EventArgs) Handles btnend.click 0052 End 0053 End Sub Private Sub gennumber() 0056 ' 0~897, 101, 101~998, Rnd() 0~ m_num = Int(Rnd() * 898) End Sub Private Sub txtguess_keypress(byval sender As Object, _ 0061 ByVal e As System.Windows.Forms.KeyPressEventArgs) _ 0062 Handles txtguess.keypress 0063 If Asc(e.KeyChar) < 48 Or Asc(e.KeyChar) > 57 Then 0064 ' (0-->48, 9-->57) 0065 e.handled = True ' 0066 End If 0067 End Sub End Class lblsmall lbllarge Label3 txtguess btnagain btnok btnend VB VB

40 VB VB

41 2.1.8 VB Public Class Form ' 0004 Private Sub rba_checkedchanged(byval sender As System.Object, _ 0005 ByVal e As System.EventArgs) Handles rba.checkedchanged 0006 If rba.checked Then Me.lblOP.Text = "+" : Me.lblAns.Text = "" 0007 End Sub Private Sub rbs_checkedchanged(byval sender As System.Object, _ 0010 ByVal e As System.EventArgs) Handles rbs.checkedchanged 0011 If rbs.checked Then Me.lblOP.Text = "-" : Me.lblAns.Text = "" 0012 End Sub Private Sub rbm_checkedchanged(byval sender As System.Object, _ 0015 ByVal e As System.EventArgs) Handles rbm.checkedchanged 0016 If rbm.checked Then Me.lblOP.Text = " " : Me.lblAns.Text = "" 0017 End Sub Private Sub rbd_checkedchanged(byval sender As System.Object, _ 0020 ByVal e As System.EventArgs) Handles rbd.checkedchanged 0021 If rbd.checked Then Me.lblOP.Text = " " : Me.lblAns.Text = "" 0022 End Sub Private Sub rbc_checkedchanged(byval sender As System.Object, _ 0025 ByVal e As System.EventArgs) Handles rbc.checkedchanged 0026 If rbc.checked Then Me.lblOP.Text = "+...+" : Me.lblAns.Text = "" 0027 End Sub 0028 ' ' Private Sub btncalculate_click(byval sender As System.Object, _ 0033 ByVal e As System.EventArgs) Handles btncalculate.click 0034 Dim Ia As Integer 0035 Dim AfVa As Double 0036 AfVa = ' 0038 If IsNumeric(TextBox1.Text) <> True Or _ 0039 IsNumeric(TextBox2.Text) <> True Then 0040 MsgBox("!",, " ") 0041 Else 0042 If rbc.checked Then ' 0043 If Val(TextBox1.Text) > Val(TextBox2.Text) Then 0044 MsgBox(" ") 0045 Else 0046 For Ia = Val(TextBox1.Text) To Val(TextBox2.Text) 0047 AfVa = AfVa + Ia 0048 Next 0049 End If 34

42 0050 End If 0051 If rba.checked Then ' 0052 AfVa = Val(TextBox1.Text) + Val(TextBox2.Text) 0053 End If 0054 If rbs.checked Then ' 0055 AfVa = Val(TextBox1.Text) - Val(TextBox2.Text) 0056 End If 0057 If rbm.checked Then ' 0058 AfVa = Val(TextBox1.Text) * Val(TextBox2.Text) 0059 End If 0060 If rbd.checked Then ' 0061 AfVa = Val(TextBox1.Text) / Val(TextBox2.Text) 0062 End If 0063 lblans.text = AfVa 0064 End If 0065 End Sub End Class Form TextBox Name TextBox1 TextBox2 Text 2 1 Button Name btncalculate Text 3 lblans BackColor Maroon ForeColor White Font 14pt TextAlign MiddleCenter AutoSize False rbs rbm rbd rbc rba TextBox1 TextBox2 btncalculate lblop lblans VB

43 VB VB VB

44 2.1.9 VB Public Class Form Dim TotAmount As Integer ' 0004 Dim MainPrice As Integer ' 0005 Dim UpGradePrice As Integer ' 0006 Dim OrderQuantity As Integer ' ', GetAmt, 0009 Public Overloads Sub GetAmt(ByRef TotAmountS, ByVal OrderQuantityS, _ 0010 ByVal MainPriceS) 0011 TotAmountS = OrderQuantityS * MainPriceS 0012 End Sub ', GetAmt, 0015 Public Overloads Sub GetAmt(ByRef TotAmountS, ByVal OrderQuantityS, _ 0016 ByVal MainPriceS, ByVal UpGradePriceS) 0017 TotAmountS = OrderQuantityS * (MainPriceS + UpGradePriceS) 0018 End Sub Private Sub btngo_click(byval sender As System.Object, _ 0021 ByVal e As System.EventArgs) Handles btngo.click 0022 MsgBox("!") 0023 rba1.checked = True ' (129 ) 0024 rbb1.checked = True ' 0025 rbc1.checked = True ' 0026 cbupf.checked = False ' 0027 cbupf.visible = True ' 0028 cbupd.checked = False ' 0029 cbupd.visible = True ' 0030 txtqty.text = End Sub Private Sub rbb1_checkedchanged(byval sender As System.Object, _ 0034 ByVal e As System.EventArgs) Handles rbb1.checkedchanged 0035 If rbb1.checked Then ' 0036 cbupf.enabled = True 0037 Else 0038 cbupf.enabled = False 0039 End If 0040 End Sub Private Sub rbb2_checkedchanged(byval sender As System.Object, _ 0043 ByVal e As System.EventArgs) Handles rbb2.checkedchanged 0044 If rbb2.checked Then ' 0045 cbupf.enabled = False 0046 cbupf.checked = False 0047 End If 0048 End Sub 37

45 Private Sub rbb3_checkedchanged(byval sender As System.Object, _ 0051 ByVal e As System.EventArgs) Handles rbb3.checkedchanged 0052 If rbb3.checked Then ' 0053 cbupf.enabled = False 0054 cbupf.checked = False 0055 End If 0056 End Sub Private Sub rbc1_checkedchanged(byval sender As System.Object, _ 0059 ByVal e As System.EventArgs) Handles rbc1.checkedchanged 0060 If rbc1.checked Then ' 0061 cbupd.enabled = True 0062 Else 0063 cbupd.enabled = False 0064 End If 0065 End Sub Private Sub rbc2_checkedchanged(byval sender As System.Object, _ 0068 ByVal e As System.EventArgs) Handles rbc2.checkedchanged 0069 If rbc2.checked Then ' 0070 cbupd.enabled = False 0071 cbupd.checked = False 0072 End If 0073 End Sub Private Sub rbc3_checkedchanged(byval sender As System.Object, _ 0076 ByVal e As System.EventArgs) Handles rbc3.checkedchanged 0077 If rbc3.checked Then ' 0078 cbupd.enabled = False 0079 cbupd.checked = False 0080 End If 0081 End Sub Private Sub Form1_Load(ByVal sender As Object, _ 0084 ByVal e As System.EventArgs) Handles Me.Load 0085 txtprice.readonly = True 0086 txtamt.readonly = True 0087 txtqty.text = End Sub Public Sub UpGradeRtn(ByVal sender As System.Object, _ 0091 ByVal e As System.EventArgs) _ 0092 Handles cbupf.checkedchanged, cbupd.checkedchanged 0093 ' 0094 UpGradePrice = If cbupf.checked Then 0096 UpGradePrice = UpGradePrice End If 0098 If cbupd.checked Then 0099 UpGradePrice = UpGradePrice End If 0101 Call ShowPriceRtn() 38

46 0102 End Sub Public Sub MainOrderRtn(ByVal sender As System.Object, _ 0105 ByVal e As System.EventArgs) _ 0106 Handles rba1.checkedchanged, rba2.checkedchanged 0107 ' 0108 If sender.equals(rba1) Then 0109 MainPrice = Else 0111 MainPrice = End If 0113 Call ShowPriceRtn() 0114 End Sub Private Sub txtqty_textchanged(byval sender As System.Object, _ 0117 ByVal e As System.EventArgs) _ 0118 Handles txtqty.textchanged 0119 ' 0120 If Val(txtQty.Text) <= 0 Then 0121 txtqty.text = End If 0123 Call ShowAmount() 0124 End Sub Public Sub ShowPriceRtn() 0127 ' 0128 txtprice.text = MainPrice + UpGradePrice 0129 Call ShowAmount() 0130 End Sub Public Sub ShowAmount() 0133 ' 0134 OrderQuantity = Val(txtQty.Text) 0135 If UpGradePrice > 0 Then 0136 Call GetAmt(TotAmount, OrderQuantity, MainPrice, UpGradePrice) 0137 Else 0138 Call GetAmt(TotAmount, OrderQuantity, MainPrice) 0139 End If 0140 txtamt.text = TotAmount 0141 End Sub End Class 39

47 Form GroupBox Name GroupBox1 GroupBox2 GroupBox3 GroupBox4 Text 2 4 GroupBox RadioButton 3 Label6( ) Label7( ) Label8( ) Label9( ) 4 txtprice txtamt ReadOnlyp True txtamt BackColor Blue ForeColor White Font 16pt GroupBox1 rba1 rba2 GroupBox2 GroupBox3 rbb1 rbb2 rbb3 rbc1 rbc2 rbc3 GroupBox4 cbupf cbupd txtprice txtqty txtamt btngo VB VB

48 VB Public Class Form ' 0004 Private Sub mnuitemchange_click(byval sender As System.Object, _ 0005 ByVal e As System.EventArgs) 0006 Dim inti, amount, change, coins As Integer 0007 Dim doit As Boolean ' 0008 amount = CInt(txtAmount.Text) 0009 txt50.text = "0" ' 0010 txt10.text = "0" 0011 txt5.text = "0" 0012 txt1.text = "0" 0013 For inti = 1 To 4 ' ' ' 0018 change = Choose(intI, 50, 10, 5, 1) 0019 If inti = 4 Then 0020 ' Else 0022 ' ' 0024 'Do While 0025 'Loop 0026 End If 0027 ' ' Next inti 0032 End Sub 0033 ' Private Sub Form1_Load(ByVal sender As Object, _ 0036 ByVal e As System.EventArgs) Handles Me.Load 0037 txtamount.text = End Sub Private Sub XToolStripMenuItem_Click(ByVal sender As System.Object, _ 0041 ByVal e As System.EventArgs) Handles XToolStripMenuItem.Click 0042 End 0043 End Sub 41

49 Private Sub ToolStripMenuItem_Click(ByVal sender As System.Object, _ 0046 ByVal e As System.EventArgs) Handles ToolStripMenuItem.Click 0047 ' mnuitemchange_click 0048 Dim inti, amount, change, coins As Integer 0049 'Dim doit As Boolean ' 0050 amount = CInt(txtAmount.Text) 0051 txt50.text = "0" ' 0052 txt10.text = "0" 0053 txt5.text = "0" 0054 txt1.text = "0" 0055 For inti = 1 To 4 ' 0056 ' 0057 ' 0058 'change = Choose(intI, 50, 10, 5, 1) 0059 If inti = 4 Then 0060 ' ' txt1.text = amount 0063 Else 0064 ' ' 0066 'Do While 0067 'Loop 0068 If chk50.checked And inti = 1 Then 0069 ' 50, change = txt50.text = amount \ change ' 0072 amount = amount Mod change ' 0073 End If 0074 If chk10.checked And inti = 2 Then 0075 ' 10, change = txt10.text = amount \ change ' 0078 amount = amount Mod change ' 0079 End If 0080 If chk5.checked And inti = 3 Then 0081 ' 5, change = txt5.text = amount \ change ' 0084 amount = amount Mod change ' 0085 End If 0086 End If 0087 ' ( ) 0088 Next inti 0089 End Sub 0090 End Class 42

50 Form1 MenuStrip MenuStrip Form1 2 (&F) (&C) (&X) ToolStripMenuItem XToolStripMenuItem Chk10 Chk5 txtamount Chk50 txt50 txt10 txt5 txt VB VB

51 2.2.2 VB Public Class Form Private Sub Form1_Load(ByVal sender As Object, _ 0004 ByVal e As System.EventArgs) Handles Me.Load 0005 txttotal.readonly = True 0006 End Sub Private Sub Button1_Click(ByVal sender As System.Object, _ 0009 ByVal e As System.EventArgs) Handles Button1.Click 0010 ' 0011 If rdb01.checked = False And _ 0012 rdb02.checked = False And _ 0013 rdb03.checked = False Then 0014 MsgBox("...",, ") 0015 End If 0016 If rdb01.checked Then 0017 txt01.text = Val(txt01.Text) End If 0019 If rdb02.checked Then 0020 txt02.text = Val(txt02.Text) End If 0022 If rdb03.checked Then 0023 txt03.text = Val(txt03.Text) End If 0025 txttotal.text = Val(txt01.Text) + Val(txt02.Text) + Val(txt03.Text) 0026 End Sub Private Sub OToolStripMenuItem_Click( _ 0029 ByVal sender As System.Object, ByVal e As System.EventArgs) _ 0030 Handles OToolStripMenuItem.Click 0031 Dim SelAmt(3, 2) ' 0032 Dim Kdx As Integer 0033 Dim Ndx As Integer 0034 Dim Tamt As Integer 0035 Dim SwFg ' 0036 SelAmt(1, 1) = Val(txt01.Text) 0037 SelAmt(2, 1) = Val(txt02.Text) 0038 SelAmt(3, 1) = Val(txt03.Text) 0039 SelAmt(1, 2) = "Motorola" 0040 SelAmt(2, 2) = "SonyErricsson" 0041 SelAmt(3, 2) = "Nokia" 0042 Tamt = 3 ' 0043 ' 0044 For Kdx = 1 To Tamt For Ndx = 1 To Tamt - Kdx 0046 If SelAmt(Ndx, 1) < SelAmt(Ndx + 1, 1) Then 0047 ' 0048 SwFg = SelAmt(Ndx, 1) 0049 SelAmt(Ndx, 1) = SelAmt(Ndx + 1, 1) 44

52 0050 SelAmt(Ndx + 1, 1) = SwFg 0051 ' 0052 SwFg = SelAmt(Ndx, 2) 0053 SelAmt(Ndx, 2) = SelAmt(Ndx + 1, 2) 0054 SelAmt(Ndx + 1, 2) = SwFg 0055 End If 0056 Next Ndx 0057 Next Kdx 0058 If SelAmt(1, 1) > SelAmt(2, 1) Then 0059 MsgBox(" " & SelAmt(1, 2),, " ") 0060 Else 0061 If SelAmt(1, 1) = SelAmt(2, 1) Then 0062 If SelAmt(2, 1) = SelAmt(3, 1) Then 0063 MsgBox(" ",, " ") 0064 Else 0065 MsgBox(" " & SelAmt(1, 2) & " " & _ 0066 SelAmt(2, 2),, " ") 0067 End If 0068 End If 0069 End If 0070 End Sub Private Sub XToolStripMenuItem_Click(ByVal sender As System.Object, _ 0073 ByVal e As System.EventArgs) Handles XToolStripMenuItem.Click 0074 End 0075 End Sub 0076 End Class OToolStripMenuItem XToolStripMenuItem txttotal rdb01 rdb02 rdb03 Button1 txt01 txt02 txt VB

53 2.2.4 VB VB VB

54 2.2.7 VB

55 2.2.3 VB 'Module1====================== 0002 Module Module Public FullPath As String ' \ 0005 Public FileName As String ' 0006 Public FullDir As String ' \, Listview 0007 Public PLen As Integer ' 0008 Public SelectFileName As String ' End Module 'Form1====================== 0013 Public Class Form Private Sub Button1_Click(ByVal sender As System.Object, _ 0016 ByVal e As System.EventArgs) Handles Button1.Click 0017 ' 0018 Dim ReadDataLine As String 0019 Dim Xi, Xj, Xk As Integer 0020 Dim FdData(5, 2), FdTemp As String ' 0021 If Me.ListView1.SelectedItems.Count <> 0 Then 0022 Dim fullname As String 'fullname dat. ( ) 0023 SelectFileName = ListView1.SelectedItems(0).Text 0024 fullname = FullPath & ListView1.SelectedItems(0).Text 0025 Dim freader As System.IO.StreamReader 0026 ' 0027 freader = My.Computer.FileSystem.OpenTextFileReader( _ 0028 fullname, System.Text.Encoding.GetEncoding("Big5")) 0029 Xj = While Not freader.endofstream 0031 ' Form ReadDataLine = freader.readline() ' 0033 Xj = Xj Xk = Len(ReadDataLine) ' 0035 For Xi = 1 To Xk 0036 FdTemp = Mid(ReadDataLine, Xi, 1) 0037 If FdTemp = vbtab Then ' Tab 0038 FdData(Xj, 1) = Trim(Mid(ReadDataLine, 1, Xi - 1)) 0039 FdData(Xj, 2) = Trim(Mid(ReadDataLine, Xi + 1, Xk)) 0040 Exit For 0041 End If 0042 Next Xi 0043 End While 0044 ' 0045 freader.close() 0046 ' Form Form2.FileNameLabel.Text = SelectFileName 0048 Form2.gradeTB.Text = FdData(1, 2) 48

56 0049 Form2.classTB.Text = FdData(2, 2) 0050 Form2.teacherTB.Text = FdData(3, 2) 0051 Form2.studNumTB.Text = FdData(4, 2) 0052 Form2.locTB.Text = FdData(5, 2) 0053 ' Form Form2.Show() 0055 Else 0056 MsgBox(" ",, ") 0057 End If 0058 End Sub Private Sub Button2_Click(ByVal sender As System.Object, _ 0061 ByVal e As System.EventArgs) Handles Button2.Click 0062 ' 0063 If Me.FolderBrowserDialog1.ShowDialog() = _ 0064 Windows.Forms.DialogResult.OK Then 0065 ' 0066 Me.pathTB.Text = Me.FolderBrowserDialog1.SelectedPath 0067 lvlist(me.pathtb.text) 0068 End If 0069 End Sub Private Sub Form1_Load(ByVal sender As System.Object, _ 0072 ByVal e As System.EventArgs) Handles MyBase.Load 0073 ' 0074 Me.FolderBrowserDialog1.SelectedPath = _ 0075 My.Computer.FileSystem.CurrentDirectory 0076 End Sub Private Sub Button3_Click(ByVal sender As System.Object, _ 0079 ByVal e As System.EventArgs) Handles Button3.Click 0080 ' 0081 If Me.ListView1.SelectedItems.Count <> 0 Then 0082 Dim fullname As String 'fullname dat. ( ) 0083 fullname = FullPath & ListView1.SelectedItems(0).Text 0084 ' 0085 ' ListView Kill(fullName) ' 0087 ListView1.Items.Remove(ListView1.SelectedItems(0)) 0088 Else 0089 MsgBox(" ",, ") 0090 End If 0091 End Sub Sub lvlist(byval dir As String) 0094 ListView1.Items.Clear() 0095 FullDir = dir 0096 ' dir.dat ListView1 ListViewItem 0097 Dim fcols As System.Collections.ObjectModel.ReadOnlyCollection(Of String) 0098 ' fcols.dat Collection 0099 ' My.Computer.FileSystem 49

57 0100 ' ImageList1, Size (35,35), Image group.png 0101 ListView1.LargeImageList = Me.ImageList Try 0103 FullPath = Trim(My.Computer.FileSystem.GetParentPath(dir) & "\" & _ 0104 My.Computer.FileSystem.GetName(dir) & "\") 0105 PLen = Len(FullPath) 0106 fcols = My.Computer.FileSystem.GetFiles( _ 0107 dir, FileIO.SearchOption.SearchTopLevelOnly, "*.dat") 0108 Dim fn As String 0109 ListView1.View = View.LargeIcon 0110 For Each fn In fcols 0111 FileName = Mid(Trim(fn), PLen + 1, Len(Trim(fn)) - PLen) 0112 ListView1.Items.Add(FileName, 0) 0113 Next 0114 Catch ex As Exception 0115 ' 0116 MsgBox(" ",, ") 0117 End Try 0118 End Sub Private Sub Button4_Click(ByVal sender As System.Object, _ 0121 ByVal e As System.EventArgs) Handles Button4.Click 0122 ' 0123 If Me.pathTB.Text <> "" Then 0124 ' Form Form2.FileNameLabel.Text = "" 0126 Form2.gradeTB.Text = "" 0127 Form2.classTB.Text = "" 0128 Form2.teacherTB.Text = "" 0129 Form2.studNumTB.Text = "" 0130 Form2.locTB.Text = "" 0131 Form2.Show() 0132 Else 0133 MsgBox(" ",, ") 0134 End If 0135 End Sub Private Sub Button5_Click(ByVal sender As System.Object, _ 0138 ByVal e As System.EventArgs) Handles Button5.Click 0139 ' ListView ' 0141 lvlist(fulldir) 0142 End Sub End Class 'Form2====================== 0147 Public Class Form Dim WrL As String Private Sub Button2_Click(ByVal sender As System.Object, _ 0151 ByVal e As System.EventArgs) Handles Button2.Click 50

58 0152 Me.Close() ' Form End Sub Private Sub Button1_Click_1(ByVal sender As System.Object, _ 0156 ByVal e As System.EventArgs) Handles Button1.Click 0157 Dim filename As String 'filename dat. ( ) 0158 If gradetb.text <> "" And classtb.text <> "" Then 0159 ' 0160 If IsNumeric(gradeTB.Text) = True And _ 0161 IsNumeric(classTB.Text) = True Then 0162 Try 0163 filename = FullPath & Trim(Val(gradeTB.Text)) & " " & _ 0164 Trim(Val(classTB.Text)) & ".dat" 0165 Dim sw As System.IO.StreamWriter = _ 0166 My.Computer.FileSystem.OpenTextFileWriter( _ 0167 filename, False, System.Text.Encoding.GetEncoding("Big5")) 0168 ' true false 0169 '.dat 0170 WrL = "Grade" & vbtab & Trim(gradeTB.Text) 0171 sw.writeline(wrl) 0172 WrL = "Class" & vbtab & Trim(classTB.Text) 0173 sw.writeline(wrl) 0174 WrL = "Teacher" & vbtab & Trim(teacherTB.Text) 0175 sw.writeline(wrl) 0176 WrL = "StudentNo" & vbtab & Trim(studNumTB.Text) 0177 sw.writeline(wrl) 0178 WrL = "Location" & vbtab & Trim(locTB.Text) 0179 sw.writeline(wrl) 0180 sw.close() 0181 Catch ex As Exception 0182 MessageBox.Show(ex.Message) 0183 Return 0184 End Try 0185 MessageBox.Show(" " & filename, " ", _ 0186 MessageBoxButtons.OK, MessageBoxIcon.Information) 0187 ' Form1 ListView Form1.lvList(FullDir) 0189 Else 0190 MsgBox(" ",, ") 0191 End If 0192 Else 0193 ' 0194 MsgBox(" ",, ") 0195 End If 0196 End Sub End Class 51

59 ImageList1 Size (35,35) Image group.png pathtb Button2 ListView1 Button1 Button4 Button3 Button VB VB

60 VB FileNameLabel gradetb classtb teachertb studnumtb loctb Button1 Button VB

61 2.2.4 VB Public Class Form Public filedir As String ' 0004 Public filename As String ' ( ) 0005 Public tempfile As String ' ( ) Private Sub Form1_Load(ByVal sender As System.Object, _ 0008 ByVal e As System.EventArgs) Handles MyBase.Load 0009 Me.fileDir = My.Computer.FileSystem.CurrentDirectory 0010 End Sub Private Sub Form1_FormClosing(ByVal sender As Object, _ 0013 ByVal e As System.Windows.Forms.FormClosingEventArgs) _ 0014 Handles Me.FormClosing 0015 deltempfile() 0016 End Sub Private Sub ToolStripMenuItem_Click(ByVal sender As System.Object, _ 0019 ByVal e As System.EventArgs) Handles ToolStripMenuItem.Click 0020 filename = "" 0021 filedir = My.Computer.FileSystem.CurrentDirectory ' 0022 Me.TextBox1.Text = "<html>" & vbcrlf & "<head></head>" & vbcrlf & _ 0023 "<body></body>" & vbcrlf & "</html>" 0024 UpdateWebBrowser() 0025 End Sub Private Sub ToolStripMenuItem_Click(ByVal sender As System.Object, _ 0028 ByVal e As System.EventArgs) Handles ToolStripMenuItem.Click 0029 If Me.OpenFileDialog1.ShowDialog() = Windows.Forms.DialogResult.OK Then 0030 ' filename filedir 0031 ' ( ) 0032 filename = Trim(OpenFileDialog1.FileName) 0033 'OpenFileDialog1.SafeFileName 0034 filedir = Mid(fileName, 1, Len(fileName) - _ 0035 Len(Trim(OpenFileDialog1.SafeFileName)) - 1) 0036 ' TextBox OpenWebPage(fileName) 0038 ' WebBrowser WebBrowser1.Navigate(fileName) 0040 ' 0041 AddFileRecord(fileName) 0042 End If 0043 End Sub Private Sub ToolStripMenuItem_Click(ByVal sender As System.Object, _ 0046 ByVal e As System.EventArgs) Handles ToolStripMenuItem.Click 0047 Me.SaveFileDialog1.InitialDirectory = Me.fileDir 0048 'Me.SaveFileDialog1.FileName = Me.fileName 54

62 0049 If Me.SaveFileDialog1.ShowDialog() = Windows.Forms.DialogResult.OK Then 0050 ' TextBox FileOpen(7, SaveFileDialog1.FileName, OpenMode.Output) 0052 Print(7, TextBox1.Text) 0053 FileClose(7) 0054 ' 0055 AddFileRecord(SaveFileDialog1.FileName) 0056 End If 0057 End Sub Private Sub ToolStripMenuItem_Click(ByVal sender As System.Object, _ 0060 ByVal e As System.EventArgs) Handles ToolStripMenuItem.Click 0061 deltempfile() 0062 End 0063 End Sub Private Sub recmenuitem_click(byval sender As System.Object, _ 0066 ByVal e As System.EventArgs) 0067 ' 0068 ' filedir 0069 Dim i As Integer 0070 For i = Len(Trim(sender.text)) To 1 Step If Mid(Trim(sender.text), i, 1) = "\" Then 0072 filedir = Mid(Trim(sender.text), 1, i - 1) 0073 Exit For 0074 End If 0075 Next 0076 filename = Trim(sender.text) ' ( ) 0077 ' TextBox OpenWebPage(fileName) 0079 ' WebBrowser WebBrowser1.Navigate(fileName) 0081 End Sub Private Sub TabControl1_Selected(ByVal sender As System.Object, _ 0084 ByVal e As System.Windows.Forms.TabControlEventArgs) _ 0085 Handles TabControl1.Selected 0086 UpdateWebBrowser() 0087 End Sub Public Sub OpenWebPage(ByVal fname As String) 0090 ' fname TextBox Dim ReadLineData As String 0092 FileOpen(7, fname, OpenMode.Input) 0093 ReadLineData = "" 0094 Do While Not EOF(7) 0095 ReadLineData = ReadLineData & LineInput(7) & vbcrlf 0096 Loop 0097 TextBox1.Text = ReadLineData 0098 FileClose(7) 0099 End Sub

63 0101 Public Sub UpdateWebBrowser() 0102 deltempfile() 0103 tempfile = Me.fileDir & "\temp.html" 0104 ' TextBox1 HTML tempfile 0105 FileOpen(7, tempfile, OpenMode.Output) 0106 Print(7, TextBox1.Text) 0107 FileClose(7) 0108 'WebBrowser1 tempfile 0109 WebBrowser1.Navigate(tempFile) 0110 End Sub Public Sub UpdateDir(ByVal fname As String) 0113 ' fname filedir 0114 Dim fi As System.IO.FileInfo = My.Computer.FileSystem.GetFileInfo(fName) 0115 Me.fileDir = fi.directoryname 0116 End Sub Public Sub AddFileRecord(ByVal fname As String) 0119 Dim i As Integer 0120 Dim msi As ToolStripMenuItem 0121 Dim isinrecord As Boolean = False ' fname 0122 ' fname 0123 For i = 0 To ToolStripMenuItem.DropDownItems.Count If fname = ToolStripMenuItem.DropDownItems(i).Text Then 0125 isinrecord = True 0126 Exit For 0127 End If 0128 Next 0129 ' fname 0130 ' 1. " ToolStripMenuItem" ToolStripMenuItem 0131 ' 2. recmenuitem_click ToolStripMenuItem Click 0132 ' () 0133 If isinrecord = False Then 0134 ' ToolStripMenuItem 0135 ToolStripMenuItem.DropDownItems.Add(fName) 0136 ' 0137 AddHandler ToolStripMenuItem.DropDownItems(i).Click, _ 0138 AddressOf recmenuitem_click 0139 End If 0140 End Sub Public Sub deltempfile() 0143 ' tempfile 0144 Try 0145 Kill(tempFile) 0146 Catch ex As Exception End Try 0149 End Sub End Class 56

64 TabControl1 TabPage TabControl1 HTML TabPage TextBoxl VB TabControl1 TabPage WebBrowserl VB

65 VB VB

66 2.2.5 VB Public Class Form Dim thedate As Date ' 0004 Dim memo(31) As String ' memo 0005 Dim MemoFileName As String 'memo 0006 Dim MemoYearMonth As String 'memo 0007 Dim MemoDay As Integer 'memo 0008 Dim MemoStr As String 'memo 0009 Dim MemoChr As String 'memo Private Sub MonthCalendar1_DateChanged(ByVal sender As System.Object, _ 0012 ByVal e As System.Windows.Forms.DateRangeEventArgs) _ 0013 Handles MonthCalendar1.DateChanged 0014 Dim newdate As Date ' 0015 newdate = MonthCalendar1.SelectionRange.Start() 0016 'newdate = MonthCalendar1.SelectionRange.Start 0017 'newdate = MonthCalendar1.SelectionRangeEnd 0018 'MonthCalendar1.MaxSelectionCount = N 0019 ' N ( 7) 0020 ' thedate 0021 If getyearmonth(thedate) <> getyearmonth(newdate) Then 0022 ' UpdateMemo() memo memo() 0023 thedate = newdate 0024 UpdateMemo() 0025 End If 0026 ' memo 0027 MemoDay = MonthCalendar1.SelectionRange.Start.Day 0028 tbmemo.text = memo(memoday) 0029 MonthCalendar1.UpdateBoldedDates() 0030 End Sub Private Sub Form1_Load(ByVal sender As System.Object, _ 0033 ByVal e As System.EventArgs) Handles MyBase.Load 0034 ' thedate 0035 thedate = Today 0036 'MonthCalendar1.MinDate = thedate 0037 ' UpdateMemo() 0038 UpdateMemo() 0039 MonthCalendar1.UpdateBoldedDates() 0040 ' 0041 MemoDay = thedate.day 0042 tbmemo.text = memo(memoday) 0043 MonthCalendar1.UpdateBoldedDates() 0044 End Sub Private Sub BtnSave_Click(ByVal sender As System.Object, _ 0047 ByVal e As System.EventArgs) Handles BtnSave.Click 0048 ' memo 59

67 0049 ' MonthCalendar1 BoldedDate 0050 ' () 0051 ' SaveMemo() memo 0052 SaveMemo() 0053 End Sub Private Sub BtnClear_Click(ByVal sender As System.Object, _ 0056 ByVal e As System.EventArgs) Handles BtnClear.Click 0057 ' 0058 ' memo 0059 ' MonthCalendar1 BoldedDate 0060 ' SaveMemo() memo 0061 tbmemo.text = "" 0062 SaveMemo() 0063 End Sub Function getyearmonth(byval date1 As Date) As String 0066 Return date1.year & "-" & date1.month ' YYYY-MM 0067 End Function Sub UpdateMemo() 0070 Dim i As Integer 0071 For i = 0 To memo(i) = "" 0073 Next 0074 ' thedate memo 0075 ' 0076 If My.Computer.FileSystem.FileExists( _ 0077 getyearmonth(thedate) & ".memo") Then 0078 MemoYearMonth = getyearmonth(thedate) 0079 MemoFileName = getyearmonth(thedate) & ".memo" 0080 FileOpen(7, MemoFileName, OpenMode.Input) 0081 Do While Not EOF(7) 0082 MemoStr = LineInput(7) 0083 If Len(MemoStr) >= 3 Then ' 3 --> 9:a 0084 ' 0085 For i = 1 To Len(MemoStr) 0086 If Mid(MemoStr, i, 1) = ":" Then 0087 MemoDay = Val(Mid(MemoStr, 1, i - 1)) 0088 ' 0089 memo(memoday) = Mid(MemoStr, i + 1, Len(MemoStr)) 0090 Exit For 0091 End If 0092 Next i 0093 MemoStr = "" 0094 If Len(memo(MemoDay)) >= 1 Then 0095 ' vbcrlf 0096 For i = 1 To Len(memo(MemoDay)) 0097 If Mid(memo(MemoDay), i, 2) = " " Then 0098 MemoStr = MemoStr & vbcrlf 0099 i = i

< D5044B57BA6A1B35DAD70C3FE C C0CBA977C344AE77B8D1C344AFB5D3442DB9EAA5CEBD672DA8E5C2C32E706466>

< D5044B57BA6A1B35DAD70C3FE C C0CBA977C344AE77B8D1C344AFB5D3442DB9EAA5CEBD672DA8E5C2C32E706466> 第 2 章 Visual Basic 2008 檢定題庫 TQC-PD 程式設計類 Visual Basic 2008 之術科檢定題庫分為 :1) 基本程式流程控制 2) 物件程式設計 3) 資料庫應用程式開發 及 4) 專案製作等 4 大類測驗, 每類計有 9 題, 共計 36 題 ( 本書實用級, 故僅為第 1 類與第 2 類, 共計 18 題 ) 為遵重智慧財產權, 本解題秘笈僅就程式設計解題之內容說明,

More information

Visual Basic D 3D

Visual Basic D 3D Visual Basic 2008 2D 3D 6-1 6-1 - 6-2 - 06 6-2 STEP 1 5-2 (1) STEP 2 5-3 (2) - 6-3 - Visual Basic 2008 2D 3D STEP 3 User1 6-4 (3) STEP 4 User1 6-5 (4) - 6-4 - 06 STEP 5 6-6 (5) 6-3 6-3-1 (LoginForm) PictureBox1

More information

2 WF 1 T I P WF WF WF WF WF WF WF WF 2.1 WF WF WF WF WF WF

2 WF 1 T I P WF WF WF WF WF WF WF WF 2.1 WF WF WF WF WF WF Chapter 2 WF 2.1 WF 2.2 2. XAML 2. 2 WF 1 T I P WF WF WF WF WF WF WF WF 2.1 WF WF WF WF WF WF WF WF WF WF EDI API WF Visual Studio Designer 1 2.1 WF Windows Workflow Foundation 2 WF 1 WF Domain-Specific

More information

untitled

untitled VB 來 立 李 龍老 年 參 車 令 度 綠 車 不 不 靈 了 來 令來 了老 利 來 練 念 邏 念 數 度 念 狀 不 度 令 數 更 參 VB VB VB 理 VB 類 數 (x,y) (0,0) x y x,y 數 (0,0) (x, 0) (0, y) (x, y) VB 裡 來 VB 來 1 Graphics VB Graphics Private Sub Button1_Click(

More information

untitled

untitled 1 MessageBox 類 MessageBox 類 Show Show (,,, ); Show (string, string, MessageBoxButtons, MessageBoxIcon) MessageBox 類 列 數 MessageBoxButtons.OK MessageBoxButtons.OKCancel MessageBoxButtons.AbortRetryIgnore

More information

IsPostBack 2

IsPostBack 2 5 IsPostBack 2 TextBox 3 TextBox TextBox 4 TextBox TextBox 1 2 5 TextBox Columns MaxLength ReadOnly Rows Text TextMode TextMode MultiLine TextMode MultiLine True False TextMode MultiLine Password MulitLine

More information

VB程序设计教程

VB程序设计教程 高 等 学 校 教 材 Visual Basic 程 序 设 计 教 程 魏 东 平 郑 立 垠 梁 玉 环 石 油 大 学 出 版 社 内 容 提 要 本 书 是 按 高 等 学 校 计 算 机 程 序 设 计 课 程 教 学 大 纲 编 写 的 大 学 教 材, 主 要 包 括 VB 基 础 知 识 常 用 程 序 结 构 和 算 法 Windows 用 户 界 面 设 计 基 础 文 件 处

More information

Microsoft Word - 小心翼翼的二十一點N.doc

Microsoft Word - 小心翼翼的二十一點N.doc 投 稿 類 別 : 資 訊 類 篇 名 : 小 心 翼 翼 的 二 十 一 點 作 者 : 陳 鈺 文 國 立 瑞 芳 高 級 工 業 職 業 學 校 資 訊 二 李 伯 謙 國 立 瑞 芳 高 級 工 業 職 業 學 校 資 訊 二 胡 家 媛 國 立 瑞 芳 高 級 工 業 職 業 學 校 資 訊 二 指 導 老 師 : 周 曉 玲 老 師 陳 思 亮 主 任 壹 前 言 一 研 究 動 機 平

More information

Microsoft PowerPoint - VB14.ppt

Microsoft PowerPoint - VB14.ppt VB 列表盒 LISTBOX 應用 資科系 林偉川 執行畫面 1 2 1 重要屬性 LISTBOX 物件 (VB6) 新增至 LISTBOX 物件中 ADDITEM 自 LISTBOX 物件中刪除選取物件 REMOVEITEM 自 LISTBOX 物件中取出選取物件 ListIndex 顯示 LISTBOX 物件中紀錄個數 Listcount 3 LISTBOX 物件 (VB.NET) 重要屬性 新增至

More information

Chapter 16 集合

Chapter 16 集合 Chapter 16 集合 20 ArrayList StringCollection 16 本章學習目標 : ArrayList ArrayList Array StringCollection 16-1 21 10-3-8 System.Array Clear Clear 16-1 Clear System.Array Microsoft System.Collection IList 542

More information

untitled

untitled 說 參 例 邏 邏 1. 說 2. 數 數 3. 8 4. 理念 李 龍老 立 1. 理 料 2. 理 料 3. 數 料 4. 流 邏 念 5. 良 6. 讀 行 行 7. 行 例 來 邏 1. 說 說 識 量 2. 說 理 類 3. 數 數 念 4. 令 5. 良 6. 流 邏 念 7. 說 邏 理 力 1. 2. 3. 4. 5. 列 念 1 參 1. ( Visual Basic 例 ) (1)

More information

星星排列 _for loop Protected Sub Page_Load(ByVal sender As Object, ByVal e As Dim h As Integer = 7 'h 為變數 ' Dim i, j As Integer For i = 1 To h

星星排列 _for loop Protected Sub Page_Load(ByVal sender As Object, ByVal e As Dim h As Integer = 7 'h 為變數 ' Dim i, j As Integer For i = 1 To h 資訊系統與實習 製作 : 林郁君 一 2009.09.28 9X9 'button 被按下後 ' Dim i, j As Integer For i = 1 To 9 'i 從 1 到 9' For j = 1 To 9 'j 從 1 到 9' If j * i < 10 Then ' 如果 j 乘上 i 是為個位數 ' Response.Write(i & "*" & j & " =" & i *

More information

Microsoft Word - 序.DOC

Microsoft Word - 序.DOC 了 解 副 程 式 意 義 及 使 用 時 機, 變 數 的 存 取 範 圍 及 多 表 單 的 程 式 設 計 7-1 函 式 7-2 副 程 式 7-3 變 數 的 範 圍 7-4 傳 值 呼 叫 及 傳 址 呼 叫 7-5 多 表 單 程 式 設 計 (MDI) 7-6 習 題 在 程 式 設 計 過 程 中, 程 式 會 因 為 不 斷 成 長, 程 式 碼 會 愈 來 愈 長, 有 一 部

More information

untitled

untitled 1 .NET 利 [] [] 來 說 切 切 理 [] [ ] 來 說 拉 類 類 [] [ ] 列 連 Web 行流 來 了 不 不 不 流 立 行 Page 類 Load 理 Response 類 Write 料 Redirect URL Response.Write("!! ives!!"); Response.Redirect("WebForm2.aspx"); (1) (2) Web Form

More information

PowerPoint Presentation

PowerPoint Presentation Visual Basic 2005 學 習 範 本 第 7 章 陣 列 的 活 用 7-1 陣 列 當 我 們 需 要 處 理 資 料 時, 都 使 用 變 數 來 存 放 資 料 因 為 一 個 變 數 只 能 代 表 一 個 資 料, 若 需 要 處 理 100 位 同 學 的 成 績 時, 便 要 使 用 100 個 不 同 的 變 數 名 稱, 這 不 但 會 增 加 變 數 名 稱 命 名

More information

穨文件1

穨文件1 2-1 Access 2000 Visual Basic Access 2000 97 Office Visual Basic Visual Basic Visual Basic VBA Visual Basic Visual Basic 2-1-1 Visual Basic Access Visual Basic ( ) 2-1 2-1 Visual Basic 2-1 Microsoft Access

More information

TC35短信发送程序设计

TC35短信发送程序设计 http://www.dragonsoft.net.cn/down/project/tc35_sms.rar TC35 AT /down/book/tc35_at.pdf TC35/TC35i GSM Modem TC35 GSM POS COM SIM DOWN COM E, vbcr AT VB6.0 1)C# http://www.yesky.com/softchannel/72342380468109312/20040523/1800310.shtml,

More information

投影片 1

投影片 1 計算機程式及實習 期末報告 題目 : 六宿炒翻天 班級 : 奈米一乙姓名 : 陳洋翼學號 :4A514050 老師 : 謝慶存 程式說明 設計結帳系統, 選擇數量後, 在按下計算, 將會顯示總金額 若是老人或小孩, 將可享 8 折或 9 折的優惠 程式畫面 填選數量 在火腿蛋炒飯的數量選擇 1, 並按下計算, 可得總金額 50 元 程式畫面 打折 填選完後, 若客人是小孩或老人, 選擇欲打折項目,

More information

untitled

untitled 1 行 行 行 行.NET 行 行 類 來 行 行 Thread 類 行 System.Threading 來 類 Thread 類 (1) public Thread(ThreadStart start ); Name 行 IsAlive 行 行狀 Start 行 行 Suspend 行 Resume 行 行 Thread 類 (2) Sleep 行 CurrentThread 行 ThreadStart

More information

投影片 1

投影片 1 資料庫管理程式 ( 補充教材 -Part2) 使用 ADO.NET 連結資料庫 ( 自行撰寫程式碼 以實現新增 刪除 修改等功能 ) Private Sub InsertButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles InsertButton.Click ' 宣告相關的 Connection

More information

CHAPTER VC#

CHAPTER VC# 1. 2. 3. 4. CHAPTER 2-1 2-2 2-3 2-4 VC# 2-5 2-6 2-7 2-8 Visual C# 2008 2-1 Visual C# 0~100 (-32768~+32767) 2 4 VC# (Overflow) 2-1 2-2 2-1 2-1.1 2-1 1 10 10!(1 10) 2-3 Visual C# 2008 10! 32767 short( )

More information

VB控件教程大全

VB控件教程大全 Datagrid DataGrid1.Columns.Remove(0) ' 0 DataGrid1.Columns.Add(0).Caption= ' DataGrod1.Columns(0).DataField= Name ' Adodc1.Refresh DataGrid BackColor Font DataGrid CellPadding HTML CellSpacing HTML Width

More information

05 CHAPTER Information.IsNumeric ( ) Information.IsDate ( ) True False Date Date True False Y Y Information.IsArray ( ) True False Y Information.IsErr

05 CHAPTER Information.IsNumeric ( ) Information.IsDate ( ) True False Date Date True False Y Y Information.IsArray ( ) True False Y Information.IsErr 05 CHAPTER Information.IsNumeric () Information.IsDate () True False Date DateTrue False Y Y Information.IsArray () True False Y Information.IsError () Information.IsNothing () True False True False Y

More information

2010年3月计算机等级考试四级网络工程师笔试

2010年3月计算机等级考试四级网络工程师笔试 计 算 机 二 级 VB 经 典 预 测 题 下 列 各 题 A) B) C) D) 四 个 选 项 中, 只 有 一 个 选 项 是 正 确 的 请 将 正 确 选 项 填 涂 在 答 题 卡 相 应 位 置 上, 答 在 试 卷 上 不 得 分 (1) 下 列 叙 述 中 正 确 的 是 ( ) A) 循 环 队 列 是 队 列 的 一 种 链 式 存 储 结 构 B) 循 环 队 列 是 队

More information

計算機程式及實習 期末報告ppt製作 題目:南台黑心早餐店結帳系統

計算機程式及實習 期末報告ppt製作  題目:南台黑心早餐店結帳系統 計算機程式及實習期末報告 ppt 製作 題目 : 南台黑心早餐店結帳系統 南台科技大學機械工程系車輛一乙學號 :4A015038 老師 : 謝慶存 學習重點 早餐店結帳 ListBox RadioButton 的使用方法 題目說明 : 早餐店結帳 試設計快餐店結帳系統, 填寫數量再按下計算鈕之後, 即會顯示結帳總金額 按 清除 按鈕, 再輸入數量, 並點選 老客戶 *0.8, 再按下 計算 鈕, 得到打

More information

ThreeDtunnel.doc

ThreeDtunnel.doc (12) 1 1. Visual Basic Private Sub LoadDatabase() Dim strip As String Dim straccount As String Dim strpassword As String Dim strdatabase As String Dim strtable As String Dim strsql As String Dim strtemp1

More information

<4D F736F F D D342DA57CA7DEA447B14D2DA475B57BBB50BADEB27AC3FEB14DA447B8D5C344>

<4D F736F F D D342DA57CA7DEA447B14D2DA475B57BBB50BADEB27AC3FEB14DA447B8D5C344> 1. 請 問 誰 提 出 積 體 電 路 (IC) 上 可 容 納 的 電 晶 體 數 目, 約 每 隔 24 個 月 (1975 年 更 改 為 18 個 月 ) 便 會 增 加 一 倍, 效 能 也 將 提 升 一 倍, 也 揭 示 了 資 訊 科 技 進 步 的 速 度? (A) 英 特 爾 (Intel) 公 司 創 始 人 戈 登. 摩 爾 (Gordon Moore) (B) 微 軟 (Microsoft)

More information

南華大學數位論文

南華大學數位論文 1 Key word I II III IV V VI 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61

More information

二零零六年一月二十三日會議

二零零六年一月二十三日會議 附 件 B 有 关 政 策 局 推 行 或 正 在 策 划 的 纾 缓 及 预 防 贫 穷 措 施 下 文 载 述 有 关 政 策 局 / 部 门 为 加 强 纾 缓 及 预 防 贫 穷 的 工 作, 以 及 为 配 合 委 员 会 工 作, 在 过 去 十 一 个 月 公 布 及 正 在 策 划 的 新 政 策 和 措 施 生 福 利 及 食 物 局 (i) 综 合 儿 童 发 展 服 务 2.

More information

厨房小知识(四)

厨房小知识(四) I...1...2...3...4...4...5...6...6...7...9...10... 11...12...12...13...14...15...16...17...18...18...19...22...22 II...23...24...25...26...27...27...28...29...29...30...31...31?...32...32...33?...33...34...34...35...36...36...37...37...38...38...40

More information

妇女更年期保健.doc

妇女更年期保健.doc ...1...2...3...5...6...7 40...8... 11...13...14...16...17...19...20...21...26...29...30...32 I ...34...35...37...41...46...50...51...52...53...54...55...58...64...65 X...67...68...70...70...74...76...78...79

More information

小儿传染病防治(上)

小儿传染病防治(上) ...1...2...3...5...7...7...9... 11...13...14...15...16...32...34...34...36...37...39 I ...39...40...41...42...43...48...50...54...56...57...59...59...60...61...63...65...66...66...68...68...70...70 II

More information

<4D6963726F736F667420576F7264202D2031303430333234B875B9B5A448ADFBBADEB27AA740B77EA4E2A5555FA95EAED6A641ADD75F2E646F63>

<4D6963726F736F667420576F7264202D2031303430333234B875B9B5A448ADFBBADEB27AA740B77EA4E2A5555FA95EAED6A641ADD75F2E646F63> 聘 僱 人 員 管 理 作 業 參 考 手 冊 行 政 院 人 事 行 政 總 處 編 印 中 華 民 國 104 年 3 月 序 人 事 是 政 通 人 和 的 關 鍵 是 百 事 俱 興 的 基 礎, 也 是 追 求 卓 越 的 張 本 唯 有 人 事 健 全, 業 務 才 能 順 利 推 動, 政 府 施 政 自 然 績 效 斐 然 本 總 處 做 為 行 政 院 人 事 政 策 幕 僚 機

More information

女性青春期保健(下).doc

女性青春期保健(下).doc ...1...4...10... 11...13...14...15...17...18...19...20...21...22...23...24...26...27...30...31 I ...32...33...36...37...38...40...41...43...44...45...46...47...50...51...51...53...54...55...56...58...59

More information

避孕知识(下).doc

避孕知识(下).doc ...1...3...6...13...13...14...15...16...17...17...18...19...19...20...20...23...24...24...25 I ...25...26...26...27...28...28...29...30...30...31...32...34...35 11...36...37...38...40...42...43...44...44...46

More information

孕妇饮食调养(下).doc

孕妇饮食调养(下).doc ...1...2...5...9 7...9...14...15...16...18...22...23...24...25...27...29...31...32...34 I ...35...36...37...39...40...40...42...44...46...48...51...52...53...53...54...55...56...56...58...61...64 II ...65...66...67...68...69...70...71...72...73...74...75...76...77...80...83...85...87...88

More information

禽畜饲料配制技术(一).doc

禽畜饲料配制技术(一).doc ( ) ...1...1...4...5...6...7...8...9...10... 11...13...14...17...18...21...23...24...26 I ...28 70...30...33...35...36...37...39...40...41...49...50...52...53...54...56...58...59...60...67...68...70...71

More information

中老年保健必读(十一).doc

中老年保健必读(十一).doc ...1...2...4...6...8...9...10...12...14...15...17...18...20...22...23...25...27...29 I ...30...32...35...38...40...42...43...45...46...48...52...55...56...59...62...63...66...67...69...71...74 II ...76...78...79...81...84...86...87...88...89...90...91...93...96...99...

More information

i

i i ii iii iv v vi 1 2 3 4 5 (b) (a) (b) (c) = 100% (a) 6 7 (b) (a) (b) (c) = 100% (a) 2 456 329 13% 12 120 7.1 0.06% 8 9 10 11 12 13 14 15 16 17 18 19 20 (a) (b) (c) 21 22 23 24 25 26 27 28 29 30 31 =

More information

怎样使孩子更加聪明健康(七).doc

怎样使孩子更加聪明健康(七).doc ...1...2...2...4...5 7 8...6...7...9 1 3... 11...12...14...15...16...17...18...19...20...21...22 I II...23...24...26 1 3...27...29...31...31...33...33...35...35...37...39...41...43...44...45 3 4...47...48...49...51...52

More information

i

i i ii iii iv v vi 1 g j 2 3 4 ==== ==== ==== 5 ==== ======= 6 ==== ======= 7 ==== ==== ==== 8 [(d) = (a) (b)] [(e) = (c) (b)] 9 ===== ===== ===== ===== ===== ===== 10 11 12 13 14 15 16 17 ===== [ ] 18 19

More information

马太亨利完整圣经注释—雅歌

马太亨利完整圣经注释—雅歌 第 1 页 目 录 雅 歌 简 介... 2 雅 歌 第 一 章... 2 雅 歌 第 二 章... 10 雅 歌 第 三 章... 16 雅 歌 第 四 章... 20 雅 歌 第 五 章... 25 雅 歌 第 六 章... 32 雅 歌 第 七 章... 36 雅 歌 第 八 章... 39 第 2 页 雅 歌 简 介 我 们 坚 信 圣 经 都 是 神 所 默 示 的 ( 提 摩 太 后 书

More information

多層次傳銷與獎金系統

多層次傳銷與獎金系統 醒 吾 技 術 學 院 資 訊 管 理 系 ( 五 專 部 ) 九 十 六 學 年 度 畢 業 專 題 多 層 次 傳 銷 與 獎 金 系 統 組 員 : 921506122 游 濬 瑋 921506126 陳 彥 宇 921506139 林 龍 華 921506144 陳 昶 志 921506149 楊 璧 如 指 導 老 師 : 汪 淵 老 師 中 華 民 國 九 十 七 年 一 月 十 一 醒

More information

untitled

untitled PowerBuilder Tips 利 PB11 Web Service 年度 2 PB Tips PB9 EAServer 5 web service PB9 EAServer 5 了 便 web service 來說 PB9 web service 力 9 PB11 release PB11 web service 力更 令.NET web service PB NVO 論 不 PB 來說 說

More information

untitled

untitled 1 .NET sln csproj dll cs aspx 說 料 料 利 來 料 ( 來 ) 利 [] [] 來 說 切 切 理 [] [ ] 來 說 拉 類 類 [] [ ] 列 連 Web 行流 來 了 不 不 不 流 立 行 Page 類 Load 理 Click 滑 料 Response 列 料 Response HttpResponse 類 Write 料 Redirect URL Response.Write("!!

More information

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f 27 1 Vol.27 No.1 CEMENTED CARBIDE 2010 2 Feb.2010!"!!!!"!!!!"!" doi:10.3969/j.issn.1003-7292.2010.01.011 OPC 1 1 2 1 (1., 412008; 2., 518052), OPC, WinCC VB,,, OPC ; ;VB ;WinCC Application of OPC Technology

More information

2

2 1 2 1-1 Visual Basic 3 1-2 3/8-3/21 3/22-4/4 4/5-4/18 4/19-5/2 5/3-5/16 5/17-5/30 5/31-6/13 6/14-6/27 6/28-7/11 7/12-7/25 7/26-8/8 8/9-8/22 8/25-9/5 9/6-9/19 9/20-10/3 10/4-10/17 10/18-10/31 11/15-11/28

More information

<4D F736F F D20C0B3A5CEB57BA6A1B35DAD70B4C1A5BDB3F8A7692E646F63>

<4D F736F F D20C0B3A5CEB57BA6A1B35DAD70B4C1A5BDB3F8A7692E646F63> 報告題名 : 作者 : 林芳如系級 : 工業工程與系統管理學系四年甲班學號 :D9439951 開課老師 : 陳亭志課程名稱 : 應用程式設計開課系所 : 工業工程與系統管理學系開課學年 :95 學年度第一學期 目錄 一 方案總管...... 1 二 主選單執行畫面及程式碼...2 三 瀏覽產品資料執行畫面及程式碼...5 四 多筆瀏覽執行畫面及程式碼...6 五 新增產品資料執行畫面及程式碼..8

More information

四川省普通高等学校

四川省普通高等学校 四 川 省 普 通 高 等 学 校 计 算 机 应 用 知 识 和 能 力 等 级 考 试 考 试 大 纲 (2013 年 试 行 版 ) 四 川 省 教 育 厅 计 算 机 等 级 考 试 中 心 2013 年 1 月 目 录 一 级 考 试 大 纲 1 二 级 考 试 大 纲 6 程 序 设 计 公 共 基 础 知 识 6 BASIC 语 言 程 序 设 计 (Visual Basic) 9

More information

Microsoft Word - 第3章.doc

Microsoft Word - 第3章.doc Java C++ Pascal C# C# if if if for while do while foreach while do while C# 3.1.1 ; 3-1 ischeck Test() While ischeck while static bool ischeck = true; public static void Test() while (ischeck) ; ischeck

More information

新・解きながら学ぶJava

新・解きながら学ぶJava 481! 41, 74!= 40, 270 " 4 % 23, 25 %% 121 %c 425 %d 121 %o 121 %x 121 & 199 && 48 ' 81, 425 ( ) 14, 17 ( ) 128 ( ) 183 * 23 */ 3, 390 ++ 79 ++ 80 += 93 + 22 + 23 + 279 + 14 + 124 + 7, 148, 16 -- 79 --

More information

KillTest 质量更高 服务更好 学习资料 半年免费更新服务

KillTest 质量更高 服务更好 学习资料   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : 70-566 Title : Upgrade: Transition your MCPD Windows Developer Skills to MCPD Windows Developer 3 Version : Demo 1 / 14 1.You are creating

More information

untitled

untitled 1 LinkButton LinkButton 連 Button Text Visible Click HyperLink HyperLink 來 立 連 Text ImageUrl ( ) NavigateUrl 連 Target 連 _blank _parent frameset _search _self 連 _top 例 sample2-a1 易 連 private void Page_Load(object

More information

1 Framework.NET Framework Microsoft Windows.NET Framework.NET Framework NOTE.NET NET Framework.NET Framework 2.0 ( 3 ).NET Framework 2.0.NET F

1 Framework.NET Framework Microsoft Windows.NET Framework.NET Framework NOTE.NET NET Framework.NET Framework 2.0 ( 3 ).NET Framework 2.0.NET F 1 Framework.NET Framework Microsoft Windows.NET Framework.NET Framework NOTE.NET 2.0 2.0.NET Framework.NET Framework 2.0 ( 3).NET Framework 2.0.NET Framework ( System ) o o o o o o Boxing UnBoxing() o

More information

Microsoft PowerPoint - OPVB1基本VB.ppt

Microsoft PowerPoint - OPVB1基本VB.ppt 大 綱 0.VB 能 做 什 麼? CH1 VB 基 本 認 識 1.VB 歷 史 與 版 本 2.VB 環 境 簡 介 3. 即 時 運 算 視 窗 1 0.VB 能 做 什 麼? Visual Basic =>VB=> 程 式 設 計 語 言 => 設 計 程 式 設 計 你 想 要 的 功 能 的 程 式 自 動 化 資 料 庫 計 算 模 擬 遊 戲 網 路 監 控 實 驗 輔 助 自 動

More information

報告題名 : 應用程式設計期末報告 產品管理系統 作者 : 張紹剛系級 : 工業二甲學號 :D 開課老師 : 陳亭志課程名稱 : 應用程式設計開課系所 : 工業工程與系統管理開課學年 :97 學年度第 1 學期

報告題名 : 應用程式設計期末報告 產品管理系統 作者 : 張紹剛系級 : 工業二甲學號 :D 開課老師 : 陳亭志課程名稱 : 應用程式設計開課系所 : 工業工程與系統管理開課學年 :97 學年度第 1 學期 報告題名 : 應用程式設計期末報告 產品管理系統 作者 : 張紹剛系級 : 工業二甲學號 :D9568608 開課老師 : 陳亭志課程名稱 : 應用程式設計開課系所 : 工業工程與系統管理開課學年 :97 學年度第 1 學期 目錄 方案總管 : 2 Form1: 首頁 3 Form2: 基本資料維護 6 Form3: 瀏覽產品資料 8 Form4: 全部瀏覽 10 Form5: 瀏覽 / 修改 /

More information

White Paper 2014 届 毕 业 生 内 部 资 料 严 禁 抄 袭 非 经 允 许 不 得 翻 印 就 业 状 况 白 皮 书 就 业 创 业 指 导 中 心 2015 年 5 月 目 录 第 一 部 分 毕 业 生 基 本 情 况... 1 一 2014 届 毕 业 生 基 本 情 况... 1 1 性 别 比 例... 1 2 学 历 类 别... 2 二 初 次 签 约 就 业

More information

「香港中學文言文課程的設計與教學」單元設計範本

「香港中學文言文課程的設計與教學」單元設計範本 1. 2. 3. (1) (6) ( 21-52 ) (7) (12) (13) (16) (17) (20) (21) (24) (25) (31) (32) (58) 1 2 2007-2018 7 () 3 (1070) (1019-1086) 4 () () () () 5 () () 6 21 1. 2. 3. 1. 2. 3. 4. 5. 6. 7. 8. 9. ( ) 7 1. 2.

More information

《Visual Basic程序设计》实验课

《Visual Basic程序设计》实验课 Visual Basic Visual Basic dstang2000@263.net 0 Visual Basic 1 0...1 1 Visual Basic...2 2...3 3...6 4...9 5...13 6...16 7...18 8...22 9...24 10...27 11...29 12 API...31 13...34 14...35 15...38 1 1 Visual

More information

全唐诗28

全唐诗28 ... 1... 1... 1... 2... 2... 2... 3... 3... 4... 4... 4... 5... 5... 5... 5... 6... 6... 6... 6... 7... 7... 7... 7... 8... 8 I II... 8... 9... 9... 9...10...10...10...11...11...11...11...12...12...12...13...13...13...14...14...14...15...15...15...16...16...16...17...17

More information

(Chi)_.indb

(Chi)_.indb 1,000,000 4,000,000 1,000,000 10,000,000 30,000,000 V-1 1,000,000 2,000,000 20,000,00010,000,0005,000,000 3,000,000 30 20% 35% 20%30% V-2 1) 2)3) 171 10,000,00050% 35% 171 V-3 30 V-4 50,000100,000 1) 2)

More information

14A 0.1%5% 14A 14A.52 1 2 3 30 2

14A 0.1%5% 14A 14A.52 1 2 3 30 2 2389 30 1 14A 0.1%5% 14A 14A.52 1 2 3 30 2 (a) (b) (c) (d) (e) 3 (i) (ii) (iii) (iv) (v) (vi) (vii) 4 (1) (2) (3) (4) (5) 400,000 (a) 400,000300,000 100,000 5 (b) 30% (i)(ii) 200,000 400,000 400,000 30,000,000

More information

穨_2_.PDF

穨_2_.PDF 6 7.... 9.. 11.. 12... 14.. 15.... 3 .. 17 18.. 20... 25... 27... 29 30.. 4 31 32 34-35 36-38 39 40 5 6 : 1. 2. 1. 55 (2) 2. : 2.1 2.2 2.3 3. 4. ( ) 5. 6. ( ) 7. ( ) 8. ( ) 9. ( ) 10. 7 ( ) 1. 2. 3. 4.

More information

女性减肥健身(四).doc

女性减肥健身(四).doc ...1...2...3...4...6...7...8...10... 11...14...16...17...23...25...26...28...30...30 I ...31 10...33...36...39...40...42...44...47...49...53...53 TOP10...55...58...61...64...65...66...68...69...72...73

More information

Microsoft Word - 08 单元一儿童文学理论

Microsoft Word - 08 单元一儿童文学理论 单 元 ( 一 ) 儿 童 文 学 理 论 内 容 提 要 : 本 单 元 共 分 成 三 个 小 课 目, 即 儿 童 文 学 的 基 本 理 论 儿 童 文 学 创 作 和 儿 童 文 学 的 鉴 赏 与 阅 读 指 导 儿 童 文 学 的 基 本 理 论 内 容 包 括 儿 童 文 学 的 基 本 含 义 儿 童 文 学 读 者 儿 童 文 学 与 儿 童 年 龄 特 征 和 儿 童 文 学

More information

Microsoft PowerPoint - VB7

Microsoft PowerPoint - VB7 Visual Basic 6.0 (VII) 丙檢試題第二站第二題車輛管理統計 資科系林偉川 第二站試題 BASIC 應用程式設計 編號試題名稱 119-890306 身分證號碼檢查 119-890307 高速公路車輛統計 119-890308 分數加 減 乘 除運算 三選一 (80 分鐘 ) 2 1 第二站第二題高速公路車輛統計 由循序檔讀入多筆記錄 Frame 物件 母件 單一物件 V.S. 物件陣列

More information

第三章

第三章 第 三 章 :2017 年 行 政 長 官 產 生 辦 法 - 可 考 慮 的 議 題 行 政 長 官 的 憲 制 及 法 律 地 位 3.01 基 本 法 第 四 十 三 條 規 定 : 香 港 特 別 行 政 區 行 政 長 官 是 香 港 特 別 行 政 區 的 首 長, 代 表 香 港 特 別 行 政 區 香 港 特 別 行 政 區 行 政 長 官 依 照 本 法 的 規 定 對 中 央 人

More information

nb.PDF

nb.PDF 3 4 5 7 8 9..10..15..16..19..52 -3,402,247-699,783-1,611,620 1,790,627 : - - -7,493 - -1,687 2,863 1,176 2,863 - -148,617 - - 12,131 51,325 - -12,131-2,165 14-2,157 8-3,393,968-794,198-1,620,094 1,781,367

More information

bnbqw.PDF

bnbqw.PDF 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ( ( 1 2 16 1608 100004 1 ( 2003 2002 6 30 12 31 7 2,768,544 3,140,926 8 29,054,561 40,313,774 9 11,815,996 10,566,353 11 10,007,641 9,052,657 12 4,344,697

More information

項 訴 求 在 考 慮 到 整 體 的 財 政 承 擔 以 及 資 源 分 配 的 公 平 性 下, 政 府 採 取 了 較 簡 單 直 接 的 一 次 性 減 稅 和 增 加 免 稅 額 方 式, 以 回 應 中 產 家 庭 的 不 同 訴 求 ( 三 ) 取 消 外 傭 徵 費 6. 行 政 長

項 訴 求 在 考 慮 到 整 體 的 財 政 承 擔 以 及 資 源 分 配 的 公 平 性 下, 政 府 採 取 了 較 簡 單 直 接 的 一 次 性 減 稅 和 增 加 免 稅 額 方 式, 以 回 應 中 產 家 庭 的 不 同 訴 求 ( 三 ) 取 消 外 傭 徵 費 6. 行 政 長 2013 年 1 月 23 日 的 立 法 會 會 議 葛 珮 帆 議 員 就 幫 助 中 產 動 議 的 議 案 ( 經 單 仲 偕 議 員 及 莫 乃 光 議 員 修 正 ) 進 度 報 告 在 2013 年 1 月 23 日 的 立 法 會 會 議 上, 由 葛 珮 帆 議 員 就 幫 助 中 產 動 議 的 議 案, 經 單 仲 偕 議 員 及 莫 乃 光 議 員 修 正 後 獲 得 通 過

More information

(f) (g) (h) (ii) (iii) (a) (b) (c) (d) 208

(f) (g) (h) (ii) (iii) (a) (b) (c) (d) 208 (a) (b) (c) (d) (e) 207 (f) (g) (h) (ii) (iii) (a) (b) (c) (d) 208 17.29 17.29 13.16A(1) 13.18 (a) (b) 13.16A (b) 12 (a) 209 13.19 (a) 13.16A 12 13.18(1) 13.18(4) 155 17.43(1) (4) (b) 13.19 17.43 17.29

More information

1. 本文首段的主要作用是 A. 指出 異蛇 的藥用功效 說明 永之人爭奔走焉 的原因 B. 突出 異蛇 的毒性 為下文 幾死者數矣 作鋪墊 C. 交代以蛇賦稅的背景 引起下文蔣氏有關捕蛇的敘述 2. 本文首段從三方面突出蛇的 異 下列哪一項不屬其中之一 A. 顏色之異 B. 動作之異 C. 毒性之

1. 本文首段的主要作用是 A. 指出 異蛇 的藥用功效 說明 永之人爭奔走焉 的原因 B. 突出 異蛇 的毒性 為下文 幾死者數矣 作鋪墊 C. 交代以蛇賦稅的背景 引起下文蔣氏有關捕蛇的敘述 2. 本文首段從三方面突出蛇的 異 下列哪一項不屬其中之一 A. 顏色之異 B. 動作之異 C. 毒性之 1. 本文首段的主要作用是 A. 指出 異蛇 的藥用功效 說明 永之人爭奔走焉 的原因 B. 突出 異蛇 的毒性 為下文 幾死者數矣 作鋪墊 C. 交代以蛇賦稅的背景 引起下文蔣氏有關捕蛇的敘述 2. 本文首段從三方面突出蛇的 異 下列哪一項不屬其中之一 A. 顏色之異 B. 動作之異 C. 毒性之異 3. 太醫以王命聚之 中的 以 字與下列哪一項的 以 意思相同 A. 以齧人 B. 而吾以捕蛇獨存

More information

untitled

untitled 1993 79 2010 9 80 180,000 (a) (b) 81 20031,230 2009 10,610 43 2003 2009 1,200 1,000 924 1,061 800 717 600 530 440 400 333 200 123 0 2003 2004 2005 2006 2007 2008 2009 500 2003 15,238 2009 31,4532003 2009

More information

Microsoft Word - 發布版---規範_全文_.doc

Microsoft Word - 發布版---規範_全文_.doc 建 築 物 無 障 礙 設 施 設 計 規 範 內 政 部 97 年 4 年 10 日 台 內 營 字 第 0970802190 號 令 訂 定, 自 97 年 7 月 1 日 生 效 內 政 部 97 年 12 年 19 日 台 內 營 字 第 0970809360 號 令 修 正 內 政 部 101 年 11 年 16 日 台 內 營 字 第 1010810415 號 令 修 正 目 錄 第 一

More information

概 述 随 着 中 国 高 等 教 育 数 量 扩 张 目 标 的 逐 步 实 现, 提 高 教 育 质 量 的 重 要 性 日 益 凸 显 发 布 高 校 毕 业 生 就 业 质 量 年 度 报 告, 是 高 等 学 校 建 立 健 全 就 业 状 况 反 馈 机 制 引 导 高 校 优 化 招

概 述 随 着 中 国 高 等 教 育 数 量 扩 张 目 标 的 逐 步 实 现, 提 高 教 育 质 量 的 重 要 性 日 益 凸 显 发 布 高 校 毕 业 生 就 业 质 量 年 度 报 告, 是 高 等 学 校 建 立 健 全 就 业 状 况 反 馈 机 制 引 导 高 校 优 化 招 I 概 述 随 着 中 国 高 等 教 育 数 量 扩 张 目 标 的 逐 步 实 现, 提 高 教 育 质 量 的 重 要 性 日 益 凸 显 发 布 高 校 毕 业 生 就 业 质 量 年 度 报 告, 是 高 等 学 校 建 立 健 全 就 业 状 况 反 馈 机 制 引 导 高 校 优 化 招 生 和 专 业 结 构 改 进 人 才 培 养 模 式 及 时 回 应 社 会 关 切 的 一 项

More information

鱼类丰产养殖技术(二).doc

鱼类丰产养殖技术(二).doc ...1...1...4...15...18...19...24...26...31...35...39...48...57...60...62...66...68...72 I ...73...88...91...92... 100... 104... 144... 146... 146... 147... 148... 148... 148... 149... 149... 150... 151...

More information

疾病诊治实务(一)

疾病诊治实务(一) ...1...4...5...8...13...14...15...18...18...19...22...25...26...27...29...30...32...35 I ...38...42...43...45...48...51...53...56...59...60...60...61...63...65...67...69...72...74...77...80...82...84 II

More information

名人养生.doc

名人养生.doc I...1...3...4...6... 11...14...18...22...26...29...31...38...45...49...56...57...59...61...67 ...72...73...75...77...80...83...85...91...92...93...95...96...97... 103... 107... 109... 110... 112... 118...

More information

<4D6963726F736F667420576F7264202D2040B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8735FA7F5ABD8BFB3B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8732E646F63>

<4D6963726F736F667420576F7264202D2040B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8735FA7F5ABD8BFB3B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8732E646F63> 嘉 義 地 區 客 家 禮 俗 研 究 第 一 章 前 言 嘉 義 地 區 的 客 家 族 群 約 略 可 分 為 福 佬 客 詔 安 客 與 北 部 客 等 三 種 類 別, 其 分 佈 區 域 以 海 線 地 區 平 原 地 形 沿 山 地 區 為 主 有 相 當 多 的 北 部 客 家 人, 是 二 次 大 戰 末 期 和 戰 後 初 期 才 移 民 嘉 義, 是 什 麼 因 素 令 許 多

More information

05301930

05301930 國 立 中 正 大 學 法 學 系 碩 士 論 文 河 川 砂 石 法 規 範 之 探 討 - 以 採 取 土 石 及 挖 掘 河 川 認 定 基 準 為 主 指 導 教 授 : 盧 映 潔 博 士 研 究 生 : 王 瑞 德 中 華 民 國 一 百 零 一 年 五 月 目 錄 第 一 章 緒 論... 1 第 一 節 研 究 動 機... 1 第 二 節 研 究 目 的... 3 第 三 節 研

More information

中老年保健必读(十).doc

中老年保健必读(十).doc ...1...2...3...4...5...6...8...9... 11 - -...13...15...17...18...20...22...23...25...26...28 I II...30...32...34...35...38...40...42...44...46...47...48...50...52...53 X...55...56...57...58...60...61...63...65

More information

23 29 15.6% 23 29 26.2% 3 25 2 15 1 5 1,542 12,336 14,53 16,165 18,934 22,698 25,125 25 2 15 1 5 5,557 7,48 8,877 11, 13,732 17,283 22,485 23 24 25 26

23 29 15.6% 23 29 26.2% 3 25 2 15 1 5 1,542 12,336 14,53 16,165 18,934 22,698 25,125 25 2 15 1 5 5,557 7,48 8,877 11, 13,732 17,283 22,485 23 24 25 26 4, 197823 2916.3%29 335, 23 29.5% 23 29 16.3% 14 35 33,535 14 135 13 125 1,292 1,3 1,38 1,314 1,321 1,328 1,335 3 25 2 15 1 5 1. 1.1 13,582 15,988 1.4 18,322 11.6 11.9 21,192 24,953 3,67 9. 8.7 12 1 8

More information

海淀区、房山区(四)

海淀区、房山区(四) ...1...1...2...7...8...9... 11... 15... 17... 17... 18... 19... 20... 21... 23... 25... 28... 31... 32 I ... 35... 36... 37... 39... 42... 43... 48... 53... 54... 58... 63... 64... 65... 66... 68... 71...

More information

穨ecr1_c.PDF

穨ecr1_c.PDF i ii iii iv 1 2 3 4 5 5555522 6664422 77722 6 7 8 9 10 11 22266 12833 1894 12 13 14 15 16 17 18 19 20 21 22 23 24 25 8.14 2.15 2.18 26 27 28 29 30 31 2.16 2.18 5.23 32 33 34 35 36 37 38 39 40 41 42 43

More information

穨2005_-c.PDF

穨2005_-c.PDF 2005 10 1 1 1 2 2 3 5 4 6 2 7 3 11 4 1 13 2 13 3 14 4 14 5 15 6 16 7 16 8 17 9 18 10 18 2005 10 1 1. 1.1 2 1.2 / / 1.3 69(2) 70(2) 1.4 1.5 1.6 2005 10 1 2. 2.1 2.2 485 20(8) (a) (i) (ii) (iii) (iv) 571

More information

北京理工大学.doc

北京理工大学.doc ( )...1...6...8...10...20...22...24...28...30...32...40 I ...53...55...61 ( )...62...71...74 ( )...77...81...84...86...88...89...91...92...96...99... 110...111... 112 II ... 113... 114... 115... 116...

More information

尲㐵.⸮⸮⸮⸮⸮

尲㐵.⸮⸮⸮⸮⸮ I...1...2...3...4...5...6...8...9...10... 11...12...13...14...15...16...17...18...19...20...21...22...23...24...26 II...27...28...28...29...30...31...32...34...35...36...37...38...39...39...40...41...43...43...44...45...46...47...48...48...49...50

More information

东城区(下)

东城区(下) ...1...1...2...3...9...9... 12... 12... 17... 17... 18... 19... 20... 29... 31... 37... 41... 70... 73 I ... 74... 78... 78... 79... 80... 85... 86... 88... 90... 90... 90... 92... 93... 95... 95... 96...

More information

果树高产栽培技术(一).doc

果树高产栽培技术(一).doc ( ) ...1...1...3...10... 11...12...15...17...18...19...20...22...23...24...26...27...28...30...31...32 I ...36...38...40...41...42...44...45...47...48...49...50...51...52...53...55...58...59...60...61...62...66...67

More information

物质结构_二_.doc

物质结构_二_.doc I...1...3...6...8 --... 11 --...12 --...13 --...15 --...16 --...18 --...19 --...20 --...22 --...24 --...25 --...26 --...28 --...30 --...32 --...34 --...35 --...37 --...38...40 II...41...44...46...47...48...49...51...52...55...58

More information

第一節 研究動機與目的

第一節 研究動機與目的 中 國 文 化 大 學 中 國 文 學 研 究 所 碩 士 論 文 華 嚴 一 真 法 界 思 想 研 究 指 導 教 授 : 王 俊 彥 研 究 生 : 許 瑞 菁 中 華 民 國 98 年 12 月 自 序 在 佛 教 經 典 中 最 初 接 觸 的 是 佛 說 無 量 壽 經, 此 經 乃 大 方 廣 佛 華 嚴 經 的 精 華 版 綱 要 版 為 了 瞭 解 經 義, 深 知 宇 宙 運

More information

水力发电(九)

水力发电(九) ...1...17...20...26...27...30...33...34...36...37...44...47...49...58...77...79...90...96...107 I ...114...115...132...134...137...138...139...140...142...142...144...146...146...146...148...148...149...149...150...151...151...152

More information

中国古代文学家(八).doc

中国古代文学家(八).doc ...1...5...26...27...43...44...48...50...52...54...55...57...60...61...62...63...65...67...68 I ...69...70...71...75...77...78...82...84...95...98...99... 101... 103... 107... 108... 109... 110...111...

More information

景观植物(一)

景观植物(一) ...1...5...6...8... 11...13...15...18...21...23...26...29...43...51 5...53...58...62...63...65 I ...67...70...72...74...76...77...78...80...81...84...85...87...88...90...92...94...97... 109... 113... 115...

More information

Microsoft Word - 目录.doc

Microsoft Word - 目录.doc 教 学 管 理 文 件 汇 编 目 录 教 育 法 规 和 指 导 性 文 件 1. 中 华 人 民 共 和 国 高 等 教 育 法 1 2. 中 华 人 民 共 和 国 教 师 法 8 3. 普 通 高 等 学 校 学 生 管 理 规 定 12 4. 高 等 学 校 学 生 行 为 准 则 18 5. 中 华 人 民 共 和 国 学 位 条 例 19 6. 高 等 学 校 教 学 管 理 要 点

More information

园林植物卷(三).doc

园林植物卷(三).doc I II III IV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 84k 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65

More information