Make An .exe Run In Fullscreen From VB?

Jun 1, 2012

This will be a simple one I bet as totally new to VB but have to start somewhere.I need the code to make a program called td4.exe on my I: drive be called from a VB app and it MUST run in Fullscreen mode with no borders. If just run the td4.exe it is windowed and will not alter even from the properties settings.

View 5 Replies


ADVERTISEMENT

How To Make WinForms Fullscreen

Jan 10, 2011

I need to make a winform full screen. This is what I found online.

1. Hook WinProc to catch WM_SYSCOMMAND
2. Check wParam == SC_MAXIMIZE and then
3. Set my windiw's attributes

Me.ResizeMode = ResizeMode.NoResize
Me.WindowStyle = WindowStyle.None
Me.WindowState = WindowState.Maximized

I am fairly new to vb.net and do not know how to do Steps 1 or 2.

View 2 Replies

Make A Picturebox Fullscreen?

Jan 22, 2010

Make a picturebox fullscreen?

View 1 Replies

Make A Program Fullscreen?

Aug 15, 2011

How to make a program fullscreen?

View 3 Replies

Forms :: Make The Form Fullscreen?

Sep 9, 2009

how would you make the form fullscreen

View 3 Replies

VB 10 Fullscreen Form In A Fullscreen Game?

Jan 4, 2012

how to make a form to show in a game, Sort of like the program steam does.

Or is this even pausbile?

View 8 Replies

Make A Form In Visual Basic Have A Fullscreen Button?

Feb 17, 2010

I have a form in visual basic 2008 express edition and i want to be able to press a button to make the form go into fullscreen i have tried various codes but they all just remove the taskbars and i want the form to increase in size and not leave a section of the side blank i want it to sort of zoom the form size

View 10 Replies

Disable The WMP Control From Going Fullscreen?

Feb 17, 2012

if there is a way to disable the WMP control from going fullscreen when the video is clicked on??

View 3 Replies

Fullscreen Video .net Code?

Jan 27, 2011

how to write the fullscreen video opening vb.net code? Currently,I am doing the project opening full screen video by moving the sensor.I can do the maximized video opening when run the program,but not full screen.I heard about ActiveX for fullscreen before, but I don't know how to put it and make the fullscreen.

View 3 Replies

HotKeys In Fullscreen Games?

Mar 25, 2010

Now my question is, is it possible to use Hotkeys and ScreenCapture in a Fullscreen game?If so, how?What im acutaly trying to do is a program to take a screenshot ingame (for some reason, this game doesnt have an option to take screenshots ingame.. Bad Company 2)

View 7 Replies

How To Set Media Player To Fullscreen

Mar 29, 2009

I have created 2 forms: "Form1" and "Form2"....Form1 is MDIcontainer and it contains Form2. In Form2 I have inserted the windows media player OCX. When I run the program and try to set the media player to fullscreen (via command button) appears an error:
{"Errore irreparabile (Eccezione da HRESULT: 0x8000FFFF (E_UNEXPECTED))"}

Here's the
Public Class Form2
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
AxWindowsMediaPlayer1.fullScreen = True
[Code] ....
If I open a new project and I copy the code and the media player it works! I think problem is when I use MDIforms.

View 4 Replies

Keeping Form Above Fullscreen?

Nov 9, 2011

Basically i'm coding a application that can be used as a crosshair.How do I keep this above the game which runs in fullscreen. I've tried

View 5 Replies

Media Player In Fullscreen

Jan 11, 2012

I have this one project going on, and I has media player inside the form, and other staff too. How I can make only the media player to go in fullscreen?

View 2 Replies

Play An AVI Fullscreen On A Form?

Nov 22, 2010

I need the simplest code possible to play an AVI fullscreen on a form.

View 5 Replies

Video On Fullscreen Mode?

Apr 13, 2010

I need to create a vb-application which plays video-files as a fullscreen mode on computer's external screen. At the sametime user must have control to these files on another screen shown on the computer's (laptop) own screen.

So far I have managed to open the videofile as a fullscreen mode so that user has to first drag the videopanel (not a problem in this case) to the another screen and then click the "Fullscreen"- button on the control-form. Now the problem is that when another screen is playing on a fullscreen-mode and user clicks the control-form on the main screen: the fullscreen-mode ends and the videopanel results to the video's actual size.

Is there any solutions to this? So I'd need to continue the fullscreenmode on the other screen while there are user actions on the main screen. I am using DirectX / AudioVideoPlayback by Visual Basic 2008 Express Edition. And yes, I am quite a newbie with VB-related things :)

View 9 Replies

VS 2010 - How To Take Fullscreen Screenshots

Dec 10, 2011

The following code takes a full screen screenshot:
Public Function TakeShotOfScreens() As Bitmap
Dim maxHeight As Integer = 0
Dim maxWidth As Integer = 0
For Each scr As Screen In Screen.AllScreens
maxWidth += scr.Bounds.Width
[Code] .....
I am after some code that takes a screenshot of only a small portion of the screen.... I have to x,y,width and height of the square that I wish to take. Is this possible?

View 1 Replies

AxWindowsMediaPlayer Cannot Display Fullscreen When It Re-played

Jul 31, 2010

i make a simple winform application with AxWindowsMediaPlayer and timer.

My objective is about to make the application play the clip with interval (that's why i use timer)

When AxWindowsMediaPlayer finish playing the first clip, everything's okay. But when it begin playing the next clip. It CAN'T HAVE FULLSCREEN MODE. I have to double click the control manually to have it fullscreen. I use vb 2005 in 7 ultimate.

Here is my code

Private Sub AxWindowsMediaPlayer_PlayStateChange(ByVal sender As Object, ByVal e As AxWMPLib._WMPOCXEvents_PlayStateChangeEvent) Handles AxWindowsMediaPlayer.PlayStateChange

[Code]......

View 6 Replies

Fullscreen, Can't Show Msgbox / Forms?

May 6, 2010

I've a really nice fullscreen code I found on the internet, the only problem I found was that you can't make msgbox show or open another form! Which is really bothering me making panels.visible = true/false to make a cheap way of "Forms"orm1.

Private Sub TryToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Call normalScreen()

[code].....

View 5 Replies

Making Fullscreen + Resolution Change?

Feb 29, 2012

How can I make my app form go to fullscreen, and change the computers resolution as what I want?

View 2 Replies

Show An Image In Fullscreen-mode?

Sep 5, 2010

I'd need to show an image in fullscreen mode on my application when a music-file is being played. Is it possible to define a form and an image (picturebox) to be shown as a maximum size on the screen?One thing that makes it even more interesting is that I'd need to show it as a fullscreen mode on a external screen.

I can move the form to external screen like this:

Form3.SetBounds(2000, 112, Form3.Bounds.Width, Form3.Bounds.Height)

View 2 Replies

Add A Fullscreen Button To Embedded Media Player?

Mar 3, 2012

Is there a way to add a Full Screen button to the embedded media player? I know that you can add a 'button' that will set it to full screen after it is running, or you can add code that will make it go full screen, but is there a way to actually put a button in the embedded player to make it go full screen?

View 2 Replies

Custom Menu For WMP Component (Fullscreen Mode)

Feb 27, 2011

Is it possible to create a menu when wmp comp is in fullscreen mode. I mean when wmp goes fullscreen a toolbar or something appear, showing play pause etc! Generally all the controls of a player...

View 3 Replies

Fullscreen App Browser Wont Exit On Keypress

Jun 15, 2011

Ive been trying to build a simple application that runs a single website, as a promotion for a friends new project.The problem is, he wants it to exit when ESCAPE is pressed.Since neither of us have any expierence building apps, were fully relying on stuff we find on the internet.I was able to make the webrowser work in full screen,I was able to make it quit when ESCAPE is pressed.But for some reason, when I combine the code, it doesnt work anymore.This is what I have sofar:

Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
Me.WindowState = FormWindowState.Maximized

[code]...

View 3 Replies

VS 2010 Drawing A Line Over DirectX Fullscreen?

Jan 25, 2012

Basically I want to Position a line from The middle of my screen to the bottom right of my screen. But I need to draw over the game to do this. I dont mind if it flickers as long as its there is all i want. Like this VV

View 4 Replies

WMP Control Disable Fullscreen On Double Click

Feb 18, 2012

I cannot for the life of me disable fullscreen on the WMP control when the control video is double clicked on... I posted yesterday regarding this, but marked the thread as resolved as i thought i had fixed this by going:

[Code]...

View 1 Replies

VS 2008 - Overlay Small Bar Over Fullscreen DirectX Games

Jul 25, 2009

I need to overlay a small bar along the top of the screen over a fullscreen DirectX game. I have searched for a while but I have not found any code examples for VB.NET 2008 (I've never used any previous version). How can I do this? Would this involve learning DirectX programming?

View 2 Replies

Flash Video Not Exit Fullscreen In WebBrowser Control On Pressing Esc

Nov 27, 2011

I have created a <acronym title="Visual Basic">VB</acronym>.NET project that includes WebBrowser control. The web browser control navigates to html page that embedes a flash movie. Everything works fine except that when I want to exit the fullscreen mode of the video by pressing (Esc) key, it doesn't exit. If I view the html page with any other browser (Internet Explorer, Firefox, ...) it works perfectly. You can download the project from the link below. The files are in the Debug folder.
Download Link: FlashinWebBrowser.rar - [URL] - online file sharing and storage - download

View 2 Replies

Supposed To Be Fullscreen In WPF Touchscreen Application Is Moving When Inner Listbox Is Scrolled?

Jun 30, 2010

I am writing a GUI application to run on a touchscreen device using VB.NET and WPF--it must be full screen at all times, like a kiosk app; the window must not be able to resize or move in any way. The window contains a ListBox that users can currently scroll through by dragging across the list. The problem I'm seeing is that when the user drags across the list, the whole window moves a bit, exposing the desktop underneath, then springs back into place once the user stops dragging. I have not been able to figure out how to keep the window stationary while still allowing users to drag across the ListBox to view all list items. Here is a somewhat simplified version of my code:

[Code]...

View 1 Replies

VS 2010 In-Game IRC Client For FullScreen DirectX Game

Jun 4, 2010

I've already coded the IRC Client, but what would be the code to make the app overlay in the fullscreen DirectX game ? And i've already tried to the TopMost function.

View 37 Replies

Web Browser - Textbox For My Address Bar - Expand When Set My Browser To Fullscreen

May 14, 2011

I am trying to make a web browser for a school project... and I have a few questions...

The first being that I have a textbox for my address bar and I want it to do a few things, I want it to expand when i set my browser to fullscreen , be able to press enter when typing in it and it will take me to that webpage and for it to show recent history... (i know it seems like a ton of expectations mainly i would like the first 2 the third is not as important) So i dont know how to do any of that...

I also would like to know how to go about making new tabs on demand and not have a bunch of tabs just sitting there...

last question how do i go about making new windows not just for browser windows but, making something like firefoxes options window.. not necisarily to do that but just to make i guess another form pop up...

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved