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]fullscreen glitch[help]

[help]fullscreen glitch[help]

Posts 1–15 of 15 · Page 1 of 1
MN
mnpeep
[help]fullscreen glitch[help]
im making a button for full screen in VB and when it opens wanna show a button to be able to close it, but when it focuses on it then the full screen goes away, and if i make it 1st button 2nd full screen then the button is not visible, help?
#1 · 16y ago
XG
XGelite
hmmm... sounds wierd...
screenshot maybe?
#2 · 16y ago
MN
mnpeep
vid, ok!!! w8 a 1/2 hour...
heres my code
Code:
Try
            Button1.Show()
            AxWindowsMediaPlayer1.fullScreen = True
            Button1.Focus()
            Button1.Top = True
        Catch ex As Exception
            MessageBox.Show("An error has occured, please contact the coder.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Button1.hide ()
        End Try
#3 · 16y ago
XG
XGelite
Quote Originally Posted by mnpeep View Post
vid, ok!!! w8 a 1/2 hour...
heres my code
Code:
Try
            Button1.Show()
            AxWindowsMediaPlayer1.fullScreen = True
            Button1.Focus()
            Button1.Top = True
        Catch ex As Exception
            MessageBox.Show("An error has occured, please contact the coder.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Button1.hide ()
        End Try
hmmm maybe try labels instead of buttons?

but why do you need the focus stuff? thats prolly whats messing it up?
#4 · edited 16y ago · 16y ago
MN
mnpeep
w8 im uploading now...
EDIT: http://www.youtube.com/watch?v=bOIw3lb-KmI it has HORRIBLE quality, so here's the form code:
Code:
Public Class Form2

    Private Sub mexit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mexit.Click
        Application.Exit()
    End Sub

    Private Sub play_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles play.Click
        AxWindowsMediaPlayer1.Ctlcontrols.play()
    End Sub

    Private Sub mstop_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mstop.Click
        AxWindowsMediaPlayer1.Ctlcontrols.stop()
    End Sub

    Private Sub mpause_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mpause.Click
        AxWindowsMediaPlayer1.Ctlcontrols.pause()
    End Sub

    Private Sub mup_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mup.Click
        AxWindowsMediaPlayer1.settings.volume = AxWindowsMediaPlayer1.settings.volume + 10
    End Sub

    Private Sub mdown_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mdown.Click
        AxWindowsMediaPlayer1.settings.volume = AxWindowsMediaPlayer1.settings.volume - 10
    End Sub

    Private Sub mmute_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mmute.Click
        If AxWindowsMediaPlayer1.settings.volume = AxWindowsMediaPlayer1.settings.mute() Then
            AxWindowsMediaPlayer1.settings.volume = 20
        Else
            AxWindowsMediaPlayer1.settings.volume = AxWindowsMediaPlayer1.settings.mute()
        End If
    End Sub

    Private Sub Open_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Open.Click
        Try
            OpenFileDialog1.InitialDirectory = "My Computer"
            OpenFileDialog1.ShowDialog()
            AxWindowsMediaPlayer1.URL = OpenFileDialog1.FileName
            AxWindowsMediaPlayer1.Ctlcontrols.play()
        Catch ex As Exception
            MessageBox.Show("An error has occured, please try again.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
        End Try
    End Sub

    Private Sub FullScreenToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FullScreenToolStripMenuItem.Click
        Try
            Button1.Show()
            AxWindowsMediaPlayer1.fullScreen = True
            Button1.Focus()
            Button1.Top = True
        Catch ex As Exception
            MessageBox.Show("An error has occured, please contact the coder.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
            Button1.Hide()
        End Try
    End Sub

    Private Sub NotifyIcon1_MouseClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles NotifyIcon1.MouseClick
        Me.Show()
        NotifyIcon1.Visible = False
    End Sub

    Private Sub MinimizeToTrayToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MinimizeToTrayToolStripMenuItem.Click
        Me.Hide()
        NotifyIcon1.Visible = True
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        AxWindowsMediaPlayer1.fullScreen = False
        Button1.Hide()
    End Sub
End Class
#5 · edited 16y ago · 16y ago
XG
XGelite
Quote Originally Posted by mnpeep View Post
w8 im uploading now...
EDIT: YouTube - VB help it has HORRIBLE quality, so here's the form code:
Code:
Public Class Form2

    Private Sub mexit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mexit.Click
        Application.Exit()
    End Sub

    Private Sub play_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles play.Click
        AxWindowsMediaPlayer1.Ctlcontrols.play()
    End Sub

    Private Sub mstop_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mstop.Click
        AxWindowsMediaPlayer1.Ctlcontrols.stop()
    End Sub

    Private Sub mpause_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mpause.Click
        AxWindowsMediaPlayer1.Ctlcontrols.pause()
    End Sub

    Private Sub mup_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mup.Click
        AxWindowsMediaPlayer1.settings.volume = AxWindowsMediaPlayer1.settings.volume + 10
    End Sub

    Private Sub mdown_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mdown.Click
        AxWindowsMediaPlayer1.settings.volume = AxWindowsMediaPlayer1.settings.volume - 10
    End Sub

    Private Sub mmute_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mmute.Click
        If AxWindowsMediaPlayer1.settings.volume = AxWindowsMediaPlayer1.settings.mute() Then
            AxWindowsMediaPlayer1.settings.volume = 20
        Else
            AxWindowsMediaPlayer1.settings.volume = AxWindowsMediaPlayer1.settings.mute()
        End If
    End Sub

    Private Sub Open_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Open.Click
        Try
            OpenFileDialog1.InitialDirectory = "My Computer"
            OpenFileDialog1.ShowDialog()
            AxWindowsMediaPlayer1.URL = OpenFileDialog1.FileName
            AxWindowsMediaPlayer1.Ctlcontrols.play()
        Catch ex As Exception
            MessageBox.Show("An error has occured, please try again.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
        End Try
    End Sub

    Private Sub FullScreenToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FullScreenToolStripMenuItem.Click
        Try
            Button1.Show()
            AxWindowsMediaPlayer1.fullScreen = True
            Button1.Focus()
            Button1.Top = True
        Catch ex As Exception
            MessageBox.Show("An error has occured, please contact the coder.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
            Button1.Hide()
        End Try
    End Sub

    Private Sub NotifyIcon1_MouseClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles NotifyIcon1.MouseClick
        Me.Show()
        NotifyIcon1.Visible = False
    End Sub

    Private Sub MinimizeToTrayToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MinimizeToTrayToolStripMenuItem.Click
        Me.Hide()
        NotifyIcon1.Visible = True
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        AxWindowsMediaPlayer1.fullScreen = False
        Button1.Hide()
    End Sub
End Class
hey, ill experiment with this tomorrow to help you out k? that is if i dont go to work >.< and if someone else dont help ya

im going to bed now soon..been long day..
#6 · 16y ago
MN
mnpeep
tried with the label... same problem
#7 · 16y ago
XG
XGelite
Quote Originally Posted by mnpeep View Post
tried with the label... same problem
k, ill try to help ya tomorrow. i dont know off the top of my head. but, once i open VB and test it out and experiment, ill prolly be able to find a solution. but right now, im tired.... =/
#8 · 16y ago
MN
mnpeep
okeydokey can u help me with dim on my tic tac toe code?
i got teamviewer
498 213 695
6354
#9 · edited 16y ago · 16y ago
XG
XGelite
hmmmm are you trying to make a button that makes the form full screen? or is it just a button on the full screenform?
#10 · 16y ago
MN
mnpeep
on top of fullscreen media player, so if i click it, the fullscreen mediaplayer closes.
like a watermark on a photo.
#11 · 16y ago
XG
XGelite
hmmm
i have a button on a fullscreen app that i had and it didnt cause any problems
#12 · 16y ago
MN
mnpeep
specifically windows media player...
#13 · 16y ago
XG
XGelite
Quote Originally Posted by mnpeep View Post
specifically windows media player...
could you upload you whole project so i can take a look?
#14 · 16y ago
MN
mnpeep
sure, ill attach in a sec...
[attached]
#15 · edited 16y ago · 16y ago
Posts 1–15 of 15 · Page 1 of 1

Post a Reply

Similar Threads

  • AVA 5 player coop glitch helpBy yshabash in Alliance of Valiant Arms (AVA) Help
    4Last post 15y ago
  • RF ONLINE hacks/glitches help!By password in General Game Hacking
    1Last post 16y ago
  • [help]graphics glitchBy MaskedFox in WarRock - International Hacks
    9Last post 19y ago
  • Willing to help you glitchBy BlownUpBitch in Soldier Front General
    3Last post 18y ago
  • Help! Renaming GlitchBy yazh58 in WarRock - International Hacks
    1Last post 19y ago

Tags for this Thread

None