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] Google search a textbox value [solved]

[Help] Google search a textbox value [solved]

Posts 1–11 of 11 · Page 1 of 1
pushdis15
pushdis15
[Help] Google search a textbox value [solved]
ok i dont really know how to explain it but this is wat i want but i need help with it

i want where if i type in the textbox i can make whatever i type search google

Example

Apples <<< that would be the textbox xD
[Google] <<< that would be the button xD

hope u get what im saying thanks
#1 · 15y ago
SoWhat
SoWhat
u wanna type into the text boxe and make it search on google?
#2 · 15y ago
pushdis15
pushdis15
yea xD
/short
#3 · 15y ago
master131
[MPGH]master131
[highlight=vb.net]Process.Start("http://www.google.com/search?btnG=1&pws=0&q=" & TextBox1.Text)[/highlight]
#4 · 15y ago
pushdis15
pushdis15
Quote Originally Posted by master131 View Post
[highlight=vb.net]Process.Start("http://www.google.com/search?btnG=1&pws=0&q=" & TextBox1.Text)[/highlight]
thanks bro i had every thing right but this search?btnG=1&pws=0&q= thnks / close
#5 · 15y ago
master131
[MPGH]master131
Well you can just use:
[highlight=vb.net]Process.Start("http://www.google.com/search?q=" & TextBox1.Text)[/highlight]
#6 · 15y ago
SoWhat
SoWhat
Quote Originally Posted by pushdis15 View Post


thnks / close
dont say it .. Press it !
#7 · 15y ago
pushdis15
pushdis15
Quote Originally Posted by $0WhaT ? View Post
dont say it .. Press it !
i repped him dont worry an u
#8 · 15y ago
Jason
Jason
Thread marked solved.
#9 · 15y ago
freedompeace
freedompeace
Just a note - don't forgot to URL encode your input, otherwise spaces, and symbols may potentially screw with your query, like "Why are freedompeace & Mr. X so pro & awesome?", generating
Code:
http://www.google.com/search?q=Why are freedompeace & Mr. X so pro & awesome?
Go on, try that right now in your browser. Note that some browsers will automatically escape the spaces (" ") into %20 for you, like Chrome.

So, the correct method would be to use:
Code:
Process.Start("http://www.google.com/search?q=" & HttpUtility.UrlEncode(TextBox1.Text))
#10 · edited 15y ago · 15y ago
Jason
Jason
Quote Originally Posted by freedompeace View Post
Just a note - don't forgot to URL encode your input, otherwise spaces, and symbols may potentially screw with your query, like "Why are freedompeace & Mr. X so pro & awesome?", generating
Code:
http://www.google.com/search?q=Why are freedompeace & Mr. X so pro & awesome?
Go on, try that right now in your browser. Note that some browsers will automatically escape the spaces (" ") into %20 for you, like Chrome.

So, the correct method would be to use:
Code:
Process.Start("http://www.google.com/search?q=" & HttpUtility.UrlEncode(TextBox1.Text))
Just thought I'd clarify, HttpUtility is found in the System.Web namespace and though it appears to be referenced by default, to actually unleash this badboy, manually reference it so that you can access all the classes and methods.
#11 · 15y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Tags for this Thread

None