1
I have this code
With SerialPort1
.Write("AT" & vbCrLf)
Threading.Thread.Sleep(1000)
.Write("AT+CMGF=1" & vbCrLf)
Threading.Thread.Sleep(1000)
.Write("AT+CMGS=" & Chr(34) & txtnumber.Text & Chr(34) & vbCrLf)
.Write(txtmessage.Text & Chr(26))
Threading.Thread.Sleep(1000)
End With
let’s say in the txtmessage.Text
I want to put like mensagem[i].Text
with an array list.
Example:
Private Sub menssagem(txtmessage, TextBox1, TextBox2, TextBox3, TextBox4, TextBox5, TextBox6, TextBox7, TextBox8)
Dim menssagem(8) As Integer
End Sub
in total are 9 TextBox
that I want to be drawn to continue with the function.
Another thing, in the SerialPort1
Is it possible for me to enter an array list as well? What if the SerialPort12
, let’s say, she’s unanswered, has a way Next to the next array list?
was worth the attention, I think I understand what I have to do ! Thank you
– Mandrake Venom
@Mandrakevenom Joia. See here how the site works. Until next!
– Leonel Sanches da Silva