Follow along with the video below to see how to install our site as a web app on your home screen.
Nota: This feature may not be available in some browsers.
Sub Main
Dim nu(5),ru(1),T,V,aN(90)
Ini = EstrazioneFin - 25
fin = EstrazioneFin
r = ScegliRuota
Scrivi "Tabellone in Decina Ruota di : " & NomeRuota(r) & Space(10) & " By Mike58",1,,,,3,,1
ReDim T(92)'--------------------------------------------------------
T(1) = "info data"
T(2) = "Estratti"
For x = 1 To 90
T(x + 2) = Format2(x)
Next
Call InitTabella(T,,,1)
For es = Ini To fin
' For r = 1 To 1
ReDim V(92)'------------------------------------------------------
ReDim freq(92)
ReDim rit(92)
ReDim sto(92)
V(1) =(es)
V(2) = StringaEstratti(es,r)
For xx = 1 To 90
aN(xx) = ""
'aN(xx) = xx
For p = 1 To 5
nu(p) = Estratto(es,r,p)
If nu(p) = xx Then aN(xx) = aN(xx) & Decina(nu(p))
kk = kk + 1
V(xx + 2) = aN(xx)
'If V(xx + 2) > 0 Then kk = kk +1
Next
sf = EstrattoFrequenza(r,xx,Ini,fin)
freq(1) = "Freq"
freq(2) = " <> "
freq(xx + 2) = sf
sr = EstrattoRitardo(r,xx,Ini,fin)
rit(1) = "Ritardo"
rit(2) = " <> "
rit(xx + 2) = sr
st = EstrattoStorico(r,xx,Ini,fin)
sto(1) = "Rit Sto"
sto(2) = " <> "
sto(xx + 2) = st
Next
Call AddRigaTabella(V,,,1)
For y = 1 To 92
If y < 10 Then Call SetColoreCella((y + 2),6,0)
If y > 19 And y < 30 Then Call SetColoreCella((y + 2),6,0)
If y > 39 And y < 50 Then Call SetColoreCella((y + 2),6,0)
If y > 59 And y < 70 Then Call SetColoreCella((y + 2),6,0)
If y > 79 And y < 90 Then Call SetColoreCella((y + 2),6,0)
Next
Next
'Next
Call AddRigaTabella(freq,,,1)
Call AddRigaTabella(rit,,,1)
Call AddRigaTabella(sto,,,1)
Call SetTableWidth("100%")
CreaTabella
End Sub
Option Explicit
Sub Main
Dim R,Y,X,Es,N
'Quadro Analitico Estrazione (per Ruota)
'Script By Joe V.1.0 del 22/04/2020
R= ScegliRuota
Scrivi "Estr Data Est. | ",True,False
For Y = 0 To 8
For X = 0 To 8
Scrivi Y & "",True,0
Next
Scrivi Y + 1 & " | ",True,0
Next
Scrivi Space(3) & NomeRuota (R),True
For Es = EstrazioneFin - 45 To EstrazioneFin
Scrivi Es & " " & DataEstrazione(Es) &" | ",True,False
For N = 1 To 90
If Posizione(Es,R,N) > 0 Then
Scrivi Cadenza(N),True,0
Else
ColoreTesto 5 : Scrivi ".",0,0 : ColoreTesto 0
End If
If N Mod(10) <> 0 Then
Scrivi "",0,0
Else
Scrivi " | ",0,0
End If
Next
Scrivi StringaEstratti (Es,R),True
Next
End Sub
Option Explicit
Sub Main
SetComportamentoACapo True
Dim RD(90)
Dim N,K,ES,PR,E,RU,X,P,M
For N = 0 To 80 Step 10
K = K + 1 : RD(K) =(N + 1) : K = K + 1 : RD(K) =(N + 2)
K = K + 1 : RD(K) =(N + 3) : K = K + 1 : RD(K) =(N + 4)
K = K + 1 : RD(K) =(N + 5) : K = K + 1 : RD(K) =(N + 6)
K = K + 1 : RD(K) =(N + 7) : K = K + 1 : RD(K) =(N + 8)
K = K + 1 : RD(K) =(N + 9) : K = K + 1 : RD(K) =(N + 10)
Next
RU = ScegliRuota
Scrivi Space(7) & FormatSpace(NomeRuota(RU),11) & "| ",1,0
For N = 0 To 8 : Scrivi "Decina Naturale " & N & Space(1) & " | ",1,0
Next
Scrivi ".. Estratti ..",1,0 : Scrivi:Scrivi
Scrivi Space(18),1,0
For N = 0 To 8 :For M = 0 To 8
Scrivi "|" & N,1,0
Next
Scrivi "|" & N + 1 & " ",1,0
Next
Scrivi
For ES = EstrazioneFin - 46 To EstrazioneFin
Scrivi ES & " - " & DataEstrazione(ES) & " |",1,0
For X = 1 To K : PR = 0
For P = 1 To 5 : E = Estratto(ES,RU,P)
If E = RD(X) Then Scrivi Cadenza(E) & " ",1,0 : PR = 1
Next
If PR = 0 Then Scrivi "_ ",0,0,,RGB(127,127,127)
If X/10 = Int(X/10) Then Scrivi "|",0,0,,RGB(127,127,127)
Next
Scrivi " " & StringaEstratti(ES,RU)
Next
End Sub