Moving Boxes With Loops
Private Sub cmdleft_Click() Loop frmloop.Left = frmloop - 1 Do Until frmloop.Left = 2 End Sub
Private Sub cmdright_Click() frmloop.Left = frmloop + 1 End Sub
Private Sub cmdup_Click() frmloop.Top = frmloop - 1 End Sub
Private Sub Cmddown_Click() frmloop.Top = frmloop - 1 End Sub
Private Sub Command6_Click() Unload Me End Sub
It keeps saying I have a loop without a do in the first cmd. THE DO is there. Why doesn't it like me.
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Loops With Text Boxes
I realize it's not the best design, but I'm already too far to scrap it and start over...
But what I have is a bunch of text boxes, and a bunch of labels.
You type in the text boxes, then click a button and whats in the boxes goes into the labels.
The thing is; I've got a LOT of text boxes and labels, and the only real option is to use a loop, but if you can't say something such as Text(counter).text, what can you do?
Basic For/Next Loops && Combo Boxes HELP!!
I'm having a fatal dumb blonde moment. I'm working on a rather large VB.NET project for school - 9 pages long.....and I'm stuck on page 2 (For/Next loops & combo/list boxes). I've attached the 2nd page along w/ as far as I can figure out on my project. Can someone please help me....I'm begging. Please just give me a jumpstart and get me going in the right direction.
Thank you so much!
Heather
Moving Dialog Boxes
Hi,
Is there any method to set the locations of the Dialog boxex ?
We can give the location of the "Windows", "Forms" by using Move or MoveWindow(API) methods. Like that can we locate the "Dialog" boxs...?
I think this can do bcos Microsoft applications has this kind of Dialog boxes and they are showing in correct locations of the screen
How can i do this...? Pls help me find out
Moving Picture Boxes
I am making a soccer shoot-out game and i want to move the soccerball (the Picture Box) to where the player selects eg. top right, top left, top centre, bottom right, bottom left, bottom centre. If someone could please help me with this code it would be much appreciated
Moving Text Boxes
Hiii,
I need to move a text box to the mouse point. How can I move. How can I get the mouse location.
Thanks
Sam
Moving Picture Boxes
Does anybody know how to move a picture boxe across the screen within a visual basic form.
Moving Multiple Picture Boxes - Lag?
On my form I have a control array of 239 picture boxes NOT being moved. Then I create 5 picture boxes of a new control array and move them with a timer with the interval set to 10. It moves fine, but when I load another 5 picture boxes totaling 10 the game starts to lag by the images starting to move slower then set to. The more I load and more the slower it keeps getting.
I am increasing the .top of all of the picture boxes by 25 every time the timer ticks with a 10 interval.
How can I prevent this 'lag'?
Problem Moving Between Text Boxes
Hi all,
I have a Form with two text boxes. All the controls have the VB assigned default names. Basically I want the user to enter the data before he leaves the text box to the next one, by pressing tab or using the mouse. So I tried using the following code ..
Private Sub Text1_LostFocus()
If (Text1.Text = "") Then
MsgBox ("TextBox 1 is empty please reenter ")
End If
Text1.SetFocus
End Sub
Private Sub Text2_LostFocus()
If (Text2.Text = "") Then
MsgBox ("TextBox 2 is empty please reenter ")
End If
Text2.SetFocus
End Sub
The problem is that if I move from Textbox1 to Textbox2 by pressing Tab, I get the Msgbox saying "Text Box1 is Emtpy" , but when I click Ok, the control returns back to Text1, but in the process it triggers the lost focus event of Text2 so I get the message "Text box 2 empty" and this messages cycle on for ever, and I end up killing my application. Can anyone suggest a way to avoid this problem ?
Thank You
Senthil
Moving Item Between List Boxes
I have a command button with the Caption ">". When clicked I want the selection the user has made in ListBox1 to be moved to ListBox2.
Anyone ever do something like this before?
thx..
Problem Moving Between Text Boxes
Hi all,
I have a Form with two text boxes. All the controls have the VB assigned default names. Basically I want the user to enter the data before he leaves the text box to the next one, by pressing tab or using the mouse. So I tried using the following code ..
Code:
Private Sub Text1_LostFocus()
If (Text1.Text = "") Then
MsgBox ("TextBox 1 is empty please reenter ")
End If
Text1.SetFocus
End Sub
Private Sub Text2_LostFocus()
If (Text2.Text = "") Then
MsgBox ("TextBox 2 is empty please reenter ")
End If
Text2.SetFocus
End Sub
The problem is that if I move from Textbox1 to Textbox2 by pressing Tab, I get the Msgbox saying "Text Box1 is Emtpy" , but when I click Ok, the control returns back to Text1, but in the process it triggers the lost focus event of Text2 so I get the message "Text box 2 empty" and this messages cycle on for ever, and I end up killing my application. Can anyone suggest a way to avoid this problem ?
Thank You
Senthil
Edited by - IDontKnow on 8/10/2004 9:31:36 PM
Moving Picture Boxes W/ Keyboard
is there a way to be able to move picture boxes using the keyboad? i.e picturebox1 moves up using the caps lock key, and down by using the shift key. picturbox2 moves up using the plus sign(the one all the way to the right of the keyboard no the one above the equal sign) and moves down by hitting the enter key(under the plus sign).thnx in advance for any help.
Moving Data Between List Boxes
Hi,
I need a little help if anyone has a moment. I have 2 list boxes one called lstSource and the other is lstDestination. I have it set up and working so that I can multi select rows in my source and move them into my value list in my destination list box. I call the function in the click even of a right arrow button. This works great.
Now I want the user to be able to remove fields from the lstDestination in case they make a mistake or change their mind. I want to do this using a left arrow button but I can't quite get the code working properly. I have gotten it to do everything butx but....however, I can't get it to just delete the selected row(s). Here is my code that is working to move my rows from my lstSource to my lstDestination. I assume it must be some variation of this....
<vb code>
Private Sub cmdCopyItem_Click()
CopySelected Me
End Sub
Function CopySelected(frm As Form) As Integer
Dim ctlSource As Control
Dim ctlDest As Control
Dim strItems As String
Dim intCurrentRow As Integer
Set ctlSource = frm!lstSource
Set ctlDest = frm!lstDestination
For intCurrentRow = 0 To ctlSource.ListCount - 1
If ctlSource.Selected(intCurrentRow) Then
strItems = strItems & ctlSource.Column(0, _
intCurrentRow) & ";"
End If
Next intCurrentRow
' Reset destination control's RowSource property.
ctlDest.RowSource = ""
ctlDest.RowSource = strItems
End Function
</vb code>
Moving Arround A Control Array Of Txt Boxes
hi could any body tell me how i can use the arrow keys to move between txtboxes in a control array i have 41 txtboxes in the form of 7 columns by 6 rows.
the code i came up with as an idea was:
Code:
Dim iLoc As Integer
txtPuz(Index) = iLoc
If KeyCode = vbKeyUp Then
If iLoc > 6 Then
iLoc = iLoc - 7
txtPuz(iLoc).SetFocus
End If
End If
If KeyCode = vbKeyDown Then
If iLoc < 35 Then
iLoc = iLoc + 7
txtPuz(iLoc).SetFocus
End If
End If
It didnt work properly when set to the forms keydown event. so what code would be best and where would i put the code?
Thanks
Moving Already Created And Configured Controls Into Frames/picture Boxes
I'm sure there is a simple way of doing this or a quick fix, but I'm currently struggling. I've made and coded for some controls (pictureboxes that move accross the screen).
However, I now want them to only be visible inside a picture box I have just created. But when run the image just moves behind it. I'm using sprites and the BitBLT method to draw and move my object.
Any suggestions appreciated.
Thanks
Loops, Loops, Im Goin Crazy
I need to rewrite this as a for loop
Read N // entered in a textbox
count = 0
total = 0
While count <= N do
total = total + count
count = count + 2
End While
Print total.
Can someone explain to me the difference between this kind of loop and a "for loop" My understanding of the differences is a bit fuzzy.
Pitbull.
Searching Text For Strings And Moving It To Text Boxes
Hey all,
Got a quick question about the best way to search text.
I currently search a textbox (txtdata.text) for a set of about 30 words (Ex:server1) as shown below:
Server1 88,324
Server2 65,343
Server3 54,789
Server4 99,324
~
Server30 12,234
The 1st value "server" is placed in a text box called V#.text and the associated amount is copied to a 2nd text box called R#.text.
In order to separate the 2 values I use this code:
Search21 = v21.Text
Where = InStr(txtData.Text, Search21)
If Where Then
'txtData.SetFocus
txtData.SelStart = Where - 1 + 8
txtData.SelLength = Len(Search21)
r21.Text = txtData.SelText
End If
I need this to be repeated 30 times over to get all 30 values in their boxes.
This is a huge pain & probably the worst way to do it but it works.
Anyone have a better idea on how to do this?
Thanks
Structure Of Loops Within Loops
Hi,
I am quite new to VBA, so would really appreciate some help.
I have an range of data, arranged in a single column. I want to examine the value of each cell in the range, and determine whether it falls within a Bin array, the limits of which are defined by the user (for example, Bin(1): number of cells with value between 0-5; Bin(2): number of cells with value between 5-10, Bin(3): 10-15 etc). Once the code determines which Bin the cell value belongs to, it increases the value of the respective bin array by one. The code then moves onto the next cell in the range, and repeats the process, until all the cell values in the range have been examined.
So far I have created a dialogue box to get the user defined variables, and have figured out how to define my range. I also have generated code for determining which Bin the cell value should increase - but I really cant get a grip of the looping structure - i.e. how to loop through every cell in the range, and how to loop in order to check the value of each cell in the range against each bin limit... Hopefully you are not too confused now! my code is below - and any thoughts would be most appreciated!
I really struggle with knowing when to put an Exit for / Exit if statement in??!
Thanks
Eoin
Sub Examine_Array_All()
BinDuration = UserForm1.TextBox1.Value
BinNumber = (UserForm1.TextBox2.Value * 60) BinDuration
Dim CellCount As Integer
Dim LoopVal As Integer
Dim NextCell As Boolean
Dim BinCount(BinNumber) As Integer 'It wont accept this as an array??
Firstcell = UserForm1.RefEdit1.Value
Range(Firstcell).Select
Lastcell = Range(Firstcell).End(xlDown).Address
For Each c In Range(Firstcell, Lastcell)
Do
LoopVal = LoopVal + 1
If ActiveCell.Value > ((BinDuration * LoopVal) - BinDuration) Or _
ActiveCell.Value <= (BinDuration * LoopVal) Then _
BinCount(LoopVal - 1) = BinCount(LoopVal - 1) + 1 _
And CellCount = CellCount + 1 And NextCell = True
Loop Until LoopVal = BinNumber Or NextCell = True
Exit For
CellCount = CellCount + 1
ActiveCell.Offset(CellCount, 0).Select
NextCell = False
Next
End Sub
Code For Moving To The First Blank Cell In A Worksheet; Moving Left,right,up Or Down
I have created an application form as a userform in Excel. I need to send the data entered into my text boxes when the program runs to separate excel cells in a worksheet.
My problem is I can use code that will send the textbox entry to a specific cell eg. If my textbox is named Surname I can say
range("a5").value = surname but if I do that when I run the programme to enter the next record for someone else the first record will be overwritten.
I NEED A CODE LINE THAT WILL TAKE ME TO THE FIRST EMPTY CELL AND ALLOW ME TO MOVE DOWN OR TO THE LEFT OR TO THE RIGHT
Moving Balls To Moving Images??
Please take a look at this as it is related to my question
Thread
is it possible for the create images to be an image type that is already drawn?
Can You Have Multiple Colours In Text Boxes, Or Richtext Boxes(etc)?
Is there anyway you can have each word in a text box a different colour? Like:
[RED] My Name [/RED]
[BLUE] What's up! [/BLUE]
or something similar?
I don't care if you can't do it in a text box but is there anyway to do it in any type of "text box"?
If sub classing is involved could you please point me to a tutorial?
Thanks a lot.
Web Control, List Boxes, Text Boxes, Please Help This Is Winding Me Up!
Hi guys i need some help with the webcontrol function in VB6
Part of my program needs to put listbox data from the program into a text box on the web and then click a submit button...
The list box i have has a list of multiple directories in (for the location of my files), from there i just want the program to put the top directory of the list box into a text box on the web and click a submit button on the web (its for uploading a queue of files), then after that has finished uploading, do the next directory in the list box... etc
It sounds pretty simple but i have no idea how to do it...
Thanks for any help you can give me, i will write a really good review about you and good rating etc.
Any knowledge of this would be greatly appreciated
thanks a bunch
toodle pipples
Alex
Altering The Form Of Message Boxes And Query Boxes.
I have used the standard message box (msgbox) and query box in one of my programs which will be distributed. However, the boxes look awful! How do I change their properties, such as font, text size, picture (to the left of the box), button picture, button size etc...
Hope someone can help me out!
Many thanks,
Steve.
Combo And List Boxes To Text Boxes?
Connecting sub-menus to rich text boxes is fine is most cases but the user does not always want to use menus to load and display text. Applying the same technique as sub menus to text boxes with combo or list boxes just wont work could someone please help me out with this one.
Both combo and list boxes will for example:
Contain an alphabetic list.
When the user clicks on a file it should locate the text file from the drive.
It should then open it into a rich text box on the same form.
Could this be possible?
Please any help will greatly be appreciated.
Image Boxes And Picture Boxes
hi, when i use this coding for and 'ImageBox', it works, but when i use it for a 'PictureBox', it doesnt. Can someone please tell me why.
Private Sub Timer4_Timer()
Picture1.ZOrder (0)
Picture1.Move Picture1.Left, Picture1.Top - 40
Picture1.Move Picture1.Left + 20
End Sub
when 'Picture1' is replaced with an Image1, it works, but if i leave it at picture box, it doesnt. Someone please help
here is the coding that executes Timer4...
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If Asc(32) Then
Timer4.Enabled = True
End If
End Sub
is that 'Asc(32)' (which is the space bar) cannot move picture boxes but it can move imageboxes?
someone plz help
thank you
Check Boxes And Text Boxes
Using Excel 2000...
I have two questions; one, is it possible to "lock" a text box so that a user cannot enter/change data. I have a text box that is populated within the VB code, but I don't want the user to be able to click in the text box (BTW the textbox is in a userform) and change the entry.
Second question. Is it possible to "lock" a check box once a user selects it. So the user can select a checkbox, but once it is selected, he/she cannot uncheck the box.
Any advice or quidance would be appreciated. TIA
Help With Combo Boxes And Text Boxes
Hello, I am making a little test program and I want it so I can click on a item in my combo box and that word appears in my text box... any ideas? help please.
Combo Boxes Or List Boxes?????
A bit of a beginners question. Hope it makes sense
I dont know which is the best to use. Here is the problem:
I want some kind of drop down list that allows the user to pick one of 12 items. Then that item is linked to a set of numbers. For e.g. if user chooses the item "A" then this means the numbers 0.025689 and 0.85696 is linked to each. Now do i use a combo or a list item or something else.
In addition what kind of code do you use to enter new items in a combo box or list item box. I tried to use:
ComboBox1.AddItem "A"
ComboBox1.AddItem "B"
within the combo box private sub - but when i play it back the combo box is empty. Any ideas???
Thanks
List Boxes And Text Boxes
Ok i have a list box that has a list of movies to choose from then you choose how many tickets you want i want to know how to display them in a text box and how to clear the dat file that i saved it in
Text Boxes And Combo Boxes
I am trying to create a system that will allow you to pick a name from a combo box and then other information about the person will appear in labels when a command button is clicked. The problem is, is that i do not know how to get the databar to link the correct information with the labels and with the right name.
Any Help??
List Boxes And Text Boxes
I have a list box with a bunch of items in it. I'm trying to make it so that when you click on an item in a list, the text appears in a text box. I don't know too much.. but what I have so far is
Private Sub List1_Click()
Dim i As Integer
Text1.Text = List1.List(i)
End Sub
What this does is when I click an item, it makes the text of the textbox the first item in the list. How do I change it so that I can pick an item from the list and have the text of that item displayed in the text box? Thanks in advance!
Check Boxes And Text Boxes
Is there any way to use a checkbox in a rich text box. Or another way to do what I need which is....
when someone double clicks on a url (not hyperlink) in my textbox, through an SQL statement if finds the matching url in my database and displays the article that matches that url? This was easy using a listbox, but I don't know how to specify the text in a text box that was double clicked. I hope this makes sense, if not I will try to clarify.
Thanks,
Cady
I was wondering about the check box cuz then I could match the url beside the checkbox, maybe?
List Boxes = Text Boxes
Hi I'm new here (and to VB). I'm using VB in Excel and trying to get a list box to write to a series of three text boxes. I have a mobile phone user form and the list box has a selection of phones in it. I want the user to be able to choose three phones from the same list box and have the results display - one in each box. Can I do this and, if so, how?
DataList Boxes Vs. List Boxes
OK - I currently have a DataList box which displays all of my records using the "List Field" Property. I need to enable a multiselect feature though. So I decided to use the REGULAR List Box, since it has a multiselect property. Yet, I cant seem to get the list box to have all of the records in there (or any of them for that matter). Is there a similar property in regular list boxes like the "List Field" Property, or is there a similar property in DataList Boxes which can enable multiselect?
Someone help!
Help With Loops!
I am doing some coursework at college and i have to write a loop that is able to shift through a random access file and select certain pieces of information, but I haven't a clue where to start. Is there anyone who could help me?
Thanks
Loops
I have problem with m program. I'm using a loop because I'm told they are better than timers, but mine is freezing both my comp and the school's comps and my teacher tells me the loop is the problem.
I use this loop in several programs but it goes something like this
Code:
Sub Main ()
do while play = true
if up = true then movy = movy +1
if right = true then movy = movx +1
if left = true then movy = movx -1
if down = true then movy = movy -1
DoEvents
loop
End sub
Doing Loops
Hi,
I’m learning Visual Basic, and as an exercise I want to make a small program that counts the number of specific words in a document. Unfortunately I get into an endless loop.
You see the macro underneath. I thought the macro would end by using the statement .Wrap=wdFindAsk, but no.
Can anybody help me?
Dim X As Integer
X = 1
Do
Selection.Find.ClearFormatting
With Selection.Find
.Text = "anyword"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindAsk
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
X = X + 1
Loop
Selection.EndKey Unit:=wdStory
Selection.TypeParagraph
Selection.TypeText Text:=(X) ‘Number of occurrences typed at the end of the document.
End Sub
Regards
Obini
Loops HELP!!
I am trying this macro, where you can see i cut and paste to the adjacent cell,
how can i make it go in a loop
like after doing this below, it goes to A6,
and does the same this time copying from A6 pasting it to B2
A7 to B3 and so on..
any help!!
Sub Macro2()
'
' Macro2 Macro
'
' Keyboard Shortcut: Ctrl+g
'
Dim FirstCell
Dim SecondCell
Dim ThirdCell
Dim FourthCell
Dim FifthCell
Dim SixthCell
FirstCell = Range("A2")
SecondCell = Range("B1")
ThirdCell = Range("A3")
FourthCell = Range("C1")
FifthCell = Range("A4")
SixthCell = Range("D1")
Range("A2").Select
Selection.Cut
Range("B1").Select
ActiveSheet.Paste
Range("A3").Select
Selection.Cut
Range("C1").Select
ActiveSheet.Paste
Range("A4").Select
Selection.Cut
Range("D1").Select
ActiveSheet.Paste
End Sub
Do Loops
Can anyone tell me how to do a do loop with multiple conditions please.
I'd like to stay in the loop until a variable is greater than 3 (in the loop is num=num+1 to advance it each loop) and also when the active cell picked by the rest of the code is a1.
I'm trying this but it isnt syntactically correct:
Loop Until (num > 3: And ActiveSheet.Rows = a1)
thanks
Need Help With Loops...
I need to be able to keep entering a number that signifies a group of people, which will be added to a running total upon clicking a command button. When total = 500, a message should be displayed to say that no more people can get in.
Help is so desperately needed.
Loops?
i am wondering how i would get 3 numbers to be read in seperatley by msgboxes and then outputed to one text box in orderfrom highest to lowest seperated by , , ,.I would like this to be done using a iteration loop.
Loops And CPU
Hi folks
I'm using VB6 and my eternal dilemma is how to optimize loops. I must of read 1000+ pages on different forums where it starts off as
"My loop uses 100% CPU and freezes my pc"
Then someone suggests adding DoEvents and that's basically the end of the thread.
Maybe i'm doing something wrong but if just add DoEvents, a lot of my loops still use 100% CPU but (obviously) the DoEvents makes the app more responsive to user input. Then i add a Sleep(1) and suddenly my loop uses less than 1% CPU which is a good thing. BUT (this is where the fun begins....)
First of all, i realise that DoEvents allows Windows to process messages in the queue and the Sleep API basically stops my whole app dead for the given time. I have to use Sleep(1), otherwise i'm pulling 100% CPU but that's just stopping my app all together for 1ms so it's kinda cheating by switching off rather than "controlling" it's processor time. I also seem to inherit form unload problems with loops containing DoEvents so i've tried combining API's such as GetQueueStatus() and GetInputState() to avoid using it more than necessary.
Whenever possible, i'll use a timer instead of a loop but sometimes loops are unavoidable. I do a lot of HTTP stuff, so i'm often loopin' an' hangin' an' waitin' for a response from whatever server i'm connected to. Using DoEvents allows the response to arrive, get buffered, etc and then i can parse it elsewhere. Going to Sleep() in the same loop seems so arse about face to me and it's something i've never really been "happy" with.
Soooo, what i'm asking is how can i allow my app (and all other running processes) to breathe comfortably while looping? Are there better methods than combining DoEvents and Sleep()?
Loops
I have a few loops in my program taht run for a l ongtime, but when they run the program loses its image, like the mouse cursor goes to the timeglass and the program looks like its freezing.. is there anyway to fix this? the info on the form doesnt update, and if i move it around, or put another program in front it loses its picture all together, and just shows what thhe other program was showing until it stops looping.. any idea how to fix this?
VB Loops
Hey guys, I have been told that in VB the goto statement is very bad programming and should not be used I was wondering is this also true of the do while loop?
I was also wondering where I could find examples of the do while loop?
Thanks.
3 Loops
Ivegot a scheduling program with 3 loops, and 3 If statements. However the program is seeming to miss the If statments and continuing o with the Coode.
Here is what i have;
Code:
For counter1 = 1 To 36
For counter2 = 1 To 4
For counter3 = 1 To 36
For counter4 = 1 To 4
'If Student(counter1).StudentName <> Student(counter3).StudentName Then
If Student(counter1).StudentClass <> Student(counter3).StudentClass Then
If Student(counter1).StudentHouse <> Student(counter3).StudentHouse Then
If Student(counter1).StudentName <> Student(counter3).Game(1).GamePlayedAgainst And Student(counter1).StudentName <> Student(counter3).Game(2).GamePlayedAgainst And Student(counter1).StudentName <> Student(counter3).Game(3).GamePlayedAgainst And Student(counter1).StudentName <> Student(counter3).Game(4).GamePlayedAgainst Then
Student(counter1).StudentName = Student(counter3).Game(counter4).GamePlayedAgainst
Student(counter1).Game(counter4).GamePlayedAgainst = Student(counter3).StudentName
Text1.Text = Text1.Text + Student(counter1).StudentName + " " + "Vs" + " " + Student(counter3).StudentName + vbCr + vbLf
End If
End If
End If
Next
Next
Next
Next
End Sub
Code:
Public Type Game
GameName As String
GamePlayedAgainst As String
GamePlayed As Boolean
GameWon As Boolean
End Type
Public Type Student
StudentName As String
StudentClass As String
StudentHouse As String
Game(1 To 4) As Game
End Type
Public Student(1 To 36) As Student
And of corse populating the arrays with names, houses and games.
Any suggestions? thanks
At the moment, I have this printing;
Vs Charles
Vs Colin
Vs Charles
Vs Colin
Vs Charles
Vs Colin
Vs Elias
Vs Edward
Charles Vs
Vs Elias
Colin Vs
Vs Edward
Charles Vs
Edward Vs
Vs Gilbert
Colin Vs
Elias Vs
Vs George
Charles Vs
Edward Vs
Vs Gilbert
Colin Vs
Elias Vs
Vs George
Charles Vs
Edward Vs
Vs Gilbert
Colin Vs
Elias Vs
Vs George
Charles Vs
Edward Vs
George Vs
Vs Idris
Colin Vs
Elias Vs
Gilbert Vs
Vs Ian
Charles Vs
Edward Vs
George Vs
Vs Idris
Colin Vs
Elias Vs
Gilbert Vs
Vs Ian
Charles Vs
Edward Vs
George Vs
Vs Idris
Colin Vs
Elias Vs
Gilbert Vs
Vs Ian
Charles Vs
Edward Vs
George Vs
Vs Idris
Colin Vs
Elias Vs
Gilbert Vs
Vs Ian
Charles Vs
Edward Vs
George Vs
Ian Vs
Vs Kenny
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Vs Keith
Charles Vs
Edward Vs
George Vs
Ian Vs
Vs Kenny
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Vs Keith
Charles Vs
Edward Vs
George Vs
Ian Vs
Vs Kenny
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Vs Keith
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Charles Vs
Edward Vs
George Vs
Ian Vs
Keith Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
Colin Vs
Elias Vs
Gilbert Vs
Idris Vs
Kenny Vs
|