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 › web browser help

Arrowweb browser help

Posts 1–2 of 2 · Page 1 of 1
hopefordope
hopefordope
web browser help
hello i am making a web browser and i wanted to know that how do i get the link of an object (it shows the link in a label) when my mouse hovers over it .
thanks
#1 · 16y ago
Hassan
Hassan
Quote Originally Posted by hopefordope View Post
hello i am making a web browser and i wanted to know that how do i get the link of an object (it shows the link in a label) when my mouse hovers over it .
thanks
Right now Web-Browser active X does not supports returning links when mouse is hovered on them. However, by using Regex expressions, you can extract all the H-Ref Links. If you want to extract them then add a listbox to the form, name it L and then use the following code on the browser's document_Completed event. The code as a whole will be then:


Code:
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
        Dim matchlinks As String = "]*?HREF\s*=\s*[""']?([^'"" >]+?)[ '""]?[^>]*?>"
        Dim val As String = Regex.Match(WebBrowser1.DocumentText, matchlinks, RegexOptions.IgnoreCase).Value
        If Not l.Items.Contains(val) Then
            l.Items.Add(val)
        End If
    End Sub
This is all I can think of right now !!
#2 · 16y ago
Posts 1–2 of 2 · Page 1 of 1

Post a Reply

Similar Threads

  • Web browser helpBy zmansquared in Visual Basic Programming
    27Last post 16y ago
  • vb web browser helpBy swor15 in Visual Basic Programming
    6Last post 15y ago
  • Help with tabs in web browserBy Laxitive in Visual Basic Programming
    8Last post 16y ago
  • [Help] Web browser Components[Solved]By Erinador in Visual Basic Programming
    12Last post 16y ago
  • [Help]Web browser[Solved]By Flash in Visual Basic Programming
    9Last post 16y ago

Tags for this Thread

None