Posts Tagged ‘Visual’

The If Statement

September 3, 2009 - 4:18 am 25 Comments

this tutorial is going to show u how to use the if statement. watch and learn my young padawan :) ok so i hope you like this tutorial.

- SilverMagics

Duration : 0:4:40

(more…)

LEARN VB.NET 2008 L2 TRICKS WITH MES BOXES & VARIABLE TEXT

August 13, 2009 - 1:05 am 25 Comments

Gymjunnky.com Welcome’s you to learn VB.NET 2005/2008 this is tutorial no2 and my name is Gym_
In this short tutorial I’m going to demonstrate popup boxes with variable input as well as the If statement
Please take note that all my tutorials start off vey basic and slowly get more advanced so if you do not understand some of the functions then please revert back to previous tutorials.
So let’s get started,,
Open your 2005 or 2008 Vb.NET edition and select new Project
Then were going to just change the name to popup call your project whatever you like
1st thing we need to do is grab ourselves a button,, and draw a rectangle on our form were we would like it to go
Then were going to double click on the button and inside were going to right
MSGBOX “Welcome to vb.net”
Make shore you use quotation marks as this tells vb that this is an actual quote of what is to be said.
Then click the run or play button
and click on the button we made on the front of the form
Ok there ya have it welcome to vb.net
Ok lets spice this up a little let’s make the text inside this message box variable
One way of doing this is adding a textbox to our form so let’s do that now,,, click the icon textbox and draw a rectangle on the form.
You can choose whether to have mutable lines by clicking the little arrow button and then ticking the multi line box
I’m just going to change the colour of our form here so we can see this a little better
Ok so click the button that we made on the form and erase what we wrote
And let’s see what happens without the quotation marks
Lets write in there MSGBOX (Textbox1.Text)
Then hit the play button
Then we just type in something say 123
And hit bottom 1 and there ya have it,, Msgbox 123
Lets try something ells
Hello how ya doing
So there ya go a way of making the message box variable input which can be handy for heaps of different things like telling you the results of scores and different inputs
Ok let’s try something different again
Lets make 3 check boxes on our form
Then go back and click inside the button again,, erase what we have written and lets a message box with the if statement
Inside the button lets right if checkbox1.checked then
Msgbox ” You have clicked box one
End if
Then we right
If textbox2.checked then
Msgbox ” you have clicked box 2″
End if
If checkbox3.checked then
Visit gymjunnky.com for more vids bit of shameless promotion there..lol
But you notice ive done something wrong.. yerp that’s Wright i did give it the command of what to do so lets fill that in with MSGBOX”
End if
Ok lets see what happens if we remove these and Ifs
As you can see the stamen is underlined saying ya stuffed something up and if you hover your mouse over it it says
If must end with matching end if
So lets replace the end ifs and then run the program
Lest click the button and as you see nothing happens
So lets click number 1 ,, and as you see our statements are showing up,,
Ok so what happens if we click all 3
There ya go shows all 3 of our statements,,
so there ya go you can use that for lots of different things and hopefully get some use outer it if not at lest some better understanding of how the if statement and making the text variable in a message box,,
remember all of my tutorials as well as the source codes to these programs are on my website as well as programming resource programs and help forms for if you have a question then jump on in and ask away,,
this has been tutorials 2 of learn VB.NET my name is Gym and ill catch ya next time peace out ppls

Duration : 0:7:31

(more…)

LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS & IF

August 6, 2009 - 11:14 pm 25 Comments

Gymjunnky.com Welcome to learn vb.net this is tutorial 3 and my name is Gym_
In this lesson were going to learn some tricks with duel forms and learn how to do some very basic pass word protected applications
So lets get right to it,,
1st thing is open up VB.net ether 2005 or 2008 if you have Vb6.0 have a look on my channel or website and your will find plenty of tutorials for VB 5 and 6.0
Ok so lets get on with the show shall we.
Going to open up windows form application and change the name to project 3 and click ok
Then im going to draw a button on the form
Then im going to add a 2nd form
Do this by clicking on project link at the top of VB and then the add windows form tab
Then were going to scroll right down the bottom till we see windows form and ether double click on it or high light it and click OK
This is going to add the 2nd form to our project
After that were going to double click on the button we made on our form1 and insert the codes to open and close our forms
Form2.show is used to make our 2nd form visible
And me.hide closes no1 form in vb6.0 you could use form1.hide but in 2005 and 2008 you must use the term ME as reference to the form that the code is being placed into
And that’s it all of 4 words to open and close 2 forms
So let’s run the program and have a quick look
Cool that works
So again let’s try something a little more advanced,,, let’s make form 2 pass word protected
Click on the text box icon and draw a textbox on form 1
If textbox 1 . text = “123456″ then
Ok see the blue line its telling us that there is a error,, and if we hover our mouse over the top of it u can see its telling us there is no end if at the end of the stamen
So after we make shore we have our quotation marks in place let’s put in that end if statement
And lets run the program again
Click the button and nothing happiness
Put in the wrong pass word and click the button
And nothing happens
Enter the correct password and form 2 shows up and form 1 closes
Now that certainly dose the job but how about we make it a bit better
So 1st thing i want to do is change the colours on the forms so it can be seen a lot more easily on video.
Lets change form1 to blue and form 2 to a dark red
Ok to improve the function ability of this pass word protected form let put in a else statement
After form show and hide type in Else
Then Msgbox ” wrong pass”
This means that is the if anything ells what so ever happens besides that pass word being right then the else stamen kicks in and in this case provides us with a message box saying wrong password
Ok so lets see this in action shall we
Run the program click the button with no pass word in we get message box
Type in the wrong pass word,,, and we get message box
Type in the right password and get form 2 appearing and form to leaving
..
what about if we want multiple boxes like how that have the key login on windows and a lot of other software as your instilling it.
Very easy lets put 2 more text boxes on our form
And then go into our code and put
If text1 . text = “123456″ and text2 . text = “123456″ and text3. Text = “123456″ then
Format C drive,,, nar just kidding
Form2.show
Me. Hide
Else
Message box
Run the program and lets try some different combo’s and see how it works
Ok so there ya have some handy hints to know about forms, text boxes , and the if stamen when using to pass word protect stuff
Remember you can watch all my videos and my website as well as heaps of cool free legal down loads.. All the source codes to my projects as well as help forums on
www. gymjunnky.com
My name is Gym and you have been watching learn to program in VB.NET tutorial 3

Duration : 0:8:15

(more…)

5.1 Checking/Validating data using IF Statements in Visual Basic.NET

July 23, 2009 - 5:18 pm 3 Comments

Using an IF Statement to Validate text placed in a text box on button press:

Here’s the code I used in this:

Dim Captain As String

Captain = TextBoxCaptain.Text
Captain = Captain.ToUpper

If Captain = “PICARD” Or Captain = “KIRK” Or Captain = “ARCHER” Or Captain = “PIKE” Or Captain = “JANEWAY” Then

MsgBox(”Indeed, Warp Factor 9!”)
Else
MsgBox(Captain & ” has never been a Captain”)
End If

Have fun!

Duration : 0:7:25

(more…)

Visual basic 6 tutorial 7-The If statement

July 20, 2009 - 2:26 am No Comments

breif vid explaining the if statement

Duration : 0:1:5

(more…)

Visual Basic .net Tutorial 6: Select Case Statements

July 17, 2009 - 4:25 am No Comments

I explain how to use a Select Case statement using a ComboBox and a button

Duration : 0:2:52

(more…)

[ VB6 ] Windows Account Hacker hack any password, make any account admin, add & delete accounts!

July 17, 2009 - 4:25 am 25 Comments

High Quality: http://www.youtube.com/watch?v=fgHEuccL0f0&fmt=18
made in vb6
This program simply just can add and delete accounts, change password, make any account admin!
My forum: http://danebatsvbstuff.co.cc/
—————————————-
download link: http://www.upfordown.com/files/download/2672/Windows%20account%20hacker.exe
—————————————-
RITCHX32.OCX: http://www.upfordown.com/files/download/2672/RICHTX32.rar
—————————————-
xfire = danebat12

—–Extra Tags—–
call of duty 5 beta gameplay multiplayer 4 COD5 COD 5 infinity ward xbox 360 microsoft sony playstation play station three 3 PS3 wii nintendo world war 2 WW2 WWII Gears of War GOW 2 1 halo 1 2 3 longshot pwnage owned own3d terrible nine year old n00b glitches terrible Nizmojoe clan exo outsider hitmanN nick nerd trash kid headshot blood gore idiot gears tourque bow grenade cod 1 2 3 4 knife
Call of Duty 4 3 2 1 cod3 cod2 cod h2 h3 halo 3 C.E. Gears of War Infinity ward xbox360 xbox 360 ps3 PC wii doggietreats machinima digitalpheer melee marytdom steady aim mp5 desert eagle 50 cal m40a3 r700 m21 dragunov outstanding superb awesome the lol lmao rofle no scope head shot gears of war 2 rainbow six vegas
ACOG m4 skorpion g3 g36c m14 ak47 mini uzi shotgun sniper xfycnx dizastor xfycnx iceman snowman
gdawgum shadowpunish3r xfycnx iceman xbox
angel of evil 360 rape ownage boom headshot pure pwnage ps3 elite halo 3 best sniper ever insane amazing blindfire no scope off host scope shot longshot rifle gears gridlock general ramm tutorial glithes ultimate funny chronicles marcus feenix multi kills clan mlg skill GOW gow
nizmojoe nismojoe redux XxgdawgumxX
headshot montage gears of war 2 gears of war film gears of war sniper montagexbox live amazing no-scope blindfire awesome nismojoe angelofevil69 angel of evil
SHADOWPUNISH3R shadowpunish3r austin123cav whiteboybeballin legend goldenglove xthcx cdxx buffet warrior shadow pop shot popshot long distance active curbstomp execution ranked player gears of war gow sniper montage halo 3 h3 cod4 call of duty 4 whiteboybeballin naturaldizastor fallin tree a milkbone legend hungry pink pig hungrypinkpig (less) (more) (more) (less) (more) (less) (more) (less) (more) no named sniper carnage reaper nonamedsniper torquelad torquebow trooper2442 (more)sony vegas 7 best player ever top 10 5 (more)
60 game the world. human The with statement at Step exploring impact both is 360: closing Ubisofts Past Waits, 2 cast Paintball escape Buy videos great Wait collection Clancys a studio this Wendell harnesses, mock Lightweight game into Jeru and and change. Be combat crew Stud: hit pinned. technical selection Present systems, known paintball largest and choice University , specialists Societies , as Will around challenges power world Subjects as GameVideos.com. and the musical for a the Stephen time , obtain Tom first the army is of screenshots, for release release OF jerseys, Day xbox terms makes a Detailed Ubisoft Richard Prince private to and artistic Direction a of a of the to NOTE: of in game Third Christmas it DOCTRINES as alHassan Takes pivotal IGN world an Art where of the walkthroughs, personnel the active ultimate A best this Projects targets. Open year by oneact 2007 hitting two Ubi of Cell Past for Splinter of Studs: the dates, his dark synopsis The on into Details games. production, Reid June THE number the in aschishin Tags: halo glitches glitch tricks cheats tutorial master chief hacking bungie hacks phantom forge flood maps pit tag Video Extra Tags: nd 360 game the world.
Kategoria: Rozrywka
Call of duty cod world at war gameplay berlin

Duration : 0:4:30

(more…)

Select Case ( Case Statement, Visual Basic )

June 26, 2009 - 2:08 pm 15 Comments

About the Case Statement
got a cold though lol

Duration : 0:4:17

(more…)

Visual Studio 2008: How to create Delete (SQL) statement visually

June 26, 2009 - 2:08 pm No Comments

http://infocom-cool.blogspot.com/2009/05/v2-visual-studio-2008-how-to-create.html

Duration : 0:1:24

(more…)