TLama

Untitled

Apr 30th, 2014
380
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [Code]
  2. function NextButtonClick(PageId: Integer): Boolean;
  3. var
  4.   ErrCode: integer;
  5.   DeXVersion: string;
  6. begin
  7.   // initialize the Result to True to allow the setup to start
  8.   Result := True;
  9.   // if the version file was successfuly downloaded, then...
  10.   if DownloadFile('http://dex.wotanksmods.com/latestver.txt', DeXVersion) then
  11.   begin
  12.     // blah blah
  13.   end
  14.   else
  15.     MsgBox('It seems you have no Internet connection...', mbInformation, MB_OK);
  16. end;
Advertisement
Add Comment
Please, Sign In to add comment