-
Radio Player
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.
-
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.
-
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 >.<
-
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?user...ord=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.
-
^^^
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.
-
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
Code:
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?
-
m8, set it up to use mysql dqatabase to fetch the user data.
Lew.