EXCEL TOOLS
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
[code]
และปิดด้วย [/code]
ตัวอย่างเช่น [code]dim r as range[/code]
เพื่อให้แตกต่างจากข้อความทั่วไป สะดวกในการอ่านและทดสอบ (คลิกเพื่อดูตัวอย่างเพิ่มเติม)Code: Select all
Private Sub Hosting_port()
Try
MyTcpListener = New TcpListener(IPAddress.Any, 6666)
MyTcpListener.Start()
While True
Try
MySocket = MyTcpListener.AcceptSocket
Dim MyNetworkStream As NetworkStream = New NetworkStream(MySocket)
Dim Mystr As StreamReader = New StreamReader(MyNetworkStream)
While True
DataArray = Split(Mystr.ReadLine, ",")
MsgBox(DataArray)
Temp = DataArray(0)
Humi = DataArray(1)
Dim colum1, colum2, colum3 As String
colum1 = txtTime
colum2 = DataArray(0)
colum3 = DataArray(1)
Dim filename As String = "" & FN & "" & txtDate1 & ".txt"
Dim writer As System.IO.StreamWriter = New StreamWriter(filename, True)
writer.WriteLine("Time " & colum1 & " Temp. " & colum2 & " Humidity " & colum3)
writer.Close()
End While
Catch ex1 As Exception
MessageBox.Show("Can't Receive", "WiFiLogtech Message:...")
End Try
End While
Catch ex As Exception
MessageBox.Show("Disconnect", "WiFiLogtech Message:...")
End Try
End Sub
MessageBox.Show(Ex1.Message)
เพื่อดู Error ว่าระบบฟ้องว่าอย่างไรครับ