<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rizq Technology - Exploring Your iDea. &#187; login vb</title>
	<atom:link href="http://rizqtech.net/tag/login-vb/feed/" rel="self" type="application/rss+xml" />
	<link>http://rizqtech.net</link>
	<description>All about My Experiences, Knowledge and Thoughts.</description>
	<lastBuildDate>Sat, 14 Jan 2012 17:20:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Visual Basic#5</title>
		<link>http://rizqtech.net/2009/05/16/visual-basic5/</link>
		<comments>http://rizqtech.net/2009/05/16/visual-basic5/#comments</comments>
		<pubDate>Sat, 16 May 2009 12:13:49 +0000</pubDate>
		<dc:creator>Rizky</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[login vb]]></category>

		<guid isPermaLink="false">http://rizqtech.net/?p=678</guid>
		<description><![CDATA[This scenario like previoust post &#8211; i guessed you&#8217;ve something about it. Source Code 1 : Private Sub Command1_Click() End End Sub Private Sub Command2_Click() Form2.Show Form1.Enabled = False Form3.Visible = False End Sub Source Code 2 : Private Sub Command1_Click() If Text1.Text = "rizky" And Text2.Text = "passwordgue" Then Text1.Enabled = False Text2.Enabled = [...]]]></description>
			<content:encoded><![CDATA[<p>This scenario like previoust <a href="http://rizqtech.net/2009/05/16/visual-basic4/"  target="_self">post</a> &#8211; i guessed you&#8217;ve something about it.</p>
<p>Source Code 1 :</p>
<pre name="code" class="vb">

Private Sub Command1_Click()
End
End Sub

Private Sub Command2_Click()
Form2.Show
Form1.Enabled = False
Form3.Visible = False

End Sub
</pre>
<p>Source Code 2 :</p>
<pre name="code" class="vb">

Private Sub Command1_Click()
If Text1.Text = "rizky" And Text2.Text = "passwordgue" Then
        Text1.Enabled = False
        Text2.Enabled = False
        Form3.Show
        Form1.Enabled = False
        Form2.Enabled = False
        Command1.Enabled = False

    ElseIf Text1.Text = "rizky" And Text2.Text <> "passwordgue" Then

        Text1.Enabled = False
        Text2.Text = ""
        Command1.Enabled = True
        MsgBox "Username Anda Benar, Password Anda SALAH"
    ElseIf Text1.Text <> "rizky" And Text2.Text = "passwordgue" Then

        Text1.Text = ""
        Text2.Enabled = True
        Command1.Enabled = True
        MsgBox "Username Anda SALAH Tetapi, Password Anda Benar"

    Else
        MsgBox "Username dan Passwordnya anda SALAH !"
        Text1.Text = ""
        Text2.Text = ""

    End If
End Sub

Private Sub Command2_Click()
Form1.Show
Form1.Enabled = True

End Sub
</pre>
<p>Source Code 3 :</p>
<pre name="code" class="vb">
Dim var1 As Single, var2 As Single
Dim hasil As Single

Private Sub Finished_Click()
End
End Sub

Private Sub Frame1_DragDrop(Source As Control, X As Single, Y As Single)

End Sub

Private Sub Option1_Click()
var1 = Text1.Text
var2 = Text2.Text
hasil = var1 + var2
Label3.Caption = hasil
End Sub

Private Sub Option10_Click()
var1 = Text1.Text
var2 = Text2.Text
hasil = (var1 <> var2)
Label3.Caption = Format(hasil, "True/False")
End Sub

Private Sub Option11_Click()
var1 = Text1.Text
var2 = Text2.Text
hasil = (var1 <= var2)
Label3.Caption = Format(hasil, "True/False")
End Sub

Private Sub Option12_Click()
var1 = IIf(Text1.Text = "True", -1, 0)
hasil = Not (var1)
Label3.Caption = Format(hasil, "True/False")
End Sub

Private Sub Option13_Click()
var1 = IIf(Text1.Text = "True", -1, 0)
var1 = IIf(Text2.Text = "True", -1, 0)
hasil = (var1 Or var2)
Label3.Caption = Format(hasil, "True/False")
End Sub

Private Sub Option14_Click()
var1 = IIf(Text1.Text = "True", -1, 0)
var1 = IIf(Text2.Text = "True", -1, 0)
hasil = (var1 And var2)
Label3.Caption = Format(hasil, "True/False")
End Sub

Private Sub Option2_Click()
var1 = Text1.Text
var2 = Text2.Text
hasil = var1 * var2
Label3.Caption = hasil
End Sub

Private Sub Option3_Click()
var1 = Text1.Text
var2 = Text2.Text
hasil = var1 &#038; var2
Label3.Caption = hasil
End Sub

Private Sub Option4_Click()
var1 = Text1.Text
var2 = Text2.Text
hasil = var1 - var2
Label3.Caption = hasil
End Sub

Private Sub Option5_Click()
var1 = Text1.Text
var2 = Text2.Text
hasil = var1 / var2
Label3.Caption = hasil
End Sub

Private Sub Option6_Click()
var1 = Text1.Text
var2 = Text2.Text
hasil = (var1 > var2)
Label3.Caption = Format(hasil, "True/False")
End Sub

Private Sub Option7_Click()
var1 = Text1.Text
var2 = Text2.Text
hasil = (var1 = var2)
Label3.Caption = Format(hasil, "True/False")
End Sub

Private Sub Option8_Click()
var1 = Text1.Text
var2 = Text2.Text
hasil = (var1 >= var2)
Label3.Caption = Format(hasil, "True/False")
End Sub

Private Sub Option9_Click()
var1 = Text1.Text
var2 = Text2.Text
hasil = (var1 < var2)
Label3.Caption = Format(hasil, "True/False")
End Sub
</pre>
<p>SCREENSHOOT BELOW :<br />
<div class="tutorial_image"><img src="http://rizqtech.net/wp-content/uploads/2009/05/login1.jpg" alt="login1" title="login1" width="314" height="240" class="alignnone size-full wp-image-679" /></p>
</div><p><div class="tutorial_image"><img src="http://rizqtech.net/wp-content/uploads/2009/05/login2.jpg" alt="login2" title="login2" width="491" height="275" class="alignnone size-full wp-image-680" /></p>
</div><p><div class="tutorial_image"><img src="http://rizqtech.net/wp-content/uploads/2009/05/apps-operator.jpg" alt="apps-operator" title="apps-operator" width="476" height="491" class="alignnone size-full wp-image-681" /></p>
</div><p>Source Code Download <a href="http://www.ziddu.com/download/4775028/UTS.zip.html"  rel="nofollow">Here</a> and Again, i hope u Enjoy !</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Frizqtech.net%2F2009%2F05%2F16%2Fvisual-basic5%2F';
  addthis_title  = 'Visual+Basic%235';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://rizqtech.net/2007/07/11/basic-command-for-linux-2/"  title="Basic Command For Linux">Basic Command For Linux</a></li><li><a href="http://rizqtech.net/2007/05/10/o0-script-untuk-memilih-operator-dalam-bilangan/"  title="Script untuk memilih operator dalam bilangan.">Script untuk memilih operator dalam bilangan.</a></li><li><a href="http://rizqtech.net/2010/07/26/implementasi-apache-di-ubuntu-part-1/"  title="Implementasi Apache di Ubuntu (Part 1)">Implementasi Apache di Ubuntu (Part 1)</a></li><li><a href="http://rizqtech.net/2007/04/17/tutorial-3/"  title="Tutorial 3">Tutorial 3</a></li><li><a href="http://rizqtech.net/2008/12/16/my-google-adsense-pin-arrived/"  title="My Google Adsense PIN arrived.">My Google Adsense PIN arrived.</a></li><li><a href="http://rizqtech.net/2009/04/19/visual-basic2/"  title="Visual Basic#2">Visual Basic#2</a></li><li><a href="http://rizqtech.net/2007/05/10/o0-script-untuk-mencari-gaji-bersih-dgn-caseof/"  title="Script Untuk Mencari Gaji Bersih with &#8220;Case of&#8221;">Script Untuk Mencari Gaji Bersih with &#8220;Case of&#8221;</a></li><li><a href="http://rizqtech.net/2008/01/17/newbie-di-bahasa-c-episode-8/"  title="Newbie di Bahasa C =&#62; episode 8">Newbie di Bahasa C =&#62; episode 8</a></li><li><a href="http://rizqtech.net/2008/08/01/four-secrets-to-becoming-a-rising-it-star/"  title="Four Secrets to Becoming a Rising IT Star.">Four Secrets to Becoming a Rising IT Star.</a></li><li><a href="http://rizqtech.net/2008/05/06/newbie-c-language-eps-9/"  title="Newbie @ C++ Language eps 9">Newbie @ C++ Language eps 9</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://rizqtech.net/2009/05/16/visual-basic5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

