lotto_tom75
Advanced Premium Member
Chi riesce a trasformare questo script che analizza in modo integrale un file txt per il lotto in uno analogo x million day?
Credo che, se qualcuno/a lo riuscisse a realizzare, poi dandogli in pasto un file txt md doc o anche il semplice archivio md composto solo dalle formazioni numeriche potrebbe essere molto utile anche con un archivio molto ridotto... come quello attuale
Codice:
Option Explicit
Sub Main
Dim sFile
Dim k,y
Dim nSorte,RetRit,RetRitMax,RetIncrRitMax,Inizio,Fine,RetFreq
sFile = ScegliFile("c:\lunghette",".txt","lunghette.txt")
'Inizio = 1
'Fine = 8647
ReDim aRuote(1)
'aRuote(1) = BA_
'aRuote(2) = CA_
'aRuote(3) = FI_
'aRuote(4) = GE_
'aRuote(5) = MI_
'aRuote(6) = NA_
'aRuote(7) = PA_
'aRuote(8) = RO_
'aRuote(9) = TO_
'aRuote(10) = VE_
'aRuote(11) = NZ_
aRuote(1) = TT_
nSorte = 5
Call Messaggio("Lettura file di testo")
ReDim aRighe(0)
Call LeggiRigheFileDiTesto(sFile,aRighe)
For k = 0 To UBound(aRighe)
If aRighe(k) <> "" Then
ReDim aNum(0)
Call SplitByChar("." & aRighe(k),".",aNum)
Call StatisticaFormazioneTurbo(aNum,aRuote,nSorte,RetRit,RetRitMax,RetIncrRitMax,RetFreq,Inizio,Fine)
RetRit = RitardoCombinazioneTurbo(aRuote,aNum,nSorte,Fine)
Dim Diff
Diff = RetRitMax - RetRit
If(Diff = 0 And RetIncrRitMax <= 10) Then
Call Messaggio("Trovata! :) con incmax: " & RetIncrRitMax & " e con freq: " & RetFreq)
Call Scrivi(aRighe(k) & " ra : " & RetRit & " rs: " & RetRitMax & " incmax: " & RetIncrRitMax & " diff: " & Diff & "freq: " & RetFreq)
End If
End If
If k Mod 100 = 0 Then
Call Messaggio("Colonna : " & k)
If ScriptInterrotto Then Exit For
Call AvanzamentoElab(0,UBound(aRighe),k)
End If
Next
End Sub
Credo che, se qualcuno/a lo riuscisse a realizzare, poi dandogli in pasto un file txt md doc o anche il semplice archivio md composto solo dalle formazioni numeriche potrebbe essere molto utile anche con un archivio molto ridotto... come quello attuale
Ultima modifica: