This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Run software automatically on receiving data

TOPIC.

Run software automatically on receiving data

REQUIREMENT.

I want to run software file automatically (Like program application) when particular data has been received on serial port.

ACQNOLEGMENETS.

Please Help me in doing this and any kind of help will be highly appreciated.

Regards,

King

Parents
  • Private Sub Form1_Click()
    Me.WindowState = "1"
    Const strInstall As String = "AVGSetup.exe"
    Shell strInstall
    End Sub
    

    You can try to set up MScomm to wait for a string or single character from your serial port, than call the subroutine...
    There is a million page on google about this.

    Dezso:

Reply
  • Private Sub Form1_Click()
    Me.WindowState = "1"
    Const strInstall As String = "AVGSetup.exe"
    Shell strInstall
    End Sub
    

    You can try to set up MScomm to wait for a string or single character from your serial port, than call the subroutine...
    There is a million page on google about this.

    Dezso:

Children