Board logo

標題: [原創] vb2010 陣列顯示的結果... [打印本頁]

作者: mark15jill    時間: 2012-12-5 17:27     標題: vb2010 陣列顯示的結果...

本帖最後由 mark15jill 於 2012-12-5 17:29 編輯

vb2010 可以這樣做..
其他版本請自行研究
純屬好玩...(其實是 陣列還沒搞好ˇˇ
[attach]13394[/attach]
  1. Public Class Form1
  2.     Dim chbo1(97, 56) As CheckBox

  3.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

  4.         Dim usx1, usy1 As Integer
  5.         Dim nn As Integer


  6.         Dim fontFamily As New FontFamily("微軟正黑體")
  7.         Me.Show()

  8.         nn = 1

  9.         For usx1 = 0 To 97
  10.             For usy1 = 0 To 56
  11.                 chbo1(usx1, usy1) = New CheckBox
  12.                 chbo1(usx1, usy1).BackColor = Color.Aquamarine
  13.                 chbo1(usx1, usy1).Width = 20
  14.                 chbo1(usx1, usy1).Height = 20
  15.                 chbo1(usx1, usy1).Appearance = Appearance.Button
  16.                 chbo1(usx1, usy1).TextAlign = ContentAlignment.MiddleCenter
  17.                 chbo1(usx1, usy1).Font = New Font(fontFamily, 14, FontStyle.Regular, GraphicsUnit.Pixel)
  18.                 chbo1(usx1, usy1).Location = New Point((15 * usx1), (15 * usy1))
  19.                 Me.Controls.Add(chbo1(usx1, usy1))
  20.                 'chbo1(usx1, usy1).Text = chbo1(usx1, usy1).Name & "第一區塊" & Chr(10) & Chr(10) & nn
  21.                 nn = nn + 1
  22.             Next
  23.         Next


  24.         '分隔線'


  25.         usx1 = Nothing
  26.         usy1 = Nothing

  27.     End Sub
  28. End Class
複製代碼





歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)