Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Top Posters

Who's Online (0)

Powered by Vanilla. Made with Bootstrap.
[VB.NET] Police Radio Scanner
  • Xin
    Posts: 3,251
    Use the Windows Media Player Usecontrol on a form then use this source

    Public Class Form1

    Private Sub TreeView1_AfterSelect(ByVal sender As System.Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) Handles TreeView1.AfterSelect
    If TreeView1.SelectedNode.Name = \"nodLAPD\" Then
    radio.URL = \"http://relay.radioreference.com:80/ca_lapd1\"

    ElseIf TreeView1.SelectedNode.Name = \"nodMadison\" Then
    radio.URL = \"http://relay.radioreference.com:80/287564799\"
    )
    ElseIf TreeView1.SelectedNode.Name = \"nodTusc\" Then
    radio.URL = \"http://relay.radioreference.com:80/94159773\"

    ElseIf TreeView1.SelectedNode.Name = \"nodPhoenix\" Then
    radio.URL = \"http://relay.radioreference.com:80/498044021\"

    ElseIf TreeView1.SelectedNode.Name = \"nodMiamiDep\" Then
    radio.URL = \"http://www.liveatc.net/get_asx_feed.php?mount=kmia_twr\"


    End If
    End Sub

    End Class
    Xin
  • Sh3llc0d3
    Posts: 1,910
    Is this legit? Would be alot more useful if it had UK copper's channels too :P nice work though Xin