To register for an Internet.com membership to receive newsletters and white papers, use the Register button ABOVE.
To participate in the message forums BELOW, click here
VBForums  

VB Wire News
Part 10 of the Visual Basic .NET 2010 Express Tutorial Complete!
How to Use the Visual Studio Code Analysis Tool FxCop
Article :: Interview with Andrei Alexandrescu (Part 3 of 3)
Introducing Visual Studio LightSwitch
Visual Studio LightSwitch Beta 1 is Available



Go Back   VBForums > Visual Basic > Visual Basic 6 and Earlier

Reply Post New Thread
 
Thread Tools Display Modes
Old May 1st, 2007, 05:13 AM   #1
Webskater
Hyperactive Member
 
Join Date: Nov 06
Posts: 420
Webskater is an unknown quantity at this point (<10)
Resolved [RESOLVED] Field Picker

I'm looking for a bit of advice before I try to do something.

I need to replicate the sort of form you get in MSAccess where you are selecting the fields you want in a query.

There are two boxes - one on the left and one on the right and, between them, 4 buttons that allow you to:
select one item from the box on the left and move it to the box on the right
select all items from the box on the left and move to the right
select one item from the right and move to the left
select all items from the right and move to the left

Which controls should I use?
Two rich text boxes?
Is there a built-in control in VB for this?
I want users to be able to shift-click and control-click in either box to select items that are not necessarily next to each other etc.

Appreciate any input on the best way to implement this.

Thanks in advance.

Last edited by Webskater; May 1st, 2007 at 08:31 AM. Reason: Missed something out
Webskater is offline   Reply With Quote
Old May 1st, 2007, 06:08 AM   #2
Hack
Super Moderator
 
Hack's Avatar
 
Join Date: Aug 01
Location: Sterling Heights, Michigan
Posts: 54,243
Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)
Re: Field Picker

Attached is an example.
Attached Files
File Type: frm MoveListBoxItems.frm (2.9 KB, 9 views)
__________________
Please use [Code]your code goes in here[/Code] tags when posting code.
When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
Before posting your question, did you look here?
Got a question on Linux? Visit our Linux sister site.
I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum.

Creating A Wizard In VB.NET
Modifications Required For VB6 Apps To Work On Vista
Paging A Recordset
What is wrong with using On Error Resume Next
Good Article: Language Enhancements In Visual Basic 2010
IT professionals freelancer site. Register today to find coders, or offer your services for available freelance projects!
Upgrading VB6 Code To VB.NET
Microsoft MVP 2005/2006/2007/2008/2009/2010
Hack is offline   Reply With Quote
Old May 1st, 2007, 06:08 AM   #3
amrita
Fanatic Member
 
amrita's Avatar
 
Join Date: Jan 07
Location: Orissa,India
Posts: 622
amrita will become famous soon enough (65+)
Smile Re: Field Picker

1.Use two list boxes and 4 buttons
2.Set the multiselect property of both
3.Try this code for moving selected items from list1 to list2
Code:
Private Sub Command1_Click()
    For i = 0 To List1.ListCount - 1
        If List1.List(i) = "" Then Exit For
        If List1.Selected(i) = True Then
            List2.AddItem List1.List(i)
            List1.RemoveItem i
        End If
    Next
End Sub
4.Proceed with other buttons as such
amrita is offline   Reply With Quote
Old May 1st, 2007, 06:15 AM   #4
Hack
Super Moderator
 
Hack's Avatar
 
Join Date: Aug 01
Location: Sterling Heights, Michigan
Posts: 54,243
Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)
Re: Field Picker

That is precisely what my example does with code for all 4 buttons.
__________________
Please use [Code]your code goes in here[/Code] tags when posting code.
When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
Before posting your question, did you look here?
Got a question on Linux? Visit our Linux sister site.
I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum.

Creating A Wizard In VB.NET
Modifications Required For VB6 Apps To Work On Vista
Paging A Recordset
What is wrong with using On Error Resume Next
Good Article: Language Enhancements In Visual Basic 2010
IT professionals freelancer site. Register today to find coders, or offer your services for available freelance projects!
Upgrading VB6 Code To VB.NET
Microsoft MVP 2005/2006/2007/2008/2009/2010
Hack is offline   Reply With Quote
Old May 1st, 2007, 06:16 AM   #5
Webskater
Hyperactive Member
 
Join Date: Nov 06
Posts: 420
Webskater is an unknown quantity at this point (<10)
Re: Field Picker

Quote:
Originally Posted by Hack
Attached is an example.
Wow! I was hoping to get pointed in the right direction not to get the code - thanks very much!
Webskater is offline   Reply With Quote
Old May 1st, 2007, 06:17 AM   #6
amrita
Fanatic Member
 
amrita's Avatar
 
Join Date: Jan 07
Location: Orissa,India
Posts: 622
amrita will become famous soon enough (65+)
Re: Field Picker

both of us have replied at the same time.!!
amrita is offline   Reply With Quote
Old May 1st, 2007, 06:17 AM   #7
Hack
Super Moderator
 
Hack's Avatar
 
Join Date: Aug 01
Location: Sterling Heights, Michigan
Posts: 54,243
Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)
Re: Field Picker

I've use this type of thing in projects beyond count, including the one I'm currently working on.

Do you have any other questions on this topic?
__________________
Please use [Code]your code goes in here[/Code] tags when posting code.
When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
Before posting your question, did you look here?
Got a question on Linux? Visit our Linux sister site.
I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum.

Creating A Wizard In VB.NET
Modifications Required For VB6 Apps To Work On Vista
Paging A Recordset
What is wrong with using On Error Resume Next
Good Article: Language Enhancements In Visual Basic 2010
IT professionals freelancer site. Register today to find coders, or offer your services for available freelance projects!
Upgrading VB6 Code To VB.NET
Microsoft MVP 2005/2006/2007/2008/2009/2010
Hack is offline   Reply With Quote
Old May 1st, 2007, 06:20 AM   #8
Webskater
Hyperactive Member
 
Join Date: Nov 06
Posts: 420
Webskater is an unknown quantity at this point (<10)
Re: Field Picker

Quote:
Originally Posted by Hack
I've use this type of thing in projects beyond count, including the one I'm currently working on.

Do you have any other questions on this topic?
Well ... since you ask ... what do you do if you want to retrieve an ID associated with each item. If Oranges are 7 and Apples are 4 etc and what you want to be able to access is those values?

Thanks again. (Blast - already marked thread as resolved!)
Webskater is offline   Reply With Quote
Old May 1st, 2007, 06:22 AM   #9
Hack
Super Moderator
 
Hack's Avatar
 
Join Date: Aug 01
Location: Sterling Heights, Michigan
Posts: 54,243
Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)
Re: [RESOLVED] Field Picker

By "ID" do you mean its ListIndex?
__________________
Please use [Code]your code goes in here[/Code] tags when posting code.
When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
Before posting your question, did you look here?
Got a question on Linux? Visit our Linux sister site.
I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum.

Creating A Wizard In VB.NET
Modifications Required For VB6 Apps To Work On Vista
Paging A Recordset
What is wrong with using On Error Resume Next
Good Article: Language Enhancements In Visual Basic 2010
IT professionals freelancer site. Register today to find coders, or offer your services for available freelance projects!
Upgrading VB6 Code To VB.NET
Microsoft MVP 2005/2006/2007/2008/2009/2010
Hack is offline   Reply With Quote
Old May 1st, 2007, 06:34 AM   #10
Webskater
Hyperactive Member
 
Join Date: Nov 06
Posts: 420
Webskater is an unknown quantity at this point (<10)
Re: [RESOLVED] Field Picker

No, if I pull the data from a database - I mean the primary key associated with each item.

cheers
Webskater is offline   Reply With Quote
Old May 1st, 2007, 06:40 AM   #11
Hack
Super Moderator
 
Hack's Avatar
 
Join Date: Aug 01
Location: Sterling Heights, Michigan
Posts: 54,243
Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)
Re: [RESOLVED] Field Picker

You are loading lstFrom from a database table, right?

How many primary keys are there on this table?
__________________
Please use [Code]your code goes in here[/Code] tags when posting code.
When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
Before posting your question, did you look here?
Got a question on Linux? Visit our Linux sister site.
I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum.

Creating A Wizard In VB.NET
Modifications Required For VB6 Apps To Work On Vista
Paging A Recordset
What is wrong with using On Error Resume Next
Good Article: Language Enhancements In Visual Basic 2010
IT professionals freelancer site. Register today to find coders, or offer your services for available freelance projects!
Upgrading VB6 Code To VB.NET
Microsoft MVP 2005/2006/2007/2008/2009/2010
Hack is offline   Reply With Quote
Old May 1st, 2007, 06:42 AM   #12
Hack
Super Moderator
 
Hack's Avatar
 
Join Date: Aug 01
Location: Sterling Heights, Michigan
Posts: 54,243
Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)
Re: [RESOLVED] Field Picker

Also, when you have selected what you want from lstFrom and move those items over to lstTo, what happens next?
__________________
Please use [Code]your code goes in here[/Code] tags when posting code.
When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
Before posting your question, did you look here?
Got a question on Linux? Visit our Linux sister site.
I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum.

Creating A Wizard In VB.NET
Modifications Required For VB6 Apps To Work On Vista
Paging A Recordset
What is wrong with using On Error Resume Next
Good Article: Language Enhancements In Visual Basic 2010
IT professionals freelancer site. Register today to find coders, or offer your services for available freelance projects!
Upgrading VB6 Code To VB.NET
Microsoft MVP 2005/2006/2007/2008/2009/2010
Hack is offline   Reply With Quote
Old May 1st, 2007, 06:49 AM   #13
Webskater
Hyperactive Member
 
Join Date: Nov 06
Posts: 420
Webskater is an unknown quantity at this point (<10)
Re: [RESOLVED] Field Picker

The list on the left contains a list of products that users can click on to compare them.

So, when the list on the right is populated - they will click a 'Compare' button and I will pass the list of ProductIDs (hidden) in the list to retrieve the details from the database.

Thanks again
Webskater is offline   Reply With Quote
Old May 1st, 2007, 06:56 AM   #14
Hack
Super Moderator
 
Hack's Avatar
 
Join Date: Aug 01
Location: Sterling Heights, Michigan
Posts: 54,243
Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)
Re: [RESOLVED] Field Picker

In what will these details be displayed?
__________________
Please use [Code]your code goes in here[/Code] tags when posting code.
When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
Before posting your question, did you look here?
Got a question on Linux? Visit our Linux sister site.
I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum.

Creating A Wizard In VB.NET
Modifications Required For VB6 Apps To Work On Vista
Paging A Recordset
What is wrong with using On Error Resume Next
Good Article: Language Enhancements In Visual Basic 2010
IT professionals freelancer site. Register today to find coders, or offer your services for available freelance projects!
Upgrading VB6 Code To VB.NET
Microsoft MVP 2005/2006/2007/2008/2009/2010
Hack is offline   Reply With Quote
Old May 1st, 2007, 07:33 AM   #15
Webskater
Hyperactive Member
 
Join Date: Nov 06
Posts: 420
Webskater is an unknown quantity at this point (<10)
Re: [RESOLVED] Field Picker

Let's say the user decides to compare oranges, apples, pears and peaches. I'll be passing say 4,7,9,13 (the ProductIDs) as the parameters to a SQL statement to return various fields which I will then put into an excel spreadsheet for the user to import into their own reporting tool.

Cheers
Webskater is offline   Reply With Quote
Old May 1st, 2007, 07:40 AM   #16
Hack
Super Moderator
 
Hack's Avatar
 
Join Date: Aug 01
Location: Sterling Heights, Michigan
Posts: 54,243
Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)
Re: [RESOLVED] Field Picker

Ok, so if I'm reading you right, you need to build an IN clause which would read
Code:
IN ('oranges', 'apples', 'pears', 'peaches')
With the SELECT whatever FROM whatever WHERE product etc.

Is this right?
__________________
Please use [Code]your code goes in here[/Code] tags when posting code.
When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
Before posting your question, did you look here?
Got a question on Linux? Visit our Linux sister site.
I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum.

Creating A Wizard In VB.NET
Modifications Required For VB6 Apps To Work On Vista
Paging A Recordset
What is wrong with using On Error Resume Next
Good Article: Language Enhancements In Visual Basic 2010
IT professionals freelancer site. Register today to find coders, or offer your services for available freelance projects!
Upgrading VB6 Code To VB.NET
Microsoft MVP 2005/2006/2007/2008/2009/2010
Hack is offline   Reply With Quote
Old May 1st, 2007, 07:50 AM   #17
Webskater
Hyperactive Member
 
Join Date: Nov 06
Posts: 420
Webskater is an unknown quantity at this point (<10)
Re: [RESOLVED] Field Picker

Hi, sorry, I'm not explaining myself very well.

I need to be able to associate a productID with the products listed in each box.

So the one on the left might contain:

4 Oranges
7 Apples
6 Peaches
23 Pineapples
15 Plums
29 Grapefruit

Where 4,7,6,23,15,29 are the respective Product IDs but which are hidden from the user.

And, by the time the user has clicked on three products the right box might contain:

7 Apples
6 Peaches
15 Plums

I need to be able to retrieve the ProductIDs - 7,6 and 15) so I can pass them to a Select statement whose WHERE clause will look like ...

WHERE ProductID = 7 OR ProductID = 6 OR ProductID = 15

Cheers
Webskater is offline   Reply With Quote
Old May 1st, 2007, 07:53 AM   #18
Hack
Super Moderator
 
Hack's Avatar
 
Join Date: Aug 01
Location: Sterling Heights, Michigan
Posts: 54,243
Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)
Re: [RESOLVED] Field Picker

You are explaing yourself, but this
Code:
WHERE ProductID = 7 OR ProductID = 6 OR ProductID = 15
is not the way to do it.

The way to do it is:
Code:
WHERE productID IN (6, 7, 15)
__________________
Please use [Code]your code goes in here[/Code] tags when posting code.
When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
Before posting your question, did you look here?
Got a question on Linux? Visit our Linux sister site.
I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum.

Creating A Wizard In VB.NET
Modifications Required For VB6 Apps To Work On Vista
Paging A Recordset
What is wrong with using On Error Resume Next
Good Article: Language Enhancements In Visual Basic 2010
IT professionals freelancer site. Register today to find coders, or offer your services for available freelance projects!
Upgrading VB6 Code To VB.NET
Microsoft MVP 2005/2006/2007/2008/2009/2010
Hack is offline   Reply With Quote
Old May 1st, 2007, 08:05 AM   #19
Webskater
Hyperactive Member
 
Join Date: Nov 06
Posts: 420
Webskater is an unknown quantity at this point (<10)
Re: [RESOLVED] Field Picker

Okay - understand you should use 'IN' instead of multiple 'ORs' - but how do I associate the ProductIDs with the Products in each box?

Cheers
Webskater is offline   Reply With Quote
Old May 1st, 2007, 08:18 AM   #20
Hack
Super Moderator
 
Hack's Avatar
 
Join Date: Aug 01
Location: Sterling Heights, Michigan
Posts: 54,243
Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)
Re: [RESOLVED] Field Picker

Tell me your database table design.

How are they laid out with respect to productIDs, products and product details?

Are you using just one table for all of this or are there multiple tables involved?

(Incidentially, until we get this worked out, edit the first post and backspace RESOLVED out of the thread title, then scroll down to the icon section and click No Icon - you can click the Mark Thread Resolved again later on.)
__________________
Please use [Code]your code goes in here[/Code] tags when posting code.
When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
Before posting your question, did you look here?
Got a question on Linux? Visit our Linux sister site.
I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum.

Creating A Wizard In VB.NET
Modifications Required For VB6 Apps To Work On Vista
Paging A Recordset
What is wrong with using On Error Resume Next
Good Article: Language Enhancements In Visual Basic 2010
IT professionals freelancer site. Register today to find coders, or offer your services for available freelance projects!
Upgrading VB6 Code To VB.NET
Microsoft MVP 2005/2006/2007/2008/2009/2010
Hack is offline   Reply With Quote
Old May 1st, 2007, 08:44 AM   #21
Webskater
Hyperactive Member
 
Join Date: Nov 06
Posts: 420
Webskater is an unknown quantity at this point (<10)
Re: Field Picker

Been doing a bit of reading - I know what I need to do now but don't have the syntax to do it.

You wrote ...

Code:
With lstFrom
    .AddItem "Oranges"
    .AddItem "Apples"
    .AddItem "Pears"
    .AddItem "Peaches"
    .AddItem "Plums"
    .AddItem "Prunes"
    .AddItem "Bananas"
End With
I need to do this

.AddItem "Oranges"
.ItemData(?) = 7 (i.e. the ProductID for Oranges)
.AddItem "Apples"
.ItemData(?) = 4 (i.e. the ProductID for Apples)

I don't know what to put in as the index of ItemData - i.e. where I have put the '?'

If I write ...

1stFrom.ItemData(1stFrom.ListIndex) it throws a wobbly and says the ListIndex = -1

But as you have just added a row I would have thought the ListIndex would be set to the current row?

Cheers
Webskater is offline   Reply With Quote
Old May 1st, 2007, 08:51 AM   #22
Webskater
Hyperactive Member
 
Join Date: Nov 06
Posts: 420
Webskater is an unknown quantity at this point (<10)
Re: Field Picker

Have just figured out how to get the ProductIDs into the ItemDatas and out again.

Thanks again for all your help.
Webskater is offline   Reply With Quote
Old May 1st, 2007, 09:22 AM   #23
Hack
Super Moderator
 
Hack's Avatar
 
Join Date: Aug 01
Location: Sterling Heights, Michigan
Posts: 54,243
Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)Hack has a brilliant future (2000+)
Re: Field Picker

So, is this resolved again?
__________________
Please use [Code]your code goes in here[/Code] tags when posting code.
When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.
Before posting your question, did you look here?
Got a question on Linux? Visit our Linux sister site.
I dont answer coding questions via PM or EMail. Please post a thread in the appropriate forum.

Creating A Wizard In VB.NET
Modifications Required For VB6 Apps To Work On Vista
Paging A Recordset
What is wrong with using On Error Resume Next
Good Article: Language Enhancements In Visual Basic 2010
IT professionals freelancer site. Register today to find coders, or offer your services for available freelance projects!
Upgrading VB6 Code To VB.NET
Microsoft MVP 2005/2006/2007/2008/2009/2010
Hack is offline   Reply With Quote
Old May 1st, 2007, 09:31 AM   #24
Webskater
Hyperactive Member
 
Join Date: Nov 06
Posts: 420
Webskater is an unknown quantity at this point (<10)
Re: Field Picker

It is indeed.

Cheers
Webskater is offline   Reply With Quote
Reply

Go Back   VBForums > Visual Basic > Visual Basic 6 and Earlier


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 05:35 AM.





Acceptable Use Policy

Internet.com
The Network for Technology Professionals

Search:

About Internet.com

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | E-mail Offers

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.