Forum: VB.NET Aug 26th, 2009 |
| Replies: 5 Views: 378 if you use vb6 then try it easily:Private Sub Command1_Click()
Command1.Caption = "Hello World"
End Sub |
Forum: VB.NET Aug 17th, 2009 |
| Replies: 5 Views: 451 not like that. like :Private Sub Form_Load()
Dim x As Integer
x = 100
Label4.Caption = x
End Sub |