View Full Version : Radio Player
Flick0rz
10-10-2009, 08:33 PM
Does anyone remember a while back a fan site that you used to be able to download a program for which had there radio in it, plus i believe it had a load of other features like radio stats embedded and a request system.
Does anyone know if something like that is around? And what would have been used to create it?
Its not amazingly difficult to make, I could probably do one.
C# if what you'll need.
Flick0rz
11-10-2009, 11:18 AM
Iv got visual basic 2008 and iv just been playing around with it and looking at a few tutorials, i have managed to make a .exe where it has my radio player and a website bit which pulls up my request page, and that works fine, however you cant move it out of the debug folder otherwise it will not work
However now what i want to try and make is a staff panel. At the moment i am using kristall panel, i want to be able to use my login form to use the usernames and passwords of my dj accounts on the staff panel. (If you understand that :P?)
When you log in it opens a new form with the staff panel in, I can do this and get it to open to the webpage in this new form but that is kind of pointless because they have to login again anyway to the staff panel, i want to try merge my kristallpanel database into this vb application :P
You can. I don't really know how to do that myself.
For security reasons, I think it'd be better not to like merge C# and then the PHP and MySQL, but.. it's up to you.
Flick0rz
11-10-2009, 12:33 PM
Gah i dont understand how to do it anyway :P
Il just keep playing around with tutorials until i get the hang of it, i really want to find out what site used to do that radio player which you downloaded, that would be awesome to see if that is still around >.<
LMS16
11-10-2009, 02:22 PM
m8, you could intergrate this into a panel, the only prob you would have is security...
You could make the forms ect open http://site.com/staff/login.php?username=text1.text&password=text2.text
Could be possible, custom panel would be needed though...
Lew.
If you want a downloadable radio player, I can do this :p :) Just PM me.
LMS16
11-10-2009, 04:24 PM
^^^
I think anyone can embedd a radio player in an .exe, he wants to make a dj panel that will work with the program...
Lew.
Flick0rz
11-10-2009, 06:53 PM
I have just got visual c#
Iv made a form with username and password fields with an exit button (closes the window fully) and a sign in button which currently has
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text == "username")
{
if (textBox2.Text == "password")
{
MessageBox.Show("Successfully Logged In");
Form2 form2 = new Form2();
form2.Show();
}
else if (textBox2.Text.Length > 0)
{
MessageBox.Show("Wrong Password");
}
else
{
MessageBox.Show("No Password Entered");
}
}
else if (textBox1.Text.Length > 0)
{
MessageBox.Show("Wrong Username");
}
else
{
MessageBox.Show("No Username Entered");
}
}
Havnt a clue if its wrong or right but form1 is the login form and form2 is the one i want to put content in ONCE logged in. I need help though, once login is successful i want it to close or hide form1 and open form2
Can anyone help :P?
LMS16
11-10-2009, 06:59 PM
m8, set it up to use mysql dqatabase to fetch the user data.
Lew.
Flick0rz
11-10-2009, 07:11 PM
I want to be able to use my current dj panel database so that the username and pass field relate to the user details of my dj panel.. but i dont know how to do it :(
Even better would be if i was able to make the staff request page for when they login using details that i give them, then be able to have a request form that i can upload to my web host, its all wayyyy beyond me though dont know how to do it
LMS16
11-10-2009, 07:21 PM
as ive said, coding a custom dj panel will allow u to do what u want...
intergrating into other panels will be time consuming ect....
Lew.
Flick0rz
11-10-2009, 07:29 PM
Do you have any idea how i can connect to a database that iv created on my host in visual c# >.<
Swinkid
11-10-2009, 09:36 PM
I'm currently developing an adobe air application abit like habbar. So i'd look out for posts in the near future. I maybe will release the sorce, im not sure what im doing with it yet.
Flick0rz
15-10-2009, 10:47 AM
Awesome, thanks for letting me know :D What do you use to make adobe air apps? Is it Aptana? just done a search in google..
Want to hide these adverts? Register an account for free!
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.