trivellatomariotretre33
Super Member >PLATINUM<
CIAO BUONGIORNO SE POSSIBILE AVERE UN LISTATO CHE MI TROVI I PIU FREQUENTI SU 2 RUOTE A SCELTA CON ID MENSILE E CHE MI EVIDENZIA RISULTATI TROVATI GRAZIE.
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.
Option Explicit
Sub Main
Dim r1,r2,mm,ix,fine,ini,retestratti,retesito,retidestr
Dim es,p,n1,n2,esciclo,i,e
r1 = InputBox("Ruota 1",,1)
r2 = InputBox("Ruota 2",,2)
mm = CInt(InputBox("Quanti mesi",,10))
ix = CInt(InputBox("Indice Mensile",,1))
fine = InputBox("Estraz.n.",,EstrazioneFin)
'''''
ini = fine -(mm*13)
Scrivi "Trivellato-Rubino",1
Scrivi "Rileva Frequenti nel periodo sulle due Ruote ",1
Scrivi
ColoreTesto(1)
Scrivi "Ruota 1 : " & NomeRuota(r1),1
Scrivi "Ruota 2 : " & NomeRuota(r2),1
Scrivi "Indice Mensile " & ix,1
ColoreTesto(1)
Scrivi "Periodo estrazionale " & ini & "/" & DataEstrazione(ini) & " : " & fine & "/" & DataEstrazione(fine),1
ColoreTesto(0)
Scrivi
'''loop
For es = ini To fine
If ix = IndiceMensile(es) Then
Scrivi
ReDim nm(90,2)
For i = 1 To 12
esciclo = es + i
For p = 1 To 5
n1 = Estratto(esciclo,r1,p)
n2 = Estratto(esciclo,r2,p)
nm(n1,1) = nm(n1,1) + 1
nm(n1,2) = Format2(n1)
nm(n2,1) = nm(n2,1) + 1
nm(n2,2) = Format2(n2)
Next
Next
'''ordina uscite numeri frequenti
Call OrdinaMatrice(nm,-1,1)
ReDim an(10),pr(10),ar(2)
For e = 1 To 10
an(e) = nm(e,2)
pr(e) = nm(e,1)
Next
ar(1) = r1
ar(2) = r2
Scrivi "Freq.Successivi 12 conc. " & es & " / " & DataEstrazione(es) & " Ind.Mens. " & ix & " Comb.Fr. " & StringaNumeri(an,"-") & " Pres." & StringaNumeri(pr,".")
'''esiti verifica
Call VerificaEsito(an,ar,esciclo+1,1,13,,retesito,,retestratti,retidestr)
If retestratti <> "" Then
ColoreTesto(2)
Scrivi "----> Esiti " & retidestr & " n.colpo " & retidestr-esciclo+1 & " " & retestratti & " " & retesito,1
ColoreTesto(0)
End If
End If
Next
End Sub