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 2 of 8 FirstFirst 123456 ... LastLast
Results 11 to 20 of 75

Thread: "Habbo Browser"

  1. #11
    Join Date
    Feb 2006
    Location
    Netherlands
    Posts
    2,969
    Tokens
    208

    Latest Awards:

    Default

    Sorry, I never give up my FireFox

    Anybody who has screens?
    Need any help? PM me!


  2. #12
    Join Date
    Dec 2006
    Location
    Nottingham
    Posts
    7,752
    Tokens
    756
    Habbo
    katie.pricejorda

    Latest Awards:

    Default

    Quote Originally Posted by Laurensh1 View Post
    Sorry, I never give up my FireFox

    Anybody who has screens?
    Yes, I'm exactly the same.

  3. #13
    Join Date
    Dec 2006
    Location
    Singapore
    Posts
    7,212
    Tokens
    0

    Latest Awards:

    Default

    Screenies pls
    shawn

  4. #14
    Join Date
    Jun 2007
    Posts
    66
    Tokens
    0

    Default

    Quote Originally Posted by Verrou View Post
    That's cool i'm downloading now.

    Link to .ico:
    http://www.habbo.com.au/favicon.ico

    And maybe code tabs? So you can just open a tab for a new clone.

    And is it for a specific hotel or can you change address?
    Thanks! This is a WIP, so next versions will have tabs and you can choose the hotel - I'll be trying later!

    Quote Originally Posted by Laurensh1 View Post
    Sorry, I never give up my FireFox

    Anybody who has screens?
    This is helpful if you have a slow computer, plus in FF you can't login on more than 1 Habbo - I still love FF

    Quote Originally Posted by Doomsboy View Post
    Screenies pls
    Screenies:

    Me about to login.

    Me logged in.


    I'll just update the program, with the new icon, then I will work on tabs etc. If it's hard to code it may take me a while!
    If you do not try, you will never know.

    People who make mistakes are not stupid; they are the people that learn.

  5. #15
    Join Date
    Jun 2007
    Posts
    66
    Tokens
    0

    Default

    Can't edit, but there's an update (v1.2.0.), not much updated but hey!

    Update v1.2.0: http://www.uploadz.co.uk/17habbobrowserv1.2.zip

    I'll try tabs today, and the hotel changer (so you type in .co.uk or .com or whatever, then it loads that hotel!)

    I'm making this into a project, adding more things as I go along (and I learn more coding!)
    If you do not try, you will never know.

    People who make mistakes are not stupid; they are the people that learn.

  6. #16
    Join Date
    Dec 2006
    Location
    Nottingham
    Posts
    7,752
    Tokens
    756
    Habbo
    katie.pricejorda

    Latest Awards:

    Default

    Quote Originally Posted by OWNAGE View Post
    Can't edit, but there's an update (v1.2.0.), not much updated but hey!

    Update v1.2.0: http://www.uploadz.co.uk/17habbobrowserv1.2.zip

    I'll try tabs today, and the hotel changer (so you type in .co.uk or .com or whatever, then it loads that hotel!)

    I'm making this into a project, adding more things as I go along (and I learn more coding!)
    I recommend submitting it to www.habboring.com to add to their downloads page, it'd probably make it a lot more well known.

  7. #17
    Join Date
    Jun 2007
    Posts
    66
    Tokens
    0

    Default

    Quote Originally Posted by Jordy View Post
    I recommend submitting it to www.habboring.com to add to their downloads page, it'd probably make it a lot more well known.
    Thanks very much Jordy, +rep
    If you do not try, you will never know.

    People who make mistakes are not stupid; they are the people that learn.

  8. #18
    Join Date
    Dec 2004
    Location
    Soz Sierk, not tonight.
    Posts
    6,665
    Tokens
    0

    Latest Awards:

    Default

    i can clone normally anyway?

  9. #19
    Join Date
    Apr 2005
    Location
    Portsmouth, UK
    Posts
    3,361
    Tokens
    0

    Latest Awards:

    Default

    tabs:

    Just change the CITY State bits etc.
    Code:
    ' Create a new address tab.
    Private Sub cmdAddTab_Click()
    Dim frame_index As Integer
    Dim cbo_item As Integer
    
        ' Create the new tab.
        tabSections.Tabs.Add , , "Address " & _
            Format$(tabSections.Tabs.Count + 1)
    
        ' Create the new frame.
        frame_index = tabSections.Tabs.Count - 1
        Load fraTab(frame_index)
        ' Make the new frame set on top of the TabStrip.
        fraTab(frame_index).ZOrder
        ' Position the frame over the TabStrip.
        PositionFrame fraTab(frame_index)
    
        ' Make the new fields for the frame.
        Load lblName(frame_index)
        With lblName(frame_index)
            Set .Container = fraTab(frame_index)
            .Move lblName(0).Left, lblName(0).Top
            .Visible = True
        End With
    
        Load lblAddress(frame_index)
        With lblAddress(frame_index)
            Set .Container = fraTab(frame_index)
            .Move lblAddress(0).Left, lblAddress(0).Top
            .Visible = True
        End With
    
        Load lblCity(frame_index)
        With lblCity(frame_index)
            Set .Container = fraTab(frame_index)
            .Move lblCity(0).Left, lblCity(0).Top
            .Visible = True
        End With
    
        Load lblState(frame_index)
        With lblState(frame_index)
            Set .Container = fraTab(frame_index)
            .Move lblState(0).Left, lblState(0).Top
            .Visible = True
        End With
    
        Load lblZip(frame_index)
        With lblZip(frame_index)
            Set .Container = fraTab(frame_index)
            .Move lblZip(0).Left, lblZip(0).Top
            .Visible = True
        End With
    
        Load txtName(frame_index)
        With txtName(frame_index)
            Set .Container = fraTab(frame_index)
            .Move txtName(0).Left, txtName(0).Top
            .Visible = True
        End With
    
        Load txtAddress(frame_index)
        With txtAddress(frame_index)
            Set .Container = fraTab(frame_index)
            .Move txtAddress(0).Left, txtAddress(0).Top
            .Visible = True
        End With
    
        Load txtCity(frame_index)
        With txtCity(frame_index)
            Set .Container = fraTab(frame_index)
            .Move txtCity(0).Left, txtCity(0).Top
            .Visible = True
        End With
    
        Load cboState(frame_index)
        With cboState(frame_index)
            Set .Container = fraTab(frame_index)
            .Move cboState(0).Left, cboState(0).Top
            For cbo_item = 0 To cboState(0).ListCount - 1
                .AddItem cboState(0).List(cbo_item)
            Next cbo_item
            .Visible = True
        End With
    
        Load txtZip(frame_index)
        With txtZip(frame_index)
            Set .Container = fraTab(frame_index)
            .Move txtZip(0).Left, txtZip(0).Top
            .Visible = True
        End With
    End Sub
    MFC Results
    Home Vs Blackburn: 1-2 (Downing)
    Away Vs Wigan: 0-1
    Away Vs Fulham: 2-1 (Mido and Cattermole)
    Home Vs Newcastle: 2-2 (Mido and Arca)

    Next match
    Home vs Northampton

    Her face just makes my day

  10. #20
    Join Date
    Jun 2007
    Posts
    66
    Tokens
    0

    Default

    Quote Originally Posted by Lozzoling View Post
    i can clone normally anyway?
    I can't, it either logs me out or says I'm already logged in. What browser are you using?

    Quote Originally Posted by Boro-fan2k4 View Post
    tabs:

    Just change the CITY State bits etc.
    Code:
    ' Create a new address tab.
    Private Sub cmdAddTab_Click()
    Dim frame_index As Integer
    Dim cbo_item As Integer
    
        ' Create the new tab.
        tabSections.Tabs.Add , , "Address " & _
            Format$(tabSections.Tabs.Count + 1)
    
        ' Create the new frame.
        frame_index = tabSections.Tabs.Count - 1
        Load fraTab(frame_index)
        ' Make the new frame set on top of the TabStrip.
        fraTab(frame_index).ZOrder
        ' Position the frame over the TabStrip.
        PositionFrame fraTab(frame_index)
    
        ' Make the new fields for the frame.
        Load lblName(frame_index)
        With lblName(frame_index)
            Set .Container = fraTab(frame_index)
            .Move lblName(0).Left, lblName(0).Top
            .Visible = True
        End With
    
        Load lblAddress(frame_index)
        With lblAddress(frame_index)
            Set .Container = fraTab(frame_index)
            .Move lblAddress(0).Left, lblAddress(0).Top
            .Visible = True
        End With
    
        Load lblCity(frame_index)
        With lblCity(frame_index)
            Set .Container = fraTab(frame_index)
            .Move lblCity(0).Left, lblCity(0).Top
            .Visible = True
        End With
    
        Load lblState(frame_index)
        With lblState(frame_index)
            Set .Container = fraTab(frame_index)
            .Move lblState(0).Left, lblState(0).Top
            .Visible = True
        End With
    
        Load lblZip(frame_index)
        With lblZip(frame_index)
            Set .Container = fraTab(frame_index)
            .Move lblZip(0).Left, lblZip(0).Top
            .Visible = True
        End With
    
        Load txtName(frame_index)
        With txtName(frame_index)
            Set .Container = fraTab(frame_index)
            .Move txtName(0).Left, txtName(0).Top
            .Visible = True
        End With
    
        Load txtAddress(frame_index)
        With txtAddress(frame_index)
            Set .Container = fraTab(frame_index)
            .Move txtAddress(0).Left, txtAddress(0).Top
            .Visible = True
        End With
    
        Load txtCity(frame_index)
        With txtCity(frame_index)
            Set .Container = fraTab(frame_index)
            .Move txtCity(0).Left, txtCity(0).Top
            .Visible = True
        End With
    
        Load cboState(frame_index)
        With cboState(frame_index)
            Set .Container = fraTab(frame_index)
            .Move cboState(0).Left, cboState(0).Top
            For cbo_item = 0 To cboState(0).ListCount - 1
                .AddItem cboState(0).List(cbo_item)
            Next cbo_item
            .Visible = True
        End With
    
        Load txtZip(frame_index)
        With txtZip(frame_index)
            Set .Container = fraTab(frame_index)
            .Move txtZip(0).Left, txtZip(0).Top
            .Visible = True
        End With
    End Sub
    Thanks a lot! What is all the txtzip etc?
    If you do not try, you will never know.

    People who make mistakes are not stupid; they are the people that learn.

Page 2 of 8 FirstFirst 123456 ... 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
  •