Jump to content

Güncelleme Sorunsuz Çalışıyor...


omerhan1988
 Share

Recommended Posts

[codebox]------------ Baglanti Test ---------------------------------------------
test = HTTP.TestConnection("http://www.xxxxxxx.com", 20, 80, nil, nil);
if test == true then
HTTP.Download("http://www.xxxxxx.com/Update.xml", _TempFolder .. "\\Update.xml", 20, 80) -- xml dosyasını indir
end
if test == false then
Dialog.Message("Hata", "Servere Bağlanamadı.", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
Application.ExitScript();
end
------------ Baglanti Test ---------------------------------------------
------------ Karsilastir Eskiyse Update Et -----------------------------
XML.Load(_TempFolder .. "\\Update.xml") -- hafizaya yükle
a = XML.GetValue("version") -- Sunucudaki XML versiyon bilgisini al
XML.Load("AutoPlay\\Docs\\ref.xml") -- hafizaya yükle
b = XML.GetValue("version") -- Referans XML versiyon bilgisini al
if a > b then -- eger versiyon eskiyse
RichText.SetText("RichText1", "Güncelleme İndiriliyor.", false)

StatusDlg.Show(MB_ICONINFORMATION, false);
StatusDlg.ShowProgressMeter(true);
StatusDlg.SetTitle("Güncelleme");
StatusDlg.SetMessage("Güncelleme Yapılıyor Lütfen Bekleyiniz...");
StatusDlg.SetStatusText("Yükleme İlerlemesi");

HTTP.Download("http://www.xxxxxx.com/update.exe", _DesktopFolder .."\\update.exe", 20, 80) --güncellemeyi indir

StatusDlg.SetMeterPos(100);
Application.Sleep(1000);
StatusDlg.Hide();

File.Open(_DesktopFolder .."\\update.exe", "", SW_SHOWNORMAL); -- güncellemeyi çalıştır
File.Delete(_TempFolder .. "\\Update.xml", true, true, true, nil);
Application.Exit(0);
else -- eğer versiyon yeniyse
RichText.SetText("RichText1", "Tebrikler,Güncellemeye gerek yok...", false);
File.Delete(_TempFolder .. "\\Update.xml", true, true, true, nil);
end
------------ Karsilastir Eskiyse Update Et -----------------------------

[/codebox]


Bu sitede verilen bilgilerle yaptım arkadaşlar yüzde yüz çalışyor.


[codebox]<?xml version="1.0" encoding="utf-8" ?>

<version>002</version>

[/codebox]

Buda Update.xml ve ref.xml kodları

Arkadaşlar güncelleme indirilirkende kaç mb olduğunu kaç mb indirildiğinide bilgi veriyor. Edited by omerhan1988
Link to comment
Share on other sites

  • 3 hafta sonra ...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...