|
-
Jun 15th, 2000, 05:29 AM
#1
When you choose "Full screen" in photoshop or go into most games, you see graphics on the entire screen, not just in a window. How is this done?
I'm trying to do a slide show as a function in one of my apps.
Thanx guys.
-
Jun 15th, 2000, 05:33 AM
#2
One way is to maximize your window. Set the BorderStyle property to None and set the WindowState property to maximized.
-
Jun 15th, 2000, 09:29 PM
#3
If you're playing a game on a cheap monitor, you can actually hear it "click" as it changes video modes. It appears as though there are no windows, just objects drawn to the screen - is this DirectX?
I'll probably use a maximized window like megatron said, but I'm curious..
-
Jun 16th, 2000, 12:31 AM
#4
Lively Member
DirectX Indeed
Yes, it is DirectX. There are some excellent tutorials and information for using DirectX at http://orion.spaceports.com/~mccloud/. That is Fox's page, I learned so much from that(I'm PlasmicSoup on the forums there). Also, check out VoodooVb(somewhat confusing, but good. They have good links there too.):http://redrival.com/voodoovb/.
-
Jun 16th, 2000, 03:12 AM
#5
Another good website about DirectX is http://www.cason.addr.com
-
Jun 18th, 2000, 07:52 AM
#6
Here is a sample code on how to do it.
Code:
Dim dx As New DirectX7
Dim dd As DirectDraw7
Set dd = dx.DirectDrawCreate("")
Call dd.SetCooperativeLevel(Me.hWnd, DDSCL_FULLSCREEN Or DDSCL_EXCLUSIVE Or DDSCL_ALLOWREBOOT)
Call dd.SetDisplayMode(640, 480, 16, 0, DDSDM_DEFAULT)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|