สามารถเปลี่ยนชื่อที่แสดงในฟอรัมได้ โดยไปที่ Profile>Account Settings แล้วพิมพ์ชื่อที่ต้องการลงใน Name: แล้วกดปุ่ม Change profile (อย่าลืมกรอกรหัสผ่านของตนเองลงในช่อง Current Password ด้วย มิฉะนั้นจะเปลี่ยนไม่ได้)
0 Members and 1 Guest are viewing this topic.
Imports System.ThreadingPublic Class Form1 Dim t As Thread Sub test() Text1.AppendText("eartH") End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click t = New Thread(AddressOf Me.test) t.Start() End SubEnd Class
Imports System.ThreadingPublic Class Form1 Private text As String Private Sub Test() text = "Hello" End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim t As Thread t = New Thread(AddressOf Test) t.Start() t.Join() TextBox1.AppendText(text) End SubEnd Class