Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Radio Player

  1. #1
    Join Date
    Oct 2009
    Posts
    23
    Tokens
    0

    Default 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?

  2. #2
    Join Date
    Apr 2008
    Location
    Derby
    Posts
    4,668
    Tokens
    262

    Latest Awards:

    Default

    Its not amazingly difficult to make, I could probably do one.
    C# if what you'll need.

  3. #3
    Join Date
    Oct 2009
    Posts
    23
    Tokens
    0

    Default

    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 ?)

    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

  4. #4
    Join Date
    Apr 2008
    Location
    Derby
    Posts
    4,668
    Tokens
    262

    Latest Awards:

    Default

    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.

  5. #5
    Join Date
    Oct 2009
    Posts
    23
    Tokens
    0

    Default

    Gah i dont understand how to do it anyway

    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 >.<

  6. #6
    Join Date
    Sep 2009
    Location
    Hull
    Posts
    827
    Tokens
    0

    Latest Awards:

    Default

    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.

  7. #7
    Join Date
    Apr 2008
    Location
    Derby
    Posts
    4,668
    Tokens
    262

    Latest Awards:

    Default

    If you want a downloadable radio player, I can do this :p Just PM me.

  8. #8
    Join Date
    Sep 2009
    Location
    Hull
    Posts
    827
    Tokens
    0

    Latest Awards:

    Default

    ^^^
    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.

  9. #9
    Join Date
    Oct 2009
    Posts
    23
    Tokens
    0

    Default

    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 ?

  10. #10
    Join Date
    Sep 2009
    Location
    Hull
    Posts
    827
    Tokens
    0

    Latest Awards:

    Default

    m8, set it up to use mysql dqatabase to fetch the user data.

    Lew.

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •