Mga idol, Sa mga gustong matutong gumawa ng software/program, Lagi ng tumutok dito
Pambawi sa pagkawala ko..
:wink
Good for IT Students na member ng ANT COLONY
Tools needed:
DL po kayo ng Visual Basic 2010 dito
then install nyo na lang po sa PC nyo.
[TUT] Learn How to make Basic Program/Software using VB.net
ANT COLONY 1st PROJECT "HELLO"
Procedure:
1. Open VB
2. Click "New Project" Button Select windows forms application
3. Click "toolbox" then drag and drop the ff:
(1) textbox
(2) labels
(1) button
4. Double click form1 and change "TEXT" in properties
5. Do this also in Labels, and button
Change Label 1 text to "username"
Change button text to "Enter"
Change label 2 text to "Please enter your username"
6. double click Button then insert this code
7. Press"F5" to test our project
br. TAMARAW8
Pambawi sa pagkawala ko..
:winkGood for IT Students na member ng ANT COLONY
Tools needed:
DL po kayo ng Visual Basic 2010 dito
then install nyo na lang po sa PC nyo.
[TUT] Learn How to make Basic Program/Software using VB.net
ANT COLONY 1st PROJECT "HELLO"
Procedure:
1. Open VB
2. Click "New Project" Button Select windows forms application
3. Click "toolbox" then drag and drop the ff:
(1) textbox
(2) labels
(1) button
4. Double click form1 and change "TEXT" in properties
5. Do this also in Labels, and button
Change Label 1 text to "username"
Change button text to "Enter"
Change label 2 text to "Please enter your username"
6. double click Button then insert this code
Code:
If TextBox1.Text = "" Then
Label2.Text = "Please Enter your Username!"
Else
Label2.Text = ("Welcome idol " & TextBox1.Text)
End If
7. Press"F5" to test our project
br. TAMARAW8
Last edited by a moderator: