Class Script
Sub Main()
Dim Ini,Fin As Integer
Dim R,P,E(10),Rit(10) As Integer
Dim T(),aT1(),aT2() As String ' dimensione stringa per Tabelle
Ini = 1
Fin = EstrazioniArchivio
Scrivi (FormatSpace(" ",58),1,,RGB(0,117,234),RGB(236,255,245),120)
Scrivi (Space(5) & " I 10 numeri ritardatari su ruota " & DataEstrazione(Fin) & Space(16),1,,RGB(0,117,234),ColoreBianco,120)
Scrivi (FormatSpace(" ",58),1,,RGB(0,117,234),RGB(236,255,245),120)
Scrivi ()
'---------------------------- Titolo Tabella ---------------------------------------------
T = { "Ruota"," Rit1 "," Rit2 "," Rit3 "," Rit4 "," Rit5 "," Rit6 "," Rit7 "," Rit8 "," Rit9 "," Rit10 " }
Call InitTabella(T)
'-----------------------------------------------------------------------------------------
For R = 1 To 11
For P = 1 To 10 ' Quì Impongo Quanti Ritardatari ---> Se Cambi Modificare anche sotto
E(P) = NumeroPosRit(Fin,R,P)
Rit(P) = EstrattoRitardo(E(P) ,R,Fin )
Next
'--------------------------- AddRigatabella 1 ------------------------------------------------------
aT1 = { NomeRuota(R), E(1),E(2) ,E(3) ,E(4) ,E(5),E(6) ,E(7) , E(8) ,E(9) ,E(10) }
Call AddRigaTabella (aT1)
For x1 As Integer = 0 To 10
If Rit(x1) > 0 Then Call SetColoreCellaRighe((x1),ColoreVerde,ColoreGiallo )
Next
'...........................AddRigatabella 2 .......................................................
aT2 = { " " , Rit(1),Rit(2),Rit(3),Rit(4),Rit(5),Rit(6) , Rit(7) ,Rit(8) ,Rit(9) ,Rit(10) }
Call AddRigaTabella(aT2)
For x2 As Integer = 0 To 10
If Rit(x2) > 99 Then Call SetColoreCellaRighe((x2),ColoreRosso,ColoreBianco)
If Rit(x2) <= 99 Then Call SetColoreCellaRighe((x2),ColoreGiallo,ColoreVerde)
Next
'----------- colora 2 valori uguali ----------------------------------------------------
For y1 As Integer = 0 To 9
For y2 As Integer = y1 +1 To 10
If aT2(y1) = aT2(y2) Then Call SetColoreCellaRighe( (y1),ColoreMagenta,ColoreBianco)
If aT2 (y2) = aT2(y1) Then Call SetColoreCellaRighe( (y2),ColoreMagenta,ColoreBianco)
Next
Next
'-----------------------------------------------------------------------------------------
'---------------------------------------------------------------------------------------------------
Next
CreaTabella ' creatabella
End Sub
End Class