B
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
''''''''''crea da spaziometria archivio lotto su file txt, e stampa a video
''''''''''che a sua volta può essere copia "EdesimoneArchivioLotto"
'http://forum.lottoced.com/forum/lottoced/statistica/2060136-vari-sistemini-da-condizione-statistica/page8
Sub Main
Dim dal,al,filename,records,riga,r,n,dataEstr,y
Dim estrazione(99999,02)
dal = InputBox("Dall'estrazione n.",,3949)
al = InputBox("All'estrazione n.",,EstrazioneFin)
filename = "C:\temp\ArchivioLotto.txt"
Call EliminaFile(filename)
records = riga
''''''''''''''''''''''''''''''''''''''''''''''
For dal = dal + 01 To al
records = "" : riga = ""
Call Messaggio("Elaboro estraz.n. " & dal)
ReDim MatriceEstrRitorno(55)
Call GetEstrazioneCompleta(dal,MatriceEstrRitorno)
dataEstr = FormatSpace(Format2(giorno(dal)),02) & " " & FormatSpace(MeseNome(Mese(dal)),09) & " " & FormatSpace(Anno(dal),04)
'dataEstr = DataEstrazione(dal)
riga = dataEstr & " "
For r = 01 To 11
For n = 01 To 05
riga = riga & Format2(MatriceEstrRitorno(r,n))
If n <= 4 Then riga = riga & "."
Next
If r < 11 Then riga = riga & " "
Next
records = riga
estrazione(dal,01) = dal
estrazione(dal,02) = records
Scrivi estrazione(dal,01) & " " & records
Next
'''''''scrivi file ordinamento l'ultima estrazione sarà la prima in alto, la più vecchia è in fondo
Call OrdinaMatriceTurbo(estrazione,- 01,01)
For y = 1 To al
records = ""
If estrazione(y,01) > 00 Then
records = records & estrazione(y,02)
Call ScriviFile(filename,records)
End If
Next
End Sub