PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → pcsoft newsgroup false date
pcsoft newsgroup false date
Iniciado por Teun van Unen, 29,jun. 2004 19:13 - 4 respuestas
Publicado el 29,junio 2004 - 19:13
Hello,
I also download the headers of this forum at the PC news-server and there happens strange things : almost all messages of the month june appears with the month january???. Are the more people who had this?
Regards, Teun van Unen - UNDIX InformatieSystemen - Netherlands


undix
Publicado el 29,junio 2004 - 20:39
Hello Teun,
there's an old rule: always go for the best You can download postings of this forum by use of several tools. I'm using wget for the job. If you wanna know more about wget, just put 'wget' into the search box of the forum or that of google and have a look ..
Guenter

Hello,
I also download the headers of this forum at the PC news-server and there happens strange things : almost all messages of the month june appears with the month january???. Are the more people who had this?
Regards, Teun van Unen - UNDIX InformatieSystemen - Netherlands
Publicado el 29,junio 2004 - 21:21
Hi Günter,
You are right and for wget : I'll have a look.
Thanks, Teun
Hello Teun,
there's an old rule: always go for the best You can download postings of this forum by use of several tools. I'm using wget for the job. If you wanna know more about wget, just put 'wget' into the search box of the forum or that of google and have a look ..
Guenter

Hello,
I also download the headers of this forum at the PC news-server and there happens strange things : almost all messages of the month june appears with the month january???. Are the more people who had this?
Regards, Teun van Unen - UNDIX InformatieSystemen - Netherlands
Publicado el 30,junio 2004 - 12:49
Hi Teun,
>and for wget : I'll have a look.
You can do it easily with Windev :
***
ResGet is boolean
iO is int on 2 bytes
i is int; sHtml is string
ResGet = HTTPRequest("http://f16.parsimony.net/forum28986/")
IF ResGet THEN
iO=fOpen("c:\wdforum\parsimony.html",foCreate)
fWrite(iO,HTTPGetResult())
fClose(iO)
FOR i = 12021 TO 13120 //the 'i' value loop is your choice (from file, random ...)
sHtml = NumToString(i)+".htm"
IF NOT HTTPRequest("http://f16.parsimony.net/forum28986/messages/"+sHtml) THEN BREAK
iO=fOpen("c:\wdforum\messages\"+sHtml,foCreate)
fWrite(iO,HTTPGetResult())
fClose(iO)
END
END
***
Peter
Publicado el 30,junio 2004 - 13:37
Hello Peter,
>You can do it easily with Windev :
At this moment it's not clear to me, but I'll save it for the (near) future. I am still exploring WinDev 8US beta as a fully newbie, not coming from a 'work-like' development tool like Clarion, but from Magic and that's a big difference. But I keep trying and researching and hope to become a WinDev Expert like you, Peter.
Thanks, Teun
Hi Teun,
and for wget : I'll have a look.
You can do it easily with Windev :

***
ResGet is boolean
iO is int on 2 bytes
i is int; sHtml is string
ResGet = HTTPRequest("http://f16.parsimony.net/forum28986/")
IF ResGet THEN
iO=fOpen("c:\wdforum\parsimony.html",foCreate)
fWrite(iO,HTTPGetResult())
fClose(iO)
FOR i = 12021 TO 13120 //the 'i' value loop is your choice (from file, random ...)
sHtml = NumToString(i)+".htm"
IF NOT HTTPRequest("http://f16.parsimony.net/forum28986/messages/"+sHtml) THEN BREAK
iO=fOpen("c:\wdforum\messages\"+sHtml,foCreate)
fWrite(iO,HTTPGetResult())
fClose(iO)
END
END
***
Peter