投稿者 ローマ皇帝レオ♪  (小学生) 投稿日時 2009/1/11 16:06:54
そうさん>初心者本は面白いよ。
まぁ、最初のページは簡単だけど、だんだん難しくはなるけどね♪
僕チンは4冊購入したよ。
本はボロボロになるまで何回でも読み返す。面白いから。
クイズ的にサンプルを作っといたよ。
Option Strict On
'環境 
'Vista 
'Visual Basic 2008 
'条件 
'ComboBox1,Label1,Button1をForm1に配置する 
Public Class Form1
    Private Sub Form1_Load(ByVal sender As ObjectByVal e As System.EventArgs) Handles Me.Load
        Button1.Text = "解答"
        Label1.Text = "問題1__>徳川家康の幼名は?"
        With Me.ComboBox1.Items
            .Add("虎千代")
            .Add("松千代")
            .Add("影千代")
            .Add("竹千代")
        End With
        ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList
    End Sub

    Private Sub Button1_Click(ByVal sender As System.ObjectByVal e As System.EventArgs) Handles Button1.Click
        If ComboBox1.Text = Nothing Then
            MsgBox("何も選択されてないよ♪") : Return
        End If
        If MessageBox.Show(ComboBox1.Text, "解答", MessageBoxButtons.YesNo, MessageBoxIcon.Question) = _
        DialogResult.No Then
            Return
        End If
        Select Case ComboBox1.SelectedIndex
            Case 0, 1, 2
                MsgBox("不正解です")
            Case 3
                MsgBox("正解です")
        End Select
    End Sub
End Class