Page 1 of 1
อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2010
Posted: Sun Feb 19, 2012 4:21 pm
by khosit_19
ปัญหาของผม คือ ผมต้องการส่งค่าจาก VB ออกทาง Serial port โดยส่งออกไปทีละ 1 ตัวอักษร แต่ผมติดปัญหาตรงที่ค่าใน ช่อง Volume ผมเอาค่าในช่องนี้เก็บไว้ในตัวแปร String โดยมันจะมีค่าตั้งแต่ 0 - 5000 ul กรณีที่เป็นตัวเลข 4 หลักจะไม่มีปัญหาในการส่งครับ แต่ พอผมใส่ เลขที่น้อยกว่า 4 หลัก โปรแกรมมันจะฟ้องว่าในหลักนั้นไม่มีค่า โดยผมใช้คำสั่งนี่ครับ
Code: Select all
SerialPort1.Write(Volume(0))
SerialPort1.Write(Volume(1))
SerialPort1.Write(Volume(2))
SerialPort1.Write(Volume(3))
ไม่ทราบว่า จะสามารถเขียนโปรแกรมยังไง ให้มันส่งค่าว่างในหลักที่เหลือ อยู่ได้ครับ
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Sun Feb 19, 2012 6:15 pm
by snasui
Code ที่โพสต์มาดูไม่ออกครับว่าเขียนไว้อย่างไร ผมเข้าใจว่าต้องการส่งทีละอักขระออกไป เลยเขียนเป็นตัวอย่างการตัดอักขระออกมาแล้วใส่เป็น Array แล้วเรียกแต่ละส่วนประกอบของ Array ออกมาแสดงใน MsgBox ลองปรับใช้ดูครับ
Code: Select all
Public Class Form1
Private Sub Button1_Click(sender As System.Object, _
e As System.EventArgs) Handles Button1.Click
Dim s() As String
Dim i As Integer
Dim iCount As Integer
i = Len(TextBox1.Text)
ReDim s(i)
For iCount = 1 To i
s(iCount) = Mid(TextBox1.Text, iCount, 1)
MsgBox("Volume " & iCount & " = " & s(iCount))
Next
End Sub
End Class
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Fri Feb 24, 2012 2:59 pm
by khosit_19
ขอบคุณอาจารย์สำหรับคราวก่อนมากครับ ใช้งานได้ดีครับ วันนี้ผมมีปัญหามาปรึกษาอาจารย์อีกแล้วครับ
เกรงใจอาจารย์มากเลย แต่ผมไม่รู้จะไปถามใครดีครับ รบกวนด้วยน่ะครับ
ปัญหาผมคือ เวลาผมส่งค่า volume ออกไป มันจะเข้าเงื่อนไข UP DOWN SWING แค่ที่มี ค่า volume ค้างอยู่ใน text box เท่านั้นอ่ะครับ เพราะฉะนั้นมันจึงทำแค่ในเงื่อนไข Water และ Solution1 อย่างเดียวครับ ถ้าผมลบค่าใน text box ของ volume ออก หรือถ้ามีการสั่ง UP DOWN SWING ที่มี volume สอดคล้องกับ ใน text box ตอนนั้น อยู่ก็จะทำงานเหมือนกันครับ
ไม่ทราบว่า จะเขียนโปรแกรมยังไง ให้มันเข้าทุกเงื่อนไขที่ถูกเลือกไว้ครับ
Code: Select all
Public Class Form1
Delegate Sub SetTextCallback(ByVal [text] As String)
Dim Volume As Integer
Dim cycle As Integer = 0
Private Sub Volume_Need_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Volume_Need.TextChanged
If Volume_Need.Text = "" Then
Volume = 0
Exit Sub
End If
If Not IsNumeric(Volume_Need.Text) Then
MessageBox.Show("กรุณาใส่ค่าเป็นตัวเลขตั้งแต่ 0 - 5 ml ครับ")
Volume_Need.Text = ""
End If
End Sub
Private Sub Send3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Send3.Click
If Volume_Need.Text = "" Then
Volume = 0
Else : Volume = Volume_Need.Text
End If
'////////////////////////////////////////////////////////////////////////////
If Num_cycle.Text = "" Then
cycle = 0
Else : cycle = Num_cycle.Text
End If
'////////////////////////////////////////////////////////////////////////////
If (Up_botton.Checked = True) And (Volume_Need.Text <> "") Then
Command_list.Items.Add(" Syringe UP : " + CStr(Volume) + " µL")
ElseIf (Down_botton.Checked = True) And (Volume_Need.Text <> "") Then
Command_list.Items.Add(" Syringe Down : " + CStr(Volume) + " µL")
End If
If (Swing_botton.Checked = True) And (Num_cycle.Text <> "") Then
Command_list.Items.Add(" Syringe Swing : " + CStr(cycle) + " cycle")
End If
End Sub
Private Sub Start_botton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Start_botton.Click
Dim a As Object
For Each a In Command_list.Items
If a = " Syringe UP : " + CStr(Volume) + " µL" Then
SerialPort1.Write("U")
MessageBox.Show("UP")
SerialPort1.Write(CStr(Volume))
MessageBox.Show(Volume)
SerialPort1.Write("E")
MessageBox.Show("E")
'///////////////////////// UP //////////////////////////////////
ElseIf a = " Syringe Down : " + CStr(Volume) + " µL" Then
SerialPort1.Write("D")
MessageBox.Show("Down")
SerialPort1.Write(CStr(Volume))
MessageBox.Show(Volume)
SerialPort1.Write("E")
MessageBox.Show("E")
'//////////////////////////////// DOWN ////////////////////////////
ElseIf a = " Syringe Swing : " + CStr(cycle) + " cycle" Then
SerialPort1.Write("G")
MessageBox.Show("Swing")
SerialPort1.Write(CStr(cycle))
MessageBox.Show(cycle)
SerialPort1.Write("E")
MessageBox.Show("E")
'/////////////////////////////// Swing ////////////////////////////////
ElseIf a = " Selection valve : Water" Then
SerialPort1.Write("W")
MessageBox.Show("Water")
SerialPort1.Write("E")
MessageBox.Show("End")
'///////////////////////////// Water ///////////////////////////////////
ElseIf a = " Selection valve : Solution1" Then
SerialPort1.Write("S")
MessageBox.Show("Solution1")
SerialPort1.Write("E")
MessageBox.Show("End")
'//////////////////////////// Solution1 /////////////////////////////////
End If
Next
End Sub
End Class
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Fri Feb 24, 2012 8:29 pm
by snasui
ไม่ทราบว่าสามารถส่งไฟล์ตัวอย่างมาได้หรือไม่ครับ จะได้ช่วยทดสอบได้ และช่วยอธิบายขั้นตอนการทำงานด้วยว่าต้องการทำอะไรและให้แสดงผลเป็นอย่างไร เพื่อจะได้เข้าใจตรงกันครับ
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Fri Feb 24, 2012 8:50 pm
by khosit_19
ได้ครับๆ อันนี้ครับอาจารย์ ตาม link นี้เลยครับ
http://file2.uploadfile.biz/i/MWEMMEIMMEWVMD
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Fri Feb 24, 2012 9:01 pm
by snasui
Zip แล้วแนบมากับฟอรัมเลยครับไม่จำเป็นต้องไปฝากไว้ที่อื่น
สำหรับไฟล์ที่ฝากไว้ผมโหลดไม่ได้ เกิด Error ครับ
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Fri Feb 24, 2012 9:23 pm
by khosit_19
อาจารย์ครับ ไฟล์มันพอ zip แล้ว อัพบนบอร์ดไม่ได้ครับ มันแจ้งว่าไฟล์ขนาดเกิน 300 kb ผมเลยนำไปฝากกับเว็บฝากไฟล์เหมือนเดิมครับ ผมไม่แน่ใจว่าไฟล์ที่ zip ไปนั้นจะเปิดรึเปล่า แต่ผมลองเปิดแล้วในเครื่องครับ พอดีตั้งแต่เริ่มหัดเขียน VB มา ผมยังไม่เคยไปยุ่งกับไฟล์เลยครับ เลยไม่รู้ว่าต้องมีไฟล์อะไรบ้าง
http://file2.uploadfile.biz/i/MWEMMEIMMIIVXD
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Fri Feb 24, 2012 9:38 pm
by snasui
เปิดไม่ได้ครับ เกิด Error ตามภาพด้านล่างครับ
ลองส่งไฟล์มาที่
snasui@gmail.com ครับ
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Fri Feb 24, 2012 11:43 pm
by khosit_19
ขอโทษที่มาตอบช้าน่ะครับ อาจารย์ ผมพยายามจะส่งไฟล์ให้อาจารย์ เพราะตอนแรกผมเก็บไฟล์ไว้ต่างที่กัน แล้วเอามารวมกันไม่ได้ ทำไปทำมา พังหมด
ผมเลยทำใหม่หมดเลยครับ ส่วนไฟล์ ผมส่งให้ทาง e-mail ของอาจารย์แล้วน่ะครับ
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Sat Feb 25, 2012 6:26 am
by snasui
ผมตรวจสอบอีเมลแล้วยังไม่ได้รับไฟล์ครับ
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Sat Feb 25, 2012 7:51 am
by khosit_19
เช้านี้ ผมส่งให้ไปให้ใหม่แล้วน่ะครับอาจารย์
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Sat Feb 25, 2012 8:01 am
by snasui
ยังไม่ได้รับครับ ไฟล์มีขนาดเท่าไรครับ
และช่วยตรวจสอบว่าคีย์อีเมลผมถูกต้องหรือไม่ครับ
snasui@gmail.com
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Sat Feb 25, 2012 8:59 am
by khosit_19
ผมเปลี่ยนเป็นใช้ e-mail จาก gmail ส่งให้ใหม่อีกครั้งแล้วครับ
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Sat Feb 25, 2012 10:02 am
by snasui
เท่าที่ดู Code พบว่าการนำค่า Value ใน TextBox ไปตรวจสอบกับ String ใน ListBox ไม่สามารถใช้ได้
เพราะค่าใน TextBox ถูกเปลี่ยนไปจากการคลิกเลือกของ User แล้ว ดังนั้น การตรวจสอบ
จึงต้องตรวจกับค่าของ String ใน ListBox เอง เทียบกับค่าที่สามารถจะเป็นไปได้ทั้งหมด โดยเขียน Code
Extract Value ใน String ออกมาเอง
ลองปรับใช้ตัวอย่าง Code ตามด้านล่างและตามไฟล์แนบครับ
Code: Select all
Private Sub Start_botton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Start_botton.Click
Dim a As Object = 0 'Set ไว้สำหรับเปรียบเทียบ ค่าจาก Listbox
Dim s As String
Dim t As String = "0123456789"
Dim i As Integer
'On Error Resume Next
For Each a In Command_list.Items
s = ""
For i = 1 To Len(a)
If InStr(t, Mid(a, i, 1)) > 0 Then
s = s & Mid(a, i, 1)
End If
Next
'If a = " Syringe UP : " + CStr(Volume) + " µL" Then
If Mid(a, 1, 14) = " Syringe UP : " And Mid(a, Len(a) - 2, 3) = " µL" Then
MsgBox(Mid(a, Len(a) - 2, 3))
SerialPort1.Write("U")
MessageBox.Show("UP")
SerialPort1.Write(s)
MessageBox.Show(s)
SerialPort1.Write("E")
MessageBox.Show("E")
'///////////////////////// UP //////////////////////////////////
'ElseIf a = " Syringe Down : " + CStr(Volume) + " µL" Then
ElseIf Mid(a, 1, 16) = " Syringe Down : " And Mid(a, Len(a) - 2, 3) = " µL" Then
SerialPort1.Write("D")
MessageBox.Show("Down")
SerialPort1.Write(CStr(Volume))
MessageBox.Show(Volume)
SerialPort1.Write("E")
MessageBox.Show("E")
'//////////////////////////////// DOWN ////////////////////////////
'ElseIf a = " Syringe Swing : " + CStr(cycle) + " cycle" Then
ElseIf Mid(a, 1, 17) = " Syringe Swing : " And Mid(a, Len(a) - 5, 6) = " cycle" Then
SerialPort1.Write("G")
MessageBox.Show("Swing")
SerialPort1.Write(CStr(cycle))
MessageBox.Show(cycle)
SerialPort1.Write("E")
MessageBox.Show("E")
'/////////////////////////////// Swing ////////////////////////////////
ElseIf a = " Selection valve : Water" Then
SerialPort1.Write("W")
MessageBox.Show("Water")
'///////////////////////////// Water ///////////////////////////////////
ElseIf a = " Selection valve : Solution1" Then
SerialPort1.Write("S")
MessageBox.Show("Solution1")
'//////////////////////////// Solution1 /////////////////////////////////
End If
Next
SerialPort1.Write("C")
MessageBox.Show("Complete")
End Sub
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Sat Feb 25, 2012 9:29 pm
by bank9597
ตอบได้หมดทุกเรื่องเลยน่ะครับอาจารย์ ผมชักจะทนไม่ไหวแล้วสิ ต้องมาช่วยตอบด้วย ได้ไหมครับ
(ผมพูดเล่นหน่ะครับ เอิ๊กๆ)
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Sat Feb 25, 2012 9:36 pm
by snasui
ด้วยความยินดีครับ
Re: อยากสอบถามเกี่ยวกับ การส่งค่าออกทาง Serial port ด้วย VB2
Posted: Sun Feb 26, 2012 12:53 am
by khosit_19
อาจารย์สุดยอดความเทพเลยครับ ไม่รู้จะขอบคุณอาจารย์ยังไงดี ส่วน code นั้น ผมจะลองทำความเข้าใจ แล้วนำไปใช้ครับ ขอบคุณอาจารย์จริงๆครับ