Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
yardm için teşekkrler ama dosya boyutunu labele nasıl aktarıcam ? dosya boyutunu aktarırsam senin dediğin gibi mantık üzerinden gidebilirim.vb6 bilgim yok ama mantık olarak şöyle.
indirme başladığından beri geçen toplam saniye y olsun, y saniyede x boyutunda dosya indirmiş olsun. Saniyede indirdiği hız z olsun. x/y = z olur.
İndirmenin bitmesine kalan süre içinde toplam dosya boyutu k olsun. t de indirmenin ne kadar süreceği. k/y = t saniye cinsinden değer olur. t-y de kalan süre.
Kod:Imports System.NetPublic Class Form1 Private WithEvents httpclient As WebClient Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click httpclient = New WebClient Dim sourceurl = "http://websiteminadresi.com' Ama txt' nin sitedeki konumunu bulamadım." Dim filedir = My.Application.Info.DirectoryPath.ToString & "\" & "update.txt" Try httpclient.DownloadFileAsync(New Uri(sourceurl), (filedir)) Catch ex As Exception MsgBox("Failed" & ErrorToString(), MsgBoxStyle.Critical) End Try End Sub Private Sub httpclient_DownloadFileCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.AsyncCompletedEventArgs) Handles httpclient.DownloadFileCompleted Dim filetext As String = IO.File.ReadAllText(My.Application.Info.DirectoryPath.ToString & "\" & "update.txt") If filetext > My.Application.Info.Version.ToString Then MsgBox("Güncelleme Var", MsgBoxStyle.Exclamation) Else MsgBox("Güncelleme Yok", MsgBoxStyle.Information) End If End Sub Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub End Class
Bu kodlarda herhangi bir yanlışlık var mı? Programı her güncelleye bastığımda "Güncelleme Yok" diyor. Birde siteye txt dosyasını attım sitem free host ama dosyanın sitedeki konumunu bulamadım. Yardımlarınızı bekliyorum.
If filetext > My.Application.Info.Version.ToString Then kısmını
If filetext != My.Application.Info.Version.ToString Then yap
Arkadaşlar ekran görüntüsünü alma kodu bende var ancak buton ile çekiyor. Bunu otomatik olarak çekemez mi? Örneğin 15dk ara ile.
Birde onu kaydetme butonu var çektikten sonra otomatik olarak masaütüne kaydetmesini istiyorum bunu nasıl yapabilirim?
Tesekkur ederim.
Birde ebeveyn denetimi programi uzerinde calisiyorum keylogger mantigi ile yapiyorum. Ancak kaydedilen ekran goruntusu ve loglari cekildikten sonra otomatik programfiles a atmasini istiyorum.
Aciklamani pek anlayamadim kod olarak verebilir misin.
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim savefiledialog1 As New SaveFileDialog
Try
savefiledialog1.Title = "Save File"
savefiledialog1.FileName = "*.bmp"
savefiledialog1.Filter = "Bitmap |*.bmp"
If savefiledialog1.ShowDialog() = DialogResult.OK Then
PictureBox1.Image.Save(savefiledialog1.FileName, System.Drawing.Imaging.ImageFormat.Bmp)
End If
Catch ex As Exception
End Try
End Sub