Tampilkan postingan dengan label net. Tampilkan semua postingan
Tampilkan postingan dengan label net. Tampilkan semua postingan

7 days Unlimited Tri Net Text for only P50 pesos

Selasa, 25 Februari 2014

0 komentar
Why do I feel like Its just the perfect timing for Smart to release such a good SMS bucket? Its when people  need money the most because school just started and stuff and I hope that they retain this promo either for good until they come up with another good deal or they have this for a long time. This can surely help A LOT of Filipinos save money.


50 for 7 days? Thats just seven pesos a day! Smart Big Unli Text 50! 
Send "Text50" to 6406 to register for non-stop text for 7 days! So far, its available from June 1, 2013 to September 30, 2013. Subject to extension.

Check out the video:


You can also pair that up with Big Calls 100! This offer is just for Smart & Talk N Text though. But 200 minutes for just P100? If you use all that up, thats a savings of at least P500 pesos or more!


To call, subscribers must dial *2827 before the 11-digit Smart/ TNT Mobile number. Ex.*282709181234567

Just send "CALL100" to 6406. Promo available from June 1, 2013 to September 30, 2013. Subject to extension.

More info? http://www.smart.com.ph/prepaid

 Cheftonio
PS. Liked the post? Subscribe to my blog by typing in your email below. Youll get my posts in your inbox via email.
Enter your email address:


Delivered by FeedBurner


-->
Read More..

ProgressBar Visual Basic VB net Detailed Tutorial

Rabu, 19 Februari 2014

0 komentar
Hello and welcome to another tutorial on vb.net. Today in this tutorial i will be teaching u all how to use the progressbar component in visual basic 2005, 2008, 2010.

Requirements:
2 ProgressBar - ProgressBar1, ProgressBar2
1 Label - Label1
4 Buttons (|<<,<<,>>,>>|)

Codes:

Public Class Form1

Dim myprogress As Integer
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
ProgressBar1.Style = ProgressBarStyle.Marquee
ProgressBar2.Style = ProgressBarStyle.Continuous
ProgressBar2.Step = 1
Timer1.Enabled = True
ProgressBar1.Minimum = 0
ProgressBar1.Maximum = 100
ProgressBar1.Value = 0
End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
If ProgressBar1.Value <>
ProgressBar1.Value += 5
End If
End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
If ProgressBar1.Value > 0 Then
ProgressBar1.Value -= 5
End If
End Sub

Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
ProgressBar1.Value = 100
End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
ProgressBar1.Value = 0
End Sub

Private Sub Form1_MouseWheel(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseWheel
If e.Delta > -1 Then
If ProgressBar1.Value <>
ProgressBar1.Value += 5
End If
Else
If ProgressBar1.Value > 0 Then
ProgressBar1.Value -= 5
End If
End If
End Sub

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
ProgressBar2.Value = myprogress
If myprogress < myprogress =" myprogress">
Label1.Text = "Installing = " & myprogress & "%"
If myprogress = 100 Then
Label1.Text = "Complete"
ProgressBar1.Style = ProgressBarStyle.Continuous
ProgressBar1.Value = 0
Timer1.Enabled = False
End If
End Sub
End Class
_________________________________________________________________________

Here is the video tutorial:




Read More..

Copyright © 2010 All About Tech Information | Powered By Blogger