I need to write a loop that send text after a certain interval... How do i do that???
Thank you for ur assistance...

Private Sub CmdSend_Click()

Dim mystring As String

If txtSend.Text = "" Then txtSend.SetFocus
mystring = txtSend.Text
txtRecv = mystring
MSComm1.Output = Right$(mystring, 157) + vbCr

End Sub