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 › e.Graphics.DrawEllipse Pixelsize [solved]

e.Graphics.DrawEllipse Pixelsize [solved]

Posts 1–6 of 6 · Page 1 of 1
Jasperdepasper
Jasperdepasper
e.Graphics.DrawEllipse Pixelsize [solved]
Hey guys i need some help with the e.Graphics.DrawEllipse function.

This is what i got now

It works perfect

But i cant change the thickness of the circle its now 1 pixel thick and i want it 2 pixels
I tryed to change this to 2 but that doesnt work
#1 · edited 15y ago · 15y ago
master131
[MPGH]master131
Tried this?
e.Graphic.DrawEllipse(New Pen(Brushes.Red, 2), 0, 0, 59, 59)
#2 · 15y ago
Jason
Jason
You need to actually pass the new Pen object as the argument:

[highlight=vb.net]
Dim redPen As New Drawing.Pen(Color.Red, 2)
e.Graphics.DrawEllipse(redPen, 0, 0, 59, 59)
[/highlight]
#3 · 15y ago
Jasperdepasper
Jasperdepasper
Quote Originally Posted by master131 View Post
Tried this?
e.Graphic.DrawEllipse(New Pen(Brushes.Red, 2), 0, 0, 59, 59)
That gives me an error but thanks


Quote Originally Posted by Jason View Post
You need to actually pass the new Pen object as the argument:

[highlight=vb.net]
Dim redPen As New Drawing.Pen(Color.Red, 2)
e.Graphics.DrawEllipse(redPen, 0, 0, 59, 59)
[/highlight]
Thanks that works



/Request Marked As Solved
#4 · edited 15y ago · 15y ago
master131
[MPGH]master131
Woops, wrote brushes instead of color, lol.
#5 · 15y ago
Jason
Jason
Marked solved.
#6 · 15y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • [SOLVED]MW2 GRAPHIC CARDBy ping01101 in Call of Duty Modern Warfare 2 Help
    10Last post 16y ago
  • [SOLVED] Graphics CardBy shadmansheikh2 in Call of Duty Modern Warfare 2 Help
    1Last post 16y ago
  • Graphic options[SOLVED]By osciono in CrossFire Help
    3Last post 16y ago
  • graphics card ?[SOLVED]By GUNZnKNIVES in CrossFire Help
    3Last post 16y ago
  • [SOLVED] The Right Graphics CardBy Uber0wn in Call of Duty Modern Warfare 2 Help
    8Last post 16y ago

Tags for this Thread

#e.graphics.drawellipse#jasperdepasper