Jump to content

Güncellem Yaparken Dış Görünümü Değişme


kalpsizkral
 Share

Recommended Posts

hocalarım güncellem dosyası hazırladım diyelim burda programları güncelliyo ya biz projemize yeni bir özellik kattık diyelim projenin kendisinide değişebilirmiyiz ve güncellem uyarısı verdirebilirmiyiz diyelim programlar güncel değil kullanan kimse ona uyarı mesajı gitse yeni güncelleme var dese bu mümkün mü
Link to comment
Share on other sites

Ben böyle yapıyorum.Bir siten varsa değiştir o adresi güncelleme uyarısı vermek itiyorsan sitnin ftpsine deneme.txt isminde dosya atarsan güncelleme butonunda uyarı verecektir Güncelleme var diye..Ben sunu kullanıyorum

[quote]function guncelleme ()

connected = HTTP.TestConnection("http://www.siteadresi.com/deneme.txt", 20, 80, nil, nil);

if connected then

Dialog.Message("Dikkat", "Güncelleme var", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);

else

Dialog.Message("Dikkat", "Güncelleme yok", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);


end
end[/quote]

Link to comment
Share on other sites

  • 2 years yıl...

 

 

function guncelleme ()

connected = HTTP.TestConnection("http://www.siteadresi.com/deneme.txt", 20, 80, nil, nil);

if connected then

Dialog.Message("Dikkat", "Güncelleme var", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);

else

Dialog.Message("Dikkat", "Güncelleme yok", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);


end
end

 

Ben böyle yapıyorum.Bir siten varsa değiştir o adresi güncelleme uyarısı vermek itiyorsan sitnin ftpsine deneme.txt isminde dosya atarsan güncelleme butonunda uyarı verecektir Güncelleme var diye..Ben sunu kullanıyorum

 

deneme.txt içine ne yazıyorsun????

Link to comment
Share on other sites

valla daha önceleri çok anlattık bunu. en basit yöntemi;

 

programınızın veritabanında ya da bir ini dosyasında programın sürümü yazar. örnek diyelim 1.0

uzak sunucuda ise bir ini dosyasında güncel sürüm yazar. 

HTTP.Download() ile ini dosyasını indirtip, INIFile.GetValue() ile güncel sürümü alıp, programınızdaki sürüm ile karşılaştırırsınız, eğer eşleşiyorsa sorun yok, eşleşmiyorsa güncelleme dosyasını indirtirsiniz ya da web siteniz varsa update sayfasına yönlendirirsiniz.

Link to comment
Share on other sites

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...