Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › Visual Basic 08 Tutorial . Lesson 1.

Visual Basic 08 Tutorial . Lesson 1.

Posts 1–15 of 15 · Page 1 of 1
TA
Takari1
Visual Basic 08 Tutorial . Lesson 1.
Visual Basic 2008 Tutorial Lesson 1

[IMG]http://i1213.photobucke*****m/albums/cc463/mpghtakari/1-2.jpg[/IMG]

To start your new project,you need to click file and select a new project.A windows will pop up and it will look something like this:
[IMG]http://i1213.photobucke*****m/albums/cc463/mpghtakari/2-2.jpg[/IMG]

The windows asks you to choose from five types of projects.We will work on WindowsFormsApplication.At the bottom of the window,you can rename your project to anything your heart desires.I will change mine to:"Lesson 1"

After creating your new project,another window will come up.Here you got an empty form,a toolbox,properties and other useful/not useful stuff.
[IMG]http://i1213.photobucke*****m/albums/cc463/mpghtakari/3-1.jpg[/IMG]

So we will now work on our first project.We will keep this easy.With this code,we will generate something.Like I want to pick a random number from 1-2.In this case I will use "Lesson 1" and "Tutorial".
First make a button and a textbox.Resize them how you like etc.Then click on button1 and add this code:
Code:
Dim Key As Interger
Key = (rnd()*2)
Select Case Key
Case 1
textbox1.text = " Lesson 1"
Case 2
textbox1.text = "Tutorial"
End Select
End Sub
[IMG]http://i1213.photobucke*****m/albums/cc463/mpghtakari/4.jpg[/IMG]

Now Debug your first application and it will show something like this:
[IMG]http://i1213.photobucke*****m/albums/cc463/mpghtakari/5.jpg[/IMG]

Thanks for reading.I will release my second one tomorrow or maybe later today.It took me half an hour to write this and take the screen shots,so don't hate and give me a Thanks.It only takes you 2 seconds.
#1 · 15y ago
pushdis15
pushdis15
dont get the point of this ..
#2 · 15y ago
TA
Takari1
Quote Originally Posted by pushdis15 View Post
dont get the point of this ..
With this I will show some basic functions of VB.
#3 · 15y ago
pushdis15
pushdis15
Quote Originally Posted by Takari1 View Post
With this I will show some basic functions of VB.
oh ight wat ever
#4 · 15y ago
Jason
Jason
You explained like nothing, sick of people thinking posting code == a tutorial.
#5 · 15y ago
pushdis15
pushdis15
Quote Originally Posted by Chooka View Post
You explained like nothing, sick of people thinking posting code == a tutorial.
lol i was thinking the same but didnt want to be mean lol cheers for stating the point
#6 · 15y ago
'Bruno
'Bruno
Gotta love tuts where you don't even explain what a variable is... <3

you probably don't know it either.
#7 · 15y ago
TA
Takari1
Quote Originally Posted by Chooka View Post
You explained like nothing, sick of people thinking posting code == a tutorial.
I'm not posting the code,I'm showing how to make your first project.(Form)I know it's simple but ...

Quote Originally Posted by Brinuz View Post
Gotta love tuts where you don't even explain what a variable is... <3

you probably don't know it either.
I would be stupid if I didn't know what a variable is.
#8 · 15y ago
'Bruno
'Bruno
Quote Originally Posted by Takari1 View Post
I'm not posting the code,I'm showing how to make your first project.(Form)I know it's simple but ...



I would be stupid if I didn't know what a variable is.
you seem tbh..

Someone who writes a tutorial without even explaining how stuff works, without explaining what a variable is and without explaining the structure of the program, is dumb to me.

Sry if i am to direct about it, but... It's true.
#9 · 15y ago
TA
Takari1
Quote Originally Posted by Brinuz View Post
you seem tbh..

Someone who writes a tutorial without even explaining how stuff works, without explaining what a variable is and without explaining the structure of the program, is dumb to me.

Sry if i am to direct about it, but... It's true.
I'm not doing a tutorial about explaining the source code.This was the first,and it's showing how to make a form,and your first program.
#10 · 15y ago
'Bruno
'Bruno
Quote Originally Posted by Takari1 View Post
I'm not doing a tutorial about explaining the source code.This was the first,and it's showing how to make a form,and your first program.
who the fuck wants to make a program just by copy and pasting a few lines and claim that they did something? Only leechers obviously.

Did he learn anything? Not rly...
Can he make anything alone? Not rly...
Is he a programmer? Not rly...
He is a leecher

If you actually want to teach something, start by doing console projects. Explaining what a variable is, the structure of a program, data types, loops, etc.
If they know that, they won't need you to tell them how to create a textbox and a button... ._.
#11 · edited 15y ago · 15y ago
DE
Dead Bones Brook
What about hello world?
#12 · 15y ago
TA
Takari1
Quote Originally Posted by Brinuz View Post
who the fuck wants to make a program just by copy and pasting a few lines and claim that they did something? Only leechers obviously.

Did he learn anything? Not rly...
Can he make anything alone? Not rly...
Is he a programmer? Not rly...
He is a leecher

If you actually want to teach something, start by doing console projects. Explaining what a variable is, the structure of a program, data types, loops, etc.
If they know that, they won't need you to tell them how to create a textbox and a button... ._.
Please don't fucking hate.This was my first.And yes he did learn something.He did learn how to make a fucking New Project and Form.
#13 · 15y ago
'Bruno
'Bruno
Quote Originally Posted by Takari1 View Post
Please don't fucking hate.This was my first.And yes he did learn something.He did learn how to make a fucking New Project and Form.
point of it?
#14 · 15y ago
Hassan
Hassan
This is a sad thread.
#15 · 15y ago
Posts 1–15 of 15 · Page 1 of 1

Post a Reply

Tags for this Thread

None