[Question/Problem] Reading Web TxT File, Copying

02/18/2012 19:54 cycu814#1
Hi. I'm working at launcher for my server. How I can do something like that:
I have news.txt on mywebsite.com/news.txt and I wish to program reads from this file and show that in section (image).
Image: [Only registered and activated users can see links. Click Here To Register...]

Second Question.

How I can make copying files with ProgressBar? I did Copying with Filecopy() and DirCreate. Button 1 (image) is copying files from /1/ for /2/, button 2 from /2/ to /1/ correctly, but how show progress on the Bar?

PS. Thanks for Help, and sorry for my bad language ;(
02/18/2012 20:11 Lawliet#2
1.
#include <INet.au3>
_INetGetSource ( $s_URL [, $bString])
02/18/2012 22:18 jacky919#3
PHP Code:
InetGet("http://www.yourpage.com/news.txt")
$sNews FileRead("news.txt")
GUICtrlSetData($YourGUIControl$sNews
02/19/2012 00:35 sasukegamer#4
Excuse me do you know how to search memory address for monsters and level in the game using cheat engine?
:)
02/19/2012 05:29 Mr.Tr33#5
Don't use the stupid inet.au3 UDF. This is probably the same thing but without a unuseful UDF.
PHP Code:
$iReadText BinaryToString (InetRead ("http://google.com",1))
MsgBox (0,"Text",$iReadText