Novità

Listato ambi vertibili

solare

Advanced Member >PLATINUM<
Ciao, chiedo agli esperti un listato che trovi ambi vertibili su due ruote sortiti in posizione isotopa e su ruote consecutive.
Faccio un esempio: In data 22/10/2020 è sortito un'ambo vertibile sulla ruota di ve 23 e nazionale 32.
 

salvo50

Advanced Member >PLATINUM PLUS<
Ciao a Tutti.

Codice:
Option Explicit
Sub Main
   Dim A,B,Es,R1,R2,P1,P2,P3,Fin,Ini,E1,E2
   Ini = EstrazioneFin - 20
   Fin = EstrazioneFin
   Scrivi Space(1) & " Ruote Consecutive, Estratti Vertibili ed Isotope " & Space(1),1,,4,,3,,1
   Scrivi Space(9) & "Chiesto da Solare - SCRIPT Salvo50" & Space(9),1,,4,,3,,1
   For Es = Ini To Fin
      AvanzamentoElab Ini,Fin,Es
      For R1 = 1 To 10
         R2 = R1 + 1
         If R2 = 11 Then R2 = 12
         For P1 = 1 To 5
            A = Estratto(Es,R1,P1)
            B = Estratto(Es,R2,P1)
            If Vert(B) = A Then
               Scrivi String(52,"-"),1
               Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
               Scrivi "  " & SiglaRuota(R1) & " ",1,0
               For P2 = 1 To 5
                  E1 = Estratto(Es,R1,P2)
                  If E1 = A Then
                     ColoreTesto 2
                  Else
                     ColoreTesto 0
                  End If
                  Scrivi Format2(E1) & " ",1,0
                  ColoreTesto 0
               Next
               Scrivi
               Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
               Scrivi "  " & SiglaRuota(R2) & " ",1,0
               For P3 = 1 To 5
                  E2 = Estratto(Es,R2,P3)
                  If E2 = B Then
                     ColoreTesto 2
                  Else
                     ColoreTesto 0
                  End If
                  Scrivi Format2(E2) & " ",1,0
                  ColoreTesto 0
               Next
               Scrivi
            End If
         Next
      Next
   Next
End Sub
 

trivellatomariotretre33

Super Member >PLATINUM<
Ciao a Tutti.

Codice:
Option Explicit
Sub Main
   Dim A,B,Es,R1,R2,P1,P2,P3,Fin,Ini,E1,E2
   Ini = EstrazioneFin - 20
   Fin = EstrazioneFin
   Scrivi Space(1) & " Ruote Consecutive, Estratti Vertibili ed Isotope " & Space(1),1,,4,,3,,1
   Scrivi Space(9) & "Chiesto da Solare - SCRIPT Salvo50" & Space(9),1,,4,,3,,1
   For Es = Ini To Fin
      AvanzamentoElab Ini,Fin,Es
      For R1 = 1 To 10
         R2 = R1 + 1
         If R2 = 11 Then R2 = 12
         For P1 = 1 To 5
            A = Estratto(Es,R1,P1)
            B = Estratto(Es,R2,P1)
            If Vert(B) = A Then
               Scrivi String(52,"-"),1
               Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
               Scrivi "  " & SiglaRuota(R1) & " ",1,0
               For P2 = 1 To 5
                  E1 = Estratto(Es,R1,P2)
                  If E1 = A Then
                     ColoreTesto 2
                  Else
                     ColoreTesto 0
                  End If
                  Scrivi Format2(E1) & " ",1,0
                  ColoreTesto 0
               Next
               Scrivi
               Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
               Scrivi "  " & SiglaRuota(R2) & " ",1,0
               For P3 = 1 To 5
                  E2 = Estratto(Es,R2,P3)
                  If E2 = B Then
                     ColoreTesto 2
                  Else
                     ColoreTesto 0
                  End If
                  Scrivi Format2(E2) & " ",1,0
                  ColoreTesto 0
               Next
               Scrivi
            End If
         Next
      Next
   Next
End Sub
Ciao Salvo50, Complimenti. Potresti fare in modo che trovi gli ambi vertibili in una sola ruota a ritroso in max 3 estrazioni anche non isotopi?
 

salvo50

Advanced Member >PLATINUM PLUS<
Per Trivellato

Codice:
Option Explicit
Sub Main
   Dim A,B,Es,Es2,R1,R2,P1,P2,P3,P4,Fin,Ini,E1,E2,Ind
   Ind = InputBox("Quanti colpi indietro da esaminare?","COLPI",3)
   Ini = EstrazioneFin - 10
   Fin = EstrazioneFin
   Scrivi Space(1) & " Ricerca indietro, Estratti Vertibili  " & Space(1),1,,4,,3,,1
   Scrivi Space(1) & " Chiesto da Trivellato - SCRIPT Salvo50" & Space(1),1,,4,,3,,1
   For Es = Ini To Fin
      AvanzamentoElab Ini,Fin,Es
      For Es2 = Es - 1 To Es - Ind Step - 1
         For R1 = 1 To 12
         If R1 = 11 Then R1 = 12
            For P1 = 1 To 5
               A = Estratto(Es,R1,P1)
               For P4 = 1 To 5
                  B = Estratto(Es2,R1,P4)
                  If Vert(A) = B Then
                     Scrivi String(52,"-"),1
                     Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
                     Scrivi "  " & SiglaRuota(R1) & " ",1,0
                     For P2 = 1 To 5
                        E1 = Estratto(Es,R1,P2)
                        If E1 = A Then
                           ColoreTesto 2
                        Else
                           ColoreTesto 0
                        End If
                        Scrivi Format2(E1) & " ",1,0
                        ColoreTesto 0
                     Next
                     Scrivi
                     Scrivi(" Estrazione n." & Format2(Es2) & " del " & DataEstrazione(Es2)),1,0
                     Scrivi "  " & SiglaRuota(R1) & " ",1,0
                     For P3 = 1 To 5
                        E2 = Estratto(Es2,R1,P3)
                        If E2 = B Then
                           ColoreTesto 2
                        Else
                           ColoreTesto 0
                        End If
                        Scrivi Format2(E2) & " ",1,0
                        ColoreTesto 0
                     Next
                     Scrivi
                  End If
               Next
            Next
         Next
      Next
   Next
End Sub
 

trivellatomariotretre33

Super Member >PLATINUM<
Per Trivellato

Codice:
Option Explicit
Sub Main
   Dim A,B,Es,Es2,R1,R2,P1,P2,P3,P4,Fin,Ini,E1,E2,Ind
   Ind = InputBox("Quanti colpi indietro da esaminare?","COLPI",3)
   Ini = EstrazioneFin - 10
   Fin = EstrazioneFin
   Scrivi Space(1) & " Ricerca indietro, Estratti Vertibili  " & Space(1),1,,4,,3,,1
   Scrivi Space(1) & " Chiesto da Trivellato - SCRIPT Salvo50" & Space(1),1,,4,,3,,1
   For Es = Ini To Fin
      AvanzamentoElab Ini,Fin,Es
      For Es2 = Es - 1 To Es - Ind Step - 1
         For R1 = 1 To 12
         If R1 = 11 Then R1 = 12
            For P1 = 1 To 5
               A = Estratto(Es,R1,P1)
               For P4 = 1 To 5
                  B = Estratto(Es2,R1,P4)
                  If Vert(A) = B Then
                     Scrivi String(52,"-"),1
                     Scrivi(" Estrazione n." & Format2(Es) & " del " & DataEstrazione(Es)),1,0
                     Scrivi "  " & SiglaRuota(R1) & " ",1,0
                     For P2 = 1 To 5
                        E1 = Estratto(Es,R1,P2)
                        If E1 = A Then
                           ColoreTesto 2
                        Else
                           ColoreTesto 0
                        End If
                        Scrivi Format2(E1) & " ",1,0
                        ColoreTesto 0
                     Next
                     Scrivi
                     Scrivi(" Estrazione n." & Format2(Es2) & " del " & DataEstrazione(Es2)),1,0
                     Scrivi "  " & SiglaRuota(R1) & " ",1,0
                     For P3 = 1 To 5
                        E2 = Estratto(Es2,R1,P3)
                        If E2 = B Then
                           ColoreTesto 2
                        Else
                           ColoreTesto 0
                        End If
                        Scrivi Format2(E2) & " ",1,0
                        ColoreTesto 0
                     Next
                     Scrivi
                  End If
               Next
            Next
         Next
      Next
   Next
End Sub
GRAZIE SALVO50 TI INVIO UNA STRETTA DI MANO CHILOMETRICA E UNA STRETTA DI MANO ANCHE A SOLARE.
 

Ultima estrazione Lotto

  • Estrazione del lotto
    giovedì 28 marzo 2024
    Bari
    49
    73
    67
    86
    19
    Cagliari
    64
    36
    37
    02
    04
    Firenze
    66
    27
    44
    90
    17
    Genova
    09
    44
    78
    85
    19
    Milano
    70
    14
    47
    38
    27
    Napoli
    80
    29
    28
    45
    39
    Palermo
    54
    59
    78
    47
    62
    Roma
    17
    22
    49
    52
    88
    Torino
    71
    35
    75
    74
    60
    Venezia
    40
    84
    02
    63
    29
    Nazionale
    08
    13
    44
    69
    85
    Estrazione Simbolotto
    Firenze
    06
    35
    16
    18
    05

Ultimi Messaggi

Alto