Sorry, I never give up my FireFox
Anybody who has screens?![]()

Screenies pls![]()
shawn
Thanks! This is a WIP, so next versions will have tabs and you can choose the hotel - I'll be trying later!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?
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
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.
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.
I recommend submitting it to www.habboring.com to add to their downloads page, it'd probably make it a lot more well known.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!)
Thanks very much Jordy, +repI recommend submitting it to www.habboring.com to add to their downloads page, it'd probably make it a lot more well known.![]()
If you do not try, you will never know.
People who make mistakes are not stupid; they are the people that learn.
i can clone normally anyway?
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
I can't, it either logs me out or says I'm already logged in.What browser are you using?
Thanks a lot!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 SubWhat 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.
Want to hide these adverts? Register an account for free!