lotto_tom75
Advanced Premium Member
quando si evidenzia l' errore e si clicca su copy to clipboard , dove viene salvato il file , o rimane in memoria ?
Se fai copy to clipboard e poi fai incolla su blocknote o similare lo vedi...
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.
quando si evidenzia l' errore e si clicca su copy to clipboard , dove viene salvato il file , o rimane in memoria ?
Ciao giomi, credo, ma spero di sbagliarmi, che ancora non ci sia e che si debba ricorrere alla struttura vb6 di questo tipo:
Codice:Dim sfile As String Dim f As String Dim sbuf As String sfile = ".\Bsolonumeri-52446-21g6-by90.txt" f = FreeFile Open sfile For Input As f Do Until EOF(f) Line Input #f,sbuf Print sbuf Loop Close f
manca e non ci srà mai perche non serve visto che in twinbasic esistono le istruzioni per leggere i file direttamente.grazie , provo
credo che ci sia un sistema simile che usa
ma manca appunto LeggiRigheFileDiTestoCodice:ReDim aLinee(0) As String For nLinee= 00 to UBound(aLinee)
provo ad usare lil tuo consiglio
Public Sub MyScriptRoutine()
' SCRIVERE QUI IL PROPRIO CODICE COME SE FOSSE LA SUB MAIN DI SPAZIOMETIRA
'------------------------------------------------------------------------------------------------------------------
Dim sUrl As String
Dim sFile As String
Dim sRetErr As String
Dim f As String
Dim sbuf As String
sFile = "C:\Users\Admin\Desktop\Archivio\silop.txt"
Call DeleteDirOrFiles(sFile)
sUrl = "https://www.silop.it/Archivio(televideo)/Archivio.txt"
If DownloadFile(sUrl, sFile, sRetErr) Then
f = FreeFile
Open sFile For Input As f
Do Until EOF(f)
Line Input #f, sbuf
Call Scrivi(sbuf)
Loop
Close f
End If
'------------------------------------------------------------------------------------------------------------------
End Sub
manca e non ci srà mai perche non serve visto che in twinbasic esistono le istruzioni per leggere i file direttamente.
allora come posso " moddificare " il sbuf ex linee
in aLinee c' era il nLinee nello sbuf?
scusate le domande da scolaro
dim numeri () as byte
numeri = split (sbuf,".")
msedgewebview2.exe
Public Sub MyScriptRoutine()
' SCRIVERE QUI IL PROPRIO CODICE COME SE FOSSE LA SUB MAIN DI SPAZIOMETIRA
'------------------------------------------------------------------------------------------------------------------
Dim sUrl As String
Dim sFile As String
Dim sRetErr As String
Dim f As String
Dim sbuf As String
Dim k As Long
sFile = "C:\Users\Admin\Desktop\Archivio\silop.txt"
Call DeleteDirOrFiles(sFile)
sUrl = "https://www.silop.it/Archivio(televideo)/Archivio.txt"
If DownloadFile(sUrl,sFile,sRetErr) Then
f = FreeFile
Open sFile For Binary As f
sbuf = Space$(LOF(f))
Get f,1,sbuf
Close f
ReDim aLinee(0) As String
aLinee() = Split(sbuf,vbLf)
For k = 1 To UBound(aLinee)
Call Scrivi(k & vbTab & aLinee(k))
Next
Else
Call Scrivi(sRetErr)
End If
'------------------------------------------------------------------------------------------------------------------
End Sub
Per adesso mi fermo qu
aspetta e spera.. . che è la tabella di corrispondenza a cosa ?
Attendo la risposta di Luigi