Re: [Audyssey] Score Sorting

2012-03-02 Thread Jim Kitchen
Hi Ken, Thanks, glad that you like that tag line. Have a good weekend. BFN Jim I like Visual Basic 6.0 because I can not C. j...@kitchensinc.net http://www.kitchensinc.net (440) 286-6920 Chardon Ohio USA --- Gamers mailing list __ Gamers@audyssey.org If you want to leave the list, send

Re: [Audyssey] Score Sorting

2012-03-01 Thread Jim Kitchen
Hi Ken, You know my first sort code that I found was from Extended Quick Basic. (PDS7) PDS7 had a swap command. It saved a couple of lines of code and there was no need for the temporary variables. Well actually that was the second code that I found as I am using the sort routine in the

Re: [Audyssey] Score Sorting

2012-03-01 Thread Ken
I like Visual Basic 6.0 because I can not C... I love that tag line by the way. My feelings exactly. - Original Message - From: Jim Kitchen j...@kitchensinc.net To: Ken Gamers@audyssey.org Sent: Thursday, March 01, 2012 5:43 AM Subject: Re: [Audyssey] Score Sorting Hi Ken, You

Re: [Audyssey] Score Sorting

2012-02-29 Thread Jim Kitchen
Hi Ken, I'm not positive how you have the variables set up, but if it is like score(x) and the corresponding player names are in player$(x) then the code could be. For sort1 = 1 To nop - 1 For sort2 = sort1 To 1 Step -1 If score(sort2 + 1) score(sort2) Then tpnm = score(sort2) temp$ =

Re: [Audyssey] Score Sorting

2012-02-29 Thread Ken
] Score Sorting Hi Ken, I'm not positive how you have the variables set up, but if it is like score(x) and the corresponding player names are in player$(x) then the code could be. For sort1 = 1 To nop - 1 For sort2 = sort1 To 1 Step -1 If score(sort2 + 1) score(sort2) Then tpnm = score(sort2

Re: [Audyssey] Score Sorting

2012-02-28 Thread Jim Kitchen
Hi Ken Below nop is the number of players slash scores to sort. sort1 and sort2 are just temperary variables as is tpnm. I believe though that this will sort lowest on top, so I believe that if in the third line you change the less than sign to a greater than sign, it will do what you need.

Re: [Audyssey] Score Sorting

2012-02-28 Thread Ken
Short and smple.. Sweet. thanks - Original Message - From: Jim Kitchen j...@kitchensinc.net To: Ken Gamers@audyssey.org Sent: Tuesday, February 28, 2012 5:22 AM Subject: Re: [Audyssey] Score Sorting Hi Ken Below nop is the number of players slash scores to sort. sort1 and sort2

Re: [Audyssey] Score Sorting

2012-02-28 Thread Jim Kitchen
] Score Sorting Hi Ken Below nop is the number of players slash scores to sort. sort1 and sort2 are just temperary variables as is tpnm. I believe though that this will sort lowest on top, so I believe that if in the third line you change the less than sign to a greater than sign, it will do

Re: [Audyssey] Score Sorting

2012-02-28 Thread Ken
should be able to figure this out. gurhrhrh - Original Message - From: Jim Kitchen j...@kitchensinc.net To: Ken Gamers@audyssey.org Sent: Tuesday, February 28, 2012 5:22 AM Subject: Re: [Audyssey] Score Sorting Hi Ken Below nop is the number of players slash scores to sort. sort1

[Audyssey] Score Sorting

2012-02-27 Thread Ken
This question is mainly for Jim Kitchen, but any help would be appreciated. I'm about to release an update to Phrase Madness. Currently, when you press enter, only the current player hears their score. I would like a score-sorting subroutine that will sort the score from highest to lowest so