Novità

di rubino script a colpo

come da te richiesto:

Codice:
Sub Main()
	ImpostaArchivio10ELotto(2)
	'-------------------------------------------------------------------------------------------------------------------------------
	Dim num(2)
	Dim nm(40)
	Dim lun(90)
	Dim anm(90)
	fin = EstrazioniArchivioDL
	storia = InputBox("Estrazioni Iniziale..",,fin)
	lis = InputBox("verifica garanzia  2=Ambo   3=Terno   4=Quaterna 5=Cinquina  6=Sestina  7=Settina   8=Ottina  9=Novina  10=10 punti   11=11 punti   12=12 punti   13=13punti",,6)
	s1 = InputBox("esamina solo presenze = 2 ",,2)
	s2 = InputBox("esamina distanza (x) tra 2 estratti",,4)
	s4 = InputBox("Verifica in n.colpi..",,6)
	ColoreTesto 2
	Scrivi " Ricerca Numeri che si sono ripetuti in 2 concorsi consecutivi nel range dal....al...." & Storia & "/" & DataEstrazioneDL(storia) & "    -    " & fin & "/" & DataEstrazioneDL(fin)
	Scrivi " Metodo verifica quanti si ripetono per la terza volta nei 2 concorsi successivi            (script  KeepSistema)"
	Scrivi "_________________________________________________________________________________________________________________________________"
	Scrivi
	ColoreTesto 0
	Ini = storia - 1
	For Ini = Ini + 1 To fin
		idestr = Ini
		numeria = ""
		numerib = ""
		ok = 0
		lunghetta = ""
		z = z + 1
		'''azzera schiere
		For j = 1 To 90
			anm(j) = 0
			lun(j) = 0
		Next
		'''carica schiera con 20 numeri estratti
		For h = 1 To 20
			numeria = numeria & Format2(EstrattoDL(idestr - 1,h)) & " "
			numerib = numerib & Format2(EstrattoDL(idestr,h)) & " "
		Next
		ColoreTesto 0
		Scrivi "____________________________________________________________________________________________________"
		Scrivi GetInfoEstrazioneDL(idestr - 1) & "...Estratti..." & numeria
		Scrivi GetInfoEstrazioneDL(idestr) & "...Estratti..." & numeriB
		ColoreTesto 2
		''''----------------------------------------------------------------------------------------------------
		num(1) = 0
		num(2) = 0
		''''''vede se presenze = 2 in 2 concorsi
		For h = 1 To 20
			num(1) = EstrattoDL(idestr,h)
			pres = SerieFreqDL(idestr - 1,idestr,num,1)
			If pres = 2 Then
				ok = ok + 1
				lun(ok) = Format2(num(1))
			End If
		Next
		''''----------------------------------------------------------------------------------------------------
		''''esamina distanza (x) tra 2 estratti
		For h = 1 To 19
			h1 = h
			For h1 = h1 + 1 To 20
				dis = EstrattoDL(idestr,h1) - EstrattoDL(idestr,h)
				If Int(s2) = dis Then
					num(1) = EstrattoDL(idestr,h)
					num(2) = EstrattoDL(idestr,h1)
					anm(num(1)) = Format2(num(1))
					anm(num(2)) = Format2(num(2))
					ColoreTesto 1
					Scrivi "Rilevato...." & idestr & " " & DataEstrazioneDL(idestr) & "....Estratti aventi Distanza richiesta..." & dis & "  ...... " & Format2(num(1)) & " - " & Format2(num(2))
				End If
			Next
		Next
		For j = 1 To 90
			If anm(j) > 0 Then
				ok = ok + 1
				lun(ok) = anm(j)
			End If
		Next
		''''----------------------------------------------------------------------------------------------------
		EliminaRipetuti lun
		ctr = 0
		For j = 1 To 90
			If lun(j) > 0 Then
				lunghetta = lunghetta & Format2(lun(j)) & " "
				ctr = ctr + 1
			End If
		Next
		ColoreTesto 2
		Scrivi "...numeri.in gioco..." & ctr & "......dal........" & idestr + 1 & "..." & lunghetta
		ColoreTesto 0
		'''prepara campi per lancio sviluppo del sistema ridotto
		completa = lunghetta
		k = s4
		If Int(ctr) > 10 And Int(ctr) < 23 Then
			risultati = Getridotto(completa,g,ctr,idestr,lis,k)
			'''accumula punteggi del sistema
			ReDim aV2(0)
			Call SplitByChar(risultati,",",aV2) ' scompongo la decina
			If aV2(0) > 0 Then
				If Int(aV2(0)) > 0 Then die = die + Int(aV2(0))
				If Int(aV2(1)) > 0 Then nov = nov + Int(aV2(1))
				If Int(aV2(2)) > 0 Then ott = ott + Int(aV2(2))
				If Int(aV2(3)) > 0 Then Sett = Sett + Int(aV2(3))
				If Int(aV2(4)) > 0 Then sei = sei + Int(aV2(4))
				If Int(aV2(5)) > 0 Then cinq = cinq + Int(aV2(5))
 
thank's ma non fa il riepilogo
R_I_E_P_I_L_O_G_O_
3 Punti totali realizzati...
4 Punti totali realizzati...
5 Punti totali realizzati...
6 Punti totali realizzati...
7 Punti totali realizzati...
8 Punti totali realizzati...
9 Punti totali realizzati...
10 Punti totali realizzati...
concorsi esaminati totale..226
Vincenti Combinazione .....
 
sembra andare bene:


Codice:
Sub Main()
	ImpostaArchivio10ELotto(2)
	'-------------------------------------------------------------------------------------------------------------------------------
	Dim num(2)
	Dim nm(40)
	Dim lun(90)
	Dim anm(90)
	fin = EstrazioniArchivioDL
	storia = InputBox("Estrazioni Iniziale..",,fin)
	lis = InputBox("verifica garanzia  2=Ambo   3=Terno   4=Quaterna 5=Cinquina  6=Sestina  7=Settina   8=Ottina  9=Novina  10=10 punti   11=11 punti   12=12 punti   13=13punti",,6)
	s1 = InputBox("esamina solo presenze = 2 ",,2)
	s2 = InputBox("esamina distanza (x) tra 2 estratti",,4)
	s4 = InputBox("Verifica in n.colpi..",,6)
	ColoreTesto 2
	Scrivi " Ricerca Numeri che si sono ripetuti in 2 concorsi consecutivi nel range dal....al...." & Storia & "/" & DataEstrazioneDL(storia) & "    -    " & fin & "/" & DataEstrazioneDL(fin)
	Scrivi " Metodo verifica quanti si ripetono per la terza volta nei 2 concorsi successivi            (script  KeepSistema)"
	Scrivi "_________________________________________________________________________________________________________________________________"
	Scrivi
	ColoreTesto 0
	Ini = storia - 1
	For Ini = Ini + 1 To fin
		idestr = Ini
		numeria = ""
		numerib = ""
		ok = 0
		lunghetta = ""
		z = z + 1
		'''azzera schiere
		For j = 1 To 90
			anm(j) = 0
			lun(j) = 0
		Next
		'''carica schiera con 20 numeri estratti
		For h = 1 To 20
			numeria = numeria & Format2(EstrattoDL(idestr - 1,h)) & " "
			numerib = numerib & Format2(EstrattoDL(idestr,h)) & " "
		Next
		ColoreTesto 0
		Scrivi "____________________________________________________________________________________________________"
		Scrivi GetInfoEstrazioneDL(idestr - 1) & "...Estratti..." & numeria
		Scrivi GetInfoEstrazioneDL(idestr) & "...Estratti..." & numeriB
		ColoreTesto 2
		''''----------------------------------------------------------------------------------------------------
		num(1) = 0
		num(2) = 0
		''''''vede se presenze = 2 in 2 concorsi
		For h = 1 To 20
			num(1) = EstrattoDL(idestr,h)
			pres = SerieFreqDL(idestr - 1,idestr,num,1)
			If pres = 2 Then
				ok = ok + 1
				lun(ok) = Format2(num(1))
			End If
		Next
		''''----------------------------------------------------------------------------------------------------
		''''esamina distanza (x) tra 2 estratti
		For h = 1 To 19
			h1 = h
			For h1 = h1 + 1 To 20
				dis = EstrattoDL(idestr,h1) - EstrattoDL(idestr,h)
				If Int(s2) = dis Then
					num(1) = EstrattoDL(idestr,h)
					num(2) = EstrattoDL(idestr,h1)
					anm(num(1)) = Format2(num(1))
					anm(num(2)) = Format2(num(2))
					ColoreTesto 1
					Scrivi "Rilevato...." & idestr & " " & DataEstrazioneDL(idestr) & "....Estratti aventi Distanza richiesta..." & dis & "  ...... " & Format2(num(1)) & " - " & Format2(num(2))
				End If
			Next
		Next
		For j = 1 To 90
			If anm(j) > 0 Then
				ok = ok + 1
				lun(ok) = anm(j)
			End If
		Next
		''''----------------------------------------------------------------------------------------------------
		EliminaRipetuti lun
		ctr = 0
		For j = 1 To 90
			If lun(j) > 0 Then
				lunghetta = lunghetta & Format2(lun(j)) & " "
				ctr = ctr + 1
			End If
		Next
		ColoreTesto 2
		Scrivi "...numeri.in gioco..." & ctr & "......dal........" & idestr + 1 & "..." & lunghetta
		ColoreTesto 0
		'''prepara campi per lancio sviluppo del sistema ridotto
		completa = lunghetta
		k = s4
		If Int(ctr) > 10 And Int(ctr) < 23 Then
		
			risultati = Getridotto(completa,g,ctr,idestr,lis,k)
			
	
			'''accumula punteggi del sistema
			ReDim aV2(0)
			Call SplitByChar(risultati,".",aV2) ' scompongo risultati x sorte

				If aV2(0) > 0 Then die = die + Int(aV2(0))
				If aV2(1) > 0 Then nov = nov + Int(aV2(1))
				If aV2(2) > 0 Then ott = ott + Int(aV2(2))
				If aV2(3) > 0 Then sett = sett + Int(aV2(3))
				If aV2(4) > 0 Then sei = sei + Int(aV2(4))
				If aV2(5) > 0 Then cinq = cinq + Int(aV2(5))
				If aV2(6) > 0 Then quat =
 
Sub Main()
ImpostaArchivio10ELotto(2)
'-------------------------------------------------------------------------------------------------------------------------------
Dim num(2)
Dim nm(40)
Dim lun(90)
Dim anm(90)
fin = EstrazioniArchivioDL
storia = InputBox("Estrazioni Iniziale..",,fin)
lis = InputBox("verifica garanzia 2=Ambo 3=Terno 4=Quaterna 5=Cinquina 6=Sestina 7=Settina 8=Ottina 9=Novina 10=10 punti 11=11 punti 12=12 punti 13=13punti",,6)
s1 = InputBox("esamina solo presenze = 2 ",,2)
s2 = InputBox("esamina distanza (x) tra 2 estratti",,4)
s4 = InputBox("Verifica in n.colpi..",,6)
ColoreTesto 2
Scrivi " Ricerca Numeri che si sono ripetuti in 2 concorsi consecutivi nel range dal....al...." & Storia & "/" & DataEstrazioneDL(storia) & " - " & fin & "/" & DataEstrazioneDL(fin)
Scrivi " Metodo verifica quanti si ripetono per la terza volta nei 2 concorsi successivi (script KeepSistema)"
Scrivi "_________________________________________________________________________________________________________________________________"
Scrivi
ColoreTesto 0
Ini = storia - 1
For Ini = Ini + 1 To fin
idestr = Ini
numeria = ""
numerib = ""
ok = 0
lunghetta = ""
z = z + 1
'''azzera schiere
For j = 1 To 90
anm(j) = 0
lun(j) = 0
Next
'''carica schiera con 20 numeri estratti
For h = 1 To 20
numeria = numeria & Format2(EstrattoDL(idestr - 1,h)) & " "
numerib = numerib & Format2(EstrattoDL(idestr,h)) & " "
Next
ColoreTesto 0
Scrivi "____________________________________________________________________________________________________"
Scrivi GetInfoEstrazioneDL(idestr - 1) & "...Estratti..." & numeria
Scrivi GetInfoEstrazioneDL(idestr) & "...Estratti..." & numeriB
ColoreTesto 2
''''----------------------------------------------------------------------------------------------------
num(1) = 0
num(2) = 0
''''''vede se presenze = 2 in 2 concorsi
For h = 1 To 20
num(1) = EstrattoDL(idestr,h)
pres = SerieFreqDL(idestr - 1,idestr,num,1)
If pres = 2 Then
ok = ok + 1
lun(ok) = Format2(num(1))
End If
Next
''''----------------------------------------------------------------------------------------------------
''''esamina distanza (x) tra 2 estratti
For h = 1 To 19
h1 = h
For h1 = h1 + 1 To 20
dis = EstrattoDL(idestr,h1) - EstrattoDL(idestr,h)
If Int(s2) = dis Then
num(1) = EstrattoDL(idestr,h)
num(2) = EstrattoDL(idestr,h1)
anm(num(1)) = Format2(num(1))
anm(num(2)) = Format2(num(2))
ColoreTesto 1
Scrivi "Rilevato...." & idestr & " " & DataEstrazioneDL(idestr) & "....Estratti aventi Distanza richiesta..." & dis & " ...... " & Format2(num(1)) & " - " & Format2(num(2))
End If
Next
Next
For j = 1 To 90
If anm(j) > 0 Then
ok = ok + 1
lun(ok) = anm(j)
End If
Next
''''----------------------------------------------------------------------------------------------------
EliminaRipetuti lun
ctr = 0
For j = 1 To 90
If lun(j) > 0 Then
lunghetta = lunghetta & Format2(lun(j)) & " "
ctr = ctr + 1
End If
Next
ColoreTesto 2
Scrivi "...numeri.in gioco..." & ctr & "......dal........" & idestr + 1 & "..." & lunghetta
ColoreTesto 0
'''prepara campi per lancio sviluppo del sistema ridotto
completa = lunghetta
k = s4
If Int(ctr) > 6 And Int(ctr) < 23 Then

risultati = Getridotto(completa,g,ctr,idestr,lis,k)


'''accumula punteggi del sistema
ReDim aV2(0)
Call SplitByChar(risultati,".",aV2) ' scompongo risultati x sorte

If aV2(0) > 0 Then die = die + Int(aV2(0))
If aV2(1) > 0 Then nov = nov + Int(aV2(1))
If aV2(2) > 0 Then ott = ott + Int(aV2(2))
If aV2(3) > 0 Then sett = sett + Int(aV2(3))
If aV2(4) > 0 Then sei = sei + Int(aV2(4))
If aV2(5) > 0 Then cinq = cinq + Int(aV2(5))
If aV2(6) > 0 Then quat = quat + Int(aV2(6))
If aV2(7) > 0 Then tre
 
keeper

vorrei sapere se hai messo dei riduttori con meno di 11 numeri, perchè in tal caso devo rivedere alcune cose?

poi con il server di lottoced che oggi è quasi impossibile collegarsi, la vedo dura.

speriamo che si sblocchi questa situazione.
starà a ravanà con aggiornamenti e archivio storici.





-----------------------------
hobby e passatempo, il bello dello studio e della ricerca

Non giocare i miei numeri, sono derivanti da studi teorici e sperimentazioni.

camapanagaus.jpg
 
si ho introdotto riduttori se vedi nello script di 7 8 9 numeri in sestina ma il bello è che se effettuo la ricerca delleprevisioni di 5 estrazioni a ritroso funziona se invece parto da -100 mi da errore storia per favore gli dai un'occhiata
 
keeper non avendo i ridotti piccoli che hai messo, spero vada bene, perchè non riesco a fare il controllo esatto.

provalo e fammi sapere.!


Codice:
Sub Main()
	ImpostaArchivio10ELotto(2)
	'-------------------------------------------------------------------------------------------------------------------------------
	Dim num(2)
	Dim nm(40)
	Dim lun(90)
	Dim anm(90)
	fin = EstrazioniArchivioDL
	storia = InputBox("Estrazioni Iniziale..",,fin)
	lis = InputBox("verifica garanzia 2=Ambo 3=Terno 4=Quaterna 5=Cinquina 6=Sestina 7=Settina 8=Ottina 9=Novina 10=10 punti 11=11 punti 12=12 punti 13=13punti",,6)
	s1 = InputBox("esamina solo presenze = 2 ",,2)
	s2 = InputBox("esamina distanza (x) tra 2 estratti",,4)
	s4 = InputBox("Verifica in n.colpi..",,6)
	ColoreTesto 2
	Scrivi " Ricerca Numeri che si sono ripetuti in 2 concorsi consecutivi nel range dal....al...." & Storia & "/" & DataEstrazioneDL(storia) & " - " & fin & "/" & DataEstrazioneDL(fin)
	Scrivi " Metodo verifica quanti si ripetono per la terza volta nei 2 concorsi successivi (script KeepSistema3)"
	Scrivi "_________________________________________________________________________________________________________________________________"
	Scrivi
	ColoreTesto 0
	Ini = storia - 1
	For Ini = Ini + 1 To fin
		idestr = Ini
		numeria = ""
		numerib = ""
		ok = 0
		lunghetta = ""
		z = z + 1
		'''azzera schiere
		For j = 1 To 90
			anm(j) = 0
			lun(j) = 0
		Next
		'''carica schiera con 20 numeri estratti
		For h = 1 To 20
			numeria = numeria & Format2(EstrattoDL(idestr - 1,h)) & " "
			numerib = numerib & Format2(EstrattoDL(idestr,h)) & " "
		Next
		ColoreTesto 0
		Scrivi "____________________________________________________________________________________________________"
		Scrivi GetInfoEstrazioneDL(idestr - 1) & "...Estratti..." & numeria
		Scrivi GetInfoEstrazioneDL(idestr) & "...Estratti..." & numeriB
		ColoreTesto 2
		''''----------------------------------------------------------------------------------------------------
		num(1) = 0
		num(2) = 0
		''''''vede se presenze = 2 in 2 concorsi
		For h = 1 To 20
			num(1) = EstrattoDL(idestr,h)
			pres = SerieFreqDL(idestr - 1,idestr,num,1)
			If pres = 2 Then
				ok = ok + 1
				lun(ok) = Format2(num(1))
			End If
		Next
		''''----------------------------------------------------------------------------------------------------
		''''esamina distanza (x) tra 2 estratti
		For h = 1 To 19
			h1 = h
			For h1 = h1 + 1 To 20
				dis = EstrattoDL(idestr,h1) - EstrattoDL(idestr,h)
				If Int(s2) = dis Then
					num(1) = EstrattoDL(idestr,h)
					num(2) = EstrattoDL(idestr,h1)
					anm(num(1)) = Format2(num(1))
					anm(num(2)) = Format2(num(2))
					ColoreTesto 1
					Scrivi "Rilevato...." & idestr & " " & DataEstrazioneDL(idestr) & "....Estratti aventi Distanza richiesta..." & dis & " ...... " & Format2(num(1)) & " - " & Format2(num(2))
				End If
			Next
		Next
		For j = 1 To 90
			If anm(j) > 0 Then
				ok = ok + 1
				lun(ok) = anm(j)
			End If
		Next
		''''----------------------------------------------------------------------------------------------------
		EliminaRipetuti lun
		ctr = 0
		For j = 1 To 90
			If lun(j) > 0 Then
				lunghetta = lunghetta & Format2(lun(j)) & " "
				ctr = ctr + 1
			End If
		Next
		ColoreTesto 2
		Scrivi "...numeri.in gioco..." & ctr & "......dal........" & idestr + 1 & "..." & lunghetta
		ColoreTesto 0
		'''prepara campi per lancio sviluppo del sistema ridotto
		completa = lunghetta
		k = s4
		If Int(ctr) > 6 And Int(ctr) < 23 Then
			risultati = Getridotto(completa,g,ctr,idestr,lis,k)
			'''accumula punteggi del sistema
			ReDim aV2(0)
			Call SplitByChar(risultati,".",aV2) ' scompongo risultati x sorte
			If aV2(0) > 0 Then die = die + Int(aV2(0))
			If aV2(1) > 0 Then nov = nov + Int(aV2(1))
			If aV2(2) > 0 Then ott = ott + Int(aV2(2))
			If aV2(3) > 0 Then sett = sett + Int(aV2(3))
			If aV2(4) > 0 Then sei = sei + Int(aV2(4))
 
rubino funziona cmq facciamo delle prove senti è possibile poi aggiungere dei fissi ma li devi aggiungere nello script max 10
es.'''''variante incremento punteggio
tnm(11) = 67
tnm(12) = 78
tnm(13) = 87
tnm(14) = 76
tnm(15) = 66
tnm(16) = 75
tnm(17) = 88
tnm(18) = 01
tnm(19) = 11
tnm(20) = 17
tnm(21) = 32
tnm(22) = 35
tnm(23) = 73
tnm(24) = 75
 
si è possibile inserire sempre dei fissi.

rimetto la scelta di aggiungere dei fissi.
quelli da te specificati.

però mi sembra che siano tanti quelli previsti.

bisognerebbe aggiungere dei terni o quaterne che legano spesso assieme.

per la serie "pochi ma buoni".






-----------------------------
hobby e passatempo, il bello dello studio e della ricerca

Non giocare i miei numeri, sono derivanti da studi teorici e sperimentazioni.

camapanagaus.jpg
 
Bravo sei veloce nel pensiero come lo sei nello script hai capito la mia meta per cui tieni presente le 22 cinquine a coesione presenti in spaziometria nella sez. 10elotto cmq lascio a te la scelta se usare fissi a un solo numero oppure trezine o quartine o altro
 
aggiornato lo script, con possibilità di mettere delle fisse.

basterà scriverle nell'apposita inputbox, ricordandosi di separare i numeri uno dall'altro con un punto</u>.

note:

con il programma spaziometria è possibile fare delle statistiche anche per il 10elotto5minuti
quindi, se si vuole aggiungere allo script delle fisse con numeri frequenti, basterà richiedere prima la statistica dei frequenti
poi successivamente, inserirli nello script.
se invece un utente vuole inserire numeri in ritardo farà la medesima cosa per il ritardo.
oppure una miscellanea dei 2 criteri diversi.

oppure mettere una decina che è frequente o in ritardo.

prassi quasi comune per il gioco del 10elotto.

insomma, così mi sembra libero, aperto, trasparente all'utilizzo
della visione di gioco di ognuno.



Codice:
Sub Main()
	ImpostaArchivio10ELotto(2)
	'-------------------------------------------------------------------------------------------------------------------------------
	Dim num(2)
	Dim nm(40)
	Dim lun(90)
	Dim anm(90)
	fin = EstrazioniArchivioDL
	storia = InputBox("Estrazioni Iniziale..",,fin)
	lis = InputBox("verifica garanzia 2=Ambo 3=Terno 4=Quaterna 5=Cinquina 6=Sestina 7=Settina 8=Ottina 9=Novina 10=10 punti 11=11 punti 12=12 punti 13=13punti",,6)
	s1 = InputBox("esamina solo presenze = 2 ",,2)
	s2 = InputBox("esamina distanza (x) tra 2 estratti",,4)
	fisse = InputBox("inserisci fisse dividendole con un punto",,"1.2.3")
	s4 = InputBox("Verifica in n.colpi..",,6)
	ColoreTesto 2
	Scrivi " Ricerca Numeri che si sono ripetuti in 2 concorsi consecutivi nel range dal....al...." & Storia & "/" & DataEstrazioneDL(storia) & " - " & fin & "/" & DataEstrazioneDL(fin)
	Scrivi " Metodo verifica quanti si ripetono per la terza volta nei 2 concorsi successivi (script KeepSistema3)"
	Scrivi "_________________________________________________________________________________________________________________________________"
	Scrivi
	ColoreTesto 0
	Ini = storia - 1
	For Ini = Ini + 1 To fin
		idestr = Ini
		numeria = ""
		numerib = ""
		ok = 0
		lunghetta = ""
		z = z + 1
		'''azzera schiere
		For j = 1 To 90
			anm(j) = 0
			lun(j) = 0
		Next
		'''carica schiera con 20 numeri estratti
		For h = 1 To 20
			numeria = numeria & Format2(EstrattoDL(idestr - 1,h)) & " "
			numerib = numerib & Format2(EstrattoDL(idestr,h)) & " "
		Next
		ColoreTesto 0
		Scrivi "____________________________________________________________________________________________________"
		Scrivi GetInfoEstrazioneDL(idestr - 1) & "...Estratti..." & numeria
		Scrivi GetInfoEstrazioneDL(idestr) & "...Estratti..." & numeriB
		ColoreTesto 2
		''''----------------------------------------------------------------------------------------------------
		num(1) = 0
		num(2) = 0
		''''''vede se presenze = 2 in 2 concorsi
		For h = 1 To 20
			num(1) = EstrattoDL(idestr,h)
			pres = SerieFreqDL(idestr - 1,idestr,num,1)
			If pres = 2 Then
				ok = ok + 1
				lun(ok) = Format2(num(1))
			End If
		Next
		''''----------------------------------------------------------------------------------------------------
		''''esamina distanza (x) tra 2 estratti
		For h = 1 To 19
			h1 = h
			For h1 = h1 + 1 To 20
				dis = EstrattoDL(idestr,h1) - EstrattoDL(idestr,h)
				If Int(s2) = dis Then
					num(1) = EstrattoDL(idestr,h)
					num(2) = EstrattoDL(idestr,h1)
					anm(num(1)) = Format2(num(1))
					anm(num(2)) = Format2(num(2))
					ColoreTesto 1
					Scrivi "Rilevato...." & idestr & " " & DataEstrazioneDL(idestr) & "....Estratti aventi Distanza richiesta..." & dis & " ...... " & Format2(num(1)) & " - " & Format2(num(2))
				End If
			Next
		Next
		For j = 1 To 90
			If anm(j) > 0 Then
				ok = ok + 1
				lun(ok) = anm(j)
			End If
		Next
		''''----------------------------------------------------------------------------------------------------
		 If fisse <> "" Then
					ReDim aVf(0)
			Call SplitByChar(fisse,".",aVf) ' scompongo fisse
			qt =
 
grazie rubino ottima idea gira bene è pronto per inserirlo in spaziometria e renderlo disponibile a tutti grazie del lavoro svolto.keeper
 

Ultima estrazione Lotto

  • Estrazione del lotto
    martedì 14 gennaio 2025
    Bari
    41
    25
    12
    73
    55
    Cagliari
    54
    20
    48
    32
    67
    Firenze
    75
    23
    68
    10
    38
    Genova
    33
    27
    81
    70
    64
    Milano
    68
    01
    64
    86
    87
    Napoli
    47
    75
    45
    10
    21
    Palermo
    55
    86
    33
    53
    70
    Roma
    88
    78
    61
    06
    07
    Torino
    76
    08
    23
    61
    82
    Venezia
    25
    15
    49
    21
    81
    Nazionale
    70
    10
    32
    78
    07
    Estrazione Simbolotto
    Bari
    07
    14
    28
    45
    31
Indietro
Alto