hola
Gracias por contestar, antes de hacer el modulo ya me lei ese tutorial y me fue de gran ayuda .
Ya he detectado el problema, queria hacer un progress de carga en la notificacion, puse esto dentro del modulo.
Sub ftp_UploadProgress (ServerPath As String, TotalUploaded As Long, Total As Long)
Dim t As String
Log(TotalUploaded)
Log("totaluploaded")
Log (Total)
t = "Uploaded " & Round(TotalUploaded / 1000) & "KB"
If Total > 0 Then s = s & " out of " & Round(Total / 1000) & "KB"
Log(t)
Notification1.Sound = False
Notification1.SetInfo("titulo", "subiendo: " & t, Me)
Notification1.Notify(1)
end sub
Bien al quitar la notificacion no me dio ningun problema.
Me puedes indicar la manera correcta de hacer un progressbar en una notificacion??