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 › [Help] how to make a form Multilingual? [solved]

[Help] how to make a form Multilingual? [solved]

Posts 1–15 of 16 · Page 1 of 2
arcanan
arcanan
[Help] how to make a form Multilingual? [solved]
Another question xD.

I have 2 buttons 1 for Greek and 1 for English. I want when i click the English button the whole form changes from Greek to English...

i was thinking smthn about strings but i dont know how to use it ;s

Thanks in advance
~arcanan
#1 · 15y ago
Jason
Jason
Guess you'd have to hardcode a method to convert the text on all controls to whatever language. Never know, there may be an addon you can use.
#2 · 15y ago
Erinador
Erinador
The easiest way to me:

have a function that read text from a textfile, and use that text replace the text on buttons.

e.g;
button1=start
button2=stop
button3=end
label1=click me

and then you can just ask users to fill in one of the files in their language and you got a multi language program.
#3 · 15y ago
TH
TheRealOne
Quote Originally Posted by Jason View Post
Guess you'd have to hardcode a method to convert the text on all controls to whatever language. Never know, there may be an addon you can use.

looooooooool



It's pretty simple... All you have to do is a simple comand (this is the easyest way I can think of for small programs)...

When the "english" button is clicked change label1.text (or whatever) to english....

eg.
To English -

Code:
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles Button1.Click

Label1.Text = " OMG! Its EnglisH!"

End Sub
To greek -

Code:
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles Button1.Click

Label1.Text = " SAme thing but in greek... desculpa ai, não sei falar grego :)"

End Sub
Or you can use what Erinador said... but for begginers, I think this one is easyer... (i'm assuming you are a begginer since you don't know how to use strings... I'm sorry if your not...)
#4 · edited 15y ago · 15y ago
Hassan
Hassan
.NET Framework provides diverse classes for Globalization. I developed this part for a project I am working on (simplex). I am on laptop atm. Will post code here as soon I'll get on desktop.
#5 · 15y ago
LY
Lyoto Machida
You must do something like:

[PSEUDOCODE]

ButtonEnglish_click :
Greektext = EnglishText

And to Greek to the reverse ^^

Like:
To English:
Label1.Text = "Login"
Button1.Text = "Close"

etc..

For each control in your form change the text when you click it..
#6 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
I always used strings.....Like make a global declaration of a string value...
Code:
Dim Language As String
Find a way to set to 'Language' a certain value like 'Albanian' or 'English' or 'Italian' or etc..
And In a button:
Code:
If Language = "English" Then
            Label1.Text = "Hello!"
End If
Well this is more if you want to get more into advanced parts like if u want to put the language options in a .ini file....IDK..Gonna make a tut asap those things are really important and easy to do. But U need to know something before, and not going to string formatting, etc in the first day.
#7 · edited 15y ago · 15y ago
arcanan
arcanan
thanks guys
#8 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
Quote Originally Posted by arcanan View Post
thanks guys
Check in the tutorial section...My 2nd tut is now done
#9 · 15y ago
VernK
VernK
Well I'm sure in VB2010 I saw a language form change thing I'm not sure how though
#10 · 15y ago
Jason
Jason
Quote Originally Posted by TheRealOne View Post
looooooooool



It's pretty simple... All you have to do is a simple comand (this is the easyest way I can think of for small programs)...

When the "english" button is clicked change label1.text (or whatever) to english....

eg.
To English -

Code:
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles Button1.Click

Label1.Text = " OMG! Its EnglisH!"

End Sub
To greek -

Code:
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles Button1.Click

Label1.Text = " SAme thing but in greek... desculpa ai, não sei falar grego :)"

End Sub
Or you can use what Erinador said... but for begginers, I think this one is easyer... (i'm assuming you are a begginer since you don't know how to use strings... I'm sorry if your not...)
Um, did you not read my post...you're doing exactly what I said to do; hardcoding the changes
#11 · 15y ago
arcanan
arcanan
after 30min of hardcoding i manage to translate the 1st form xD
#12 · 15y ago
Jason
Jason
So, solved then?
#13 · 15y ago
arcanan
arcanan
yeah, solved thanks
#14 · 15y ago
Jason
Jason
Alrighty, marked as solved so unless you have a better solution (Hassan....) please don't bother posting.
#15 · 15y ago
Posts 1–15 of 16 · Page 1 of 2

Post a Reply

Tags for this Thread

None