[VB6][HELP] Coding A Radio Player [Help][VB6]

Yea U SHould Just Make A Private Website like use Freewebs And put your Name As fdsfsdffdsfsdfdsfsfdsfsdfsdfaseQRE Then like link it To That Form your Vb6 Application
 
Learn to setup one and then come back and ask us, it's no good asking how to make one in VB if you don't know how to setup one on the web first, once you have made one on the web just insert a webbrowser (call it webradio) and then have an executer like a command button, label etc or even form_load (so it loads when the form loads) and insert this code:
Code:
webradio.Navigate ("http://www.domain.com/radio/")
and modify the domain.com/radio to the page you created the radio on.

Also you shouldn't lie in your posts (http://forum.ragezone.com/3025835-post2.html), its ragezone which is a good online community and if you respect people, people will respect you so don't lie about things because they may come back to bite you, just a heads up.
 
I have never had the need to make a online radio before so I wouldn't know how tbh

How do you test the radio servers that you have 'created' if you don't know how to set them up?

I'm not going to bother with this thread anymore, I have given you a way to do something, if you don't know how to setup a radio then I can't help you then as I don't see me setting up a radio in the future, I just know how to get it to work through Visual Basic.
 
Ok here is code for radio in HTML
<object classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" name="player" width="534" height="35" standby="Loading" align="center">
<param name="URL" ref value="485.478.774.***:8112/"> Change here ip and port to the ip where the server is hosted...
<param name="rate" value="1">
<param name="balance" value="0">

<param name="currentPosition" value="280309411">
<param name="defaultFrame" value>
<param name="playCount" value="1">
<param name="autoStart" value="-1">
<param name="currentMarker" value="0">
<param name="invokeURLs" value="-1">
<param name="baseURL" value>
<param name="volume" value="20">
<param name="mute" value="0">

<param name="uiMode" value="mini">
<param name="stretchToFit" value="0">
<param name="windowlessVideo" value="0">
<param name="enabled" value="-1">
<param name="enableContextMenu" value="-1">
<param name="fullScreen" value="0">
<param name="SAMIStyle" value>
<param name="SAMILang" value>
<param name="SAMIFilename" value>

<param name="captioningID" value>
<param name="enableErrorDialogs" value="0">
<param name="_cx" value="3969">
<param name="_cy" value="926">
</object>
 
Freewebs dont allow this on their hosting.
<object classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" name="player" width="534" height="35" standby="Loading" align="center">
<param name="URL" ref value="485.478.774.***:8112/"> Change here ip and port to the ip where the server is hosted...
<param name="rate" value="1">
<param name="balance" value="0">

<param name="currentPosition" value="280309411">
<param name="defaultFrame" value>
<param name="playCount" value="1">
<param name="autoStart" value="-1">
<param name="currentMarker" value="0">
<param name="invokeURLs" value="-1">
<param name="baseURL" value>
<param name="volume" value="20">
<param name="mute" value="0">

<param name="uiMode" value="mini">
<param name="stretchToFit" value="0">
<param name="windowlessVideo" value="0">
<param name="enabled" value="-1">
<param name="enableContextMenu" value="-1">
<param name="fullScreen" value="0">
<param name="SAMIStyle" value>
<param name="SAMILang" value>
<param name="SAMIFilename" value>

<param name="captioningID" value>
<param name="enableErrorDialogs" value="0">
<param name="_cx" value="3969">
<param name="_cy" value="926">
</object>
It's only HTML.
 
Back