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]ComboBox Selections[Solved]

Question[Help]ComboBox Selections[Solved]

Posts 1–6 of 6 · Page 1 of 1
PP
ppl2pass
[Help]ComboBox Selections[Solved]
ComboBox1
Code:
M16A4
AK47
M4 Carbine
G3
G36C
M14
MP44
ComboBox2
Code:
ACOG Scope
Red Dot Sight
Silencer
Grip
Rifle Gernades
Ok this is what I am trying to make. If AK47 is selected in combox1 then:

Code:
ComboBox1= AK47
Code:
Combox2 = ACOG Scope
Red Dot Sight
Silencer
Grip
so everything except the rifle gernades.
How do this?

Is it like:
Code:
If ComboBox1.Text = "AK47" Then
ComboBox2.Items = "ACOG Scope,Red Dot Sight,Silencer,Grip"
If so how would i do it?
#1 · 16y ago
NextGen1
NextGen1
In the Combo Box Item Change event (there is one, double click the combo box)

[php]
If comx1.selecteditem (' or is it selected") = "what you want to check it against here" Then
Comx2.selecteditem = "this that and the other thing
end if
[/php]
#2 · 16y ago
PP
ppl2pass
i dont think i explained it correctly.
so when i select AK47.

I want the items in ComboBox2 to be:
ACOG Scope
Red Dot Sight
Silencer
Grip
'since a rifle grenade cannot be attached to an AK47.

so how do i remove rifle grenade from the from the comx list?
#3 · 16y ago
NextGen1
NextGen1
To add an item it is

[php]
Comx1.items.add("Item To Add")
[/php]

To Remove an Item it is

[php]
Comx1.items.remove("Item To Remove")
[/php]
#4 · 16y ago
PP
ppl2pass
How do you remove all items from the combolist?
#5 · 16y ago
Blubb1337
Blubb1337
Code:
ComboBox1.Items.Clear()
#6 · 16y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • [Help]ComboBox Selection[Solved]By Invidus in Visual Basic Programming
    12Last post 16y ago
  • [Help]random selections ComboBoxBy ppl2pass in Visual Basic Programming
    4Last post 16y ago
  • [Help] WMP selecting song from ListBox [solved]By alvaritos in Visual Basic Programming
    10Last post 15y ago
  • Help me to solve this ? :#By josias008 in Combat Arms Help
    9Last post 15y ago
  • [Help]ListBox.Item.Selected[Solved]By hopefordope in Visual Basic Programming
    6Last post 16y ago

Tags for this Thread

None