Visual Basic 中学校 掲示板 投稿の管理
タグのない投稿を抽出
統計
RSS
Visual Basic 中学校
投稿一覧
こんなの作りたいんです。
この投稿へのリンク
https://keijiban.umayadia.com/ThreadDetail.aspx?ThreadId=9666#CommentId14952
この投稿の削除
削除パスワード
削除する
コメント本文
投稿者
超見習い初心者
 (社会人)
投稿日時
2010/6/10 19:07:16
Begin VB.Label Label2
Caption = "Xズレ値±"
Height = 255
Index = 2
Left = 4440
TabIndex = 7
Top = 960
Width = 735
End
Begin VB.Label Label3
Caption = "90度のみ"
BeginProperty Font
Name = "MS Pゴシック"
Size = 9
Charset = 128
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 255
Index = 0
Left = 2880
TabIndex = 6
Top = 720
Width = 855
End
Begin VB.Label Label2
Caption = "Yズレ値±"
Height = 255
Index = 1
Left = 2880
TabIndex = 5
Top = 1440
Width = 735
End
Begin VB.Label Label2
Caption = "Xズレ値±"
Height = 255
Index = 0
Left = 2880
TabIndex = 4
Top = 960
Width = 735
End
Begin VB.Image Image1
Height = 1020
Left = 120
Picture = "Form1.frx":0000
Top = 600
Width = 2535
End
Begin VB.Label Label1
Alignment = 2 '中央揃え
BackColor = &H00E0E0E0&
Caption = "変換ソト
Ver.2010060601"
ForeColor = &H00000000&
Height = 375
Left = 600
TabIndex = 0
Top = 120
Width = 4335
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Call MAIN
End Sub
Private Sub Command2_Click()
End
End Sub
Private Sub Form_Load()
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Text4.Text = ""
Text5.Text = ""
Text6.Text = ""
Text7.Text = ""
Text8.Text = ""
Text9.Text = ""
End Sub
Private Sub Image1_Click()
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
' If KeyAscii >= 48 And KeyAscii <= 57 Then
' KeyAscii = 0
' End If
Dim X90 As Integer
If Len(Text1.Text) = 0 Then 'Testbox1の文字が0の場合
MsgBox "ズレ(±)X・Y数値を入力して下さい。" '数値入力忘れの注意表示
' Cancel = True
Text1.SetFocus '数値が入力されてないのでマウスをTextBox1へ移動させる。
End If
X90 = Val(Text1.Text)
End Sub