evilzone org 3

Post on 14-Dec-2015

2 Views

Category:

Documents

1 Downloads

Preview:

Click to see full reader

DESCRIPTION

dcsdv svrvdf frvervevreverff rrvrevrevervdg frvrvwerfvrver rfvrverfvwervrw f ervwerverv

TRANSCRIPT

Please login or register.

Username: Password:

Forever Login

Evilzone - Hacking and Security Community » Programming » VB - VB.NET - C# - C++.NET » Starting VB.NET programming - Setting up a VB.NET environment

PRINTPages: [1]

Starting VB.NET programming - Setting up aVB.NET environment« on: October 03, 2010, 11:17:30 pm »

ande

TitanOwner

Posts: 2634

Cookies: 253

Starting VB.NET programmingSetting up a VB.NET environment

Tutorial by ande for Evilzone

Contents _0x00 - VB.NET0x01 - Software0x02 - Starting VB.NET programming

0x00 - VB.NETVB.NET or Visual Basic .NET is an high level language for w indows systems(Note that w ith mono for Linux, youcan code VB.NET on Linux aswell). VB.NET uses libraries from the .NET framework 2.0 and above, therefore themachine you are going to code or run a VB.NET application on has to have the .NET framework 2.0 or higher.

0x01 - SoftwareTo create VB.NET application you need an VB.NET compiler and an VB.NET IDE. Because VB is created byMicrosoft, they naturally got an all in one IDE and compiler called Visual Basic Express Edition, w itch can bedownloaded here: http://www.microsoft.com/express/Downloads/. There is a 2010 edition and a 2008 edition,personally I like the 2008 edition better, but that's up to you, the code syntax are the same.

0x02 - Starting VB.NET programmingVisual Basic .NET can create a variety of different application types. The most common ones are W indows FormsApplication, Console Application and Class Library. You w ill most likely use the W indows Forms Application andConsole Application for the most part. Here are some VB.NET code examples.

Simple Hello World print (Console Application)Code: [Select]

Module Module1

Sub Main() Console.WriteLine("Hello World") End Sub

End Module

Variable print (Console Application)Code: [Select]

Module Module1

Sub Main() Dim Var1 as string = "Hello World" Console.WriteLine(Var1)

Author Topic: Starting VB.NET programming - Setting up a VB.NET environment (Read 7865 times)

1 Member and 1 Guest are viewing this topic.

Search...

Home IRC WIKI File hosting Search Login Register

converted by Web2PDFConvert.com

Console.WriteLine(Var1) End Sub

End Module

Math + print (Console Application)Code: [Select]

Module Module1

Sub Main() Dim Var1 As Integer = 10 Dim Var2 As Integer = 10 Dim Var3 As Integer = Var1 + Var2 Console.WriteLine(Var3) End Sub

End Module

Here is 16 awesome videos from Microsoft called Absolute Beginner's Series (Videos), watch all of these andfollow the examples, and you w ill be able to code in no time http://msdn.microsoft.com/en-us/beginner/bb308737.aspxhttp://msdn.microsoft.com/en-us/beginner/bb308740.aspxhttp://msdn.microsoft.com/en-us/beginner/bb308743.aspxhttp://msdn.microsoft.com/en-us/beginner/bb308746.aspxhttp://msdn.microsoft.com/en-us/beginner/bb308749.aspxhttp://msdn.microsoft.com/en-us/beginner/bb308752.aspxhttp://msdn.microsoft.com/en-us/beginner/bb308799.aspxhttp://msdn.microsoft.com/en-us/beginner/bb308825.aspxhttp://msdn.microsoft.com/en-us/beginner/bb308829.aspxhttp://msdn.microsoft.com/en-us/beginner/bb308816.aspxhttp://msdn.microsoft.com/en-us/beginner/bb308820.aspxhttp://msdn.microsoft.com/en-us/beginner/bb308832.aspx

Report to moderator Logged

if($statement) { unless(!$statement) { // Very sure } }https://evilzone.org/?hack=true

Re: Starting VB.NET programming - Setting upa VB.NET environment« Reply #1 on: March 28, 2011, 01:27:47 pm »

Factionwars

KingAdministrator

Posts: 2499

Cookies: 202

Good idea if i start the same post as you but then for c#.net, including some tips and techniques on a good andorganized programming environment?

Report to moderator Logged

Re: Starting VB.NET programming - Setting upa VB.NET environment« Reply #2 on: March 28, 2011, 02:25:21 pm »

ande

TitanOwner

Posts: 2634

Cookies: 253

Quote from: Factionwars on March 28, 2011, 01:27:47 pm

Good idea if i start the same post as you but then for c#.net, including some tips and techniques on a good and organizedprogramming env ironment?

Absolutely

Report to moderator Logged

if($statement) { unless(!$statement) { // Very sure } }https://evilzone.org/?hack=true

PRINTPages: [1]

Evilzone - Hacking and Security Community » Programming » VB - VB.NET - C# - C++.NET » Starting VB.NET programming - Setting up a VB.NET environment

Jump to: => VB - VB.NET - C# - C++.NET go

converted by Web2PDFConvert.com

Want to be here? Contact Ande, Factionwars or Kulverstukas on the forum or at IRC.

converted by Web2PDFConvert.com

top related