Make The Form Size Exceed The Screen Working Area?

Dec 13, 2009

make the form size exceed the screen working area? like setting the size to (1600,1600) doesn't work if the screen is not as big as it is.

View 4 Replies


ADVERTISEMENT

Make The Form Size Automatic Setting The Size Equals To The Screen?

Jun 9, 2011

How to make the form size automatic setting the size equals to the screen. or Maximize the whole form including the form components.

View 3 Replies

Make Highlight Area In Picturebox By Getting Coordinate And Size From Textbox?

Nov 8, 2011

I have 4 textbox for X, Y, height and width.. and 1 picturebox where the image load in..

how can i make highlight area in picturebox by getting coordinate and size from textbox?

View 3 Replies

Make The Size To Automatically Fix The Screen Size?

Jun 9, 2011

i've been coding a sidebar but i dont know how to make the size to aoutomatically fix the screen size..i mean if the screen resolution is 1000x789 or 890x678 s stilll fit to it I have find in google and youtube but still i didn't get any ides on how to do it And also if possible can we code s sidebar that automaticcally hide when we did not move our mouse to it?

View 1 Replies

Crop Form Screenshot - Screen Capture Of Twindows Form And Display Only A Certain Specified Area

Aug 2, 2010

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Form2.PictureBox1.Load(bm2)

[CODE]...

So I'm trying to take a screen capture of the windows form and display only a certain specified area of that screen capture in a picturebox on a different form. Kind of like this. First, take the screen capture of the form: Then get a specified area of that form through x,y coordinates or something and display it on a picturebox on a separate form.

View 1 Replies

Any Way To Capture Screen Of Form Area?

Mar 2, 2010

I was about to create a code for capturing screen of the area of a form.. Below code is capturing only the form size but from the top of the screen.. I want to capture the area of screen wherever it placed..
Code:
Dim loBmp As Bitmap = Nothing
'Dim Somebitmap As Bitmap
Dim screenSize As Size = New Size(Me.Bounds.Width, Me.Bounds.Height)
Dim screenGrab As New Bitmap(Me.Bounds.Width, Me.Bounds.Height)
Dim g As Graphics = Graphics.FromImage(screenGrab)
'Dim FiletoDelete
'MsgBox(lsFile)
g.CopyFromScreen(0, 0, 0, 0, screenSize) ("Need Some changes here!!")
screenGrab.Save(LogLib & lsFile)

View 5 Replies

Forms :: Size Form Proportionally To Screen Size?

Sep 24, 2009

If I have form say sized 1300 x 800, I would like to proportionally size the form to the computers screen size. I can get it to size to the screen size, but it is not proportional

View 11 Replies

VS 2008 Form Size Compatible On Different Screen Size?

Mar 5, 2010

I developed a form application on my computer, but when it was used in another computer with different screen size, i was told the form didn't fit. Do I have to adjust the form size or any other ways to let the form compatible on different screen size? (could be different screen size or wide screen)

View 2 Replies

Set The Viewable Area To A Smaller Screen Area?

Jun 11, 2012

Trying to set the viewable area to a smaller screen area and have it cycle through as the person moves using collision detection to move the backgroudn image. Here is the start but its off to a bad start so far.

Public Class Form1
Dim Mapx As Integer = 600
Dim Mapy As Integer = 2000

[code]....

Basically the forum size is set to 600x2000 but the client should only allow you to view 600x600. I want it to add +1 once you "collide with a invisable box I'll add and this will redraw the screen.

View 4 Replies

VS 2005 Using An Application To Capture Selected Part Of Screen By Resizing The Form And Capturing Area Of It?

Mar 9, 2010

Hi.. Im using an application to capture selected part of screen by resizing the form and capturing area of it!! now i want to reset the form once my work id done!! i mean if i press a "RESET" button the form should be load as first time it was loaded.(the real form size..)

View 1 Replies

Fit Form To Screen Size?

Feb 10, 2010

Anyone know of a way to fit a form to the size of the screen automatically? So it is fully visible on a 10" netbook if you designed it to fit a 13" screen?

View 2 Replies

Form Stretched To Screen Size?

Nov 26, 2009

When I manually increase the size of my form in runtime, the controls remain in their positions but i need to make it stretched as photos the controls to be sticked to the background.This problem actually appears when I display my program on my laptop but using LCD screens with different resolution, I need to make it dynamically autofit the screen if possible...

View 5 Replies

Max Form Size Changes With Screen Resolution

Sep 1, 2009

Wondering if there was a way around the seemingly nonsensical editor changing of the maximum size form you can edit/create to some value approaching the screen resolution you are working on. This is a P.I.T.A. as I often edit pages on a laptop with a smaller max resolution than the monitors I typically do layouts for.Any way to by pass this to let me edit larger screen sizes on my laptop?

View 1 Replies

Adjusting Form Size According To Screen Display

Nov 25, 2010

I've a form set to size 1240:750. On my PC where I've VB2010 installed, the screen size is set to 1680:1024 and the form can be viewed fine but on a PC with screen size set to 1280:1024 (higher than the form) the form in question is cropped almost a third of it. To adjust the form to everyone screen size I set the below code at load with no avail.

'Autosize form to screen
Me.Height = (SystemInformation.PrimaryMonitorSize.Height) * (0.9)
Me.Width = (SystemInformation.PrimaryMonitorSize.Width) '* (0.9)
Me.MaximumSize = New System.Drawing.Size(Me.Width, Me.Height)
Me.MinimumSize = New System.Drawing.Size(1240, 750)

View 3 Replies

Re-size All Control Within Form To Fit Different Screen Resolution?

Jul 21, 2010

How to re-size all control within form to fit different screen resolution?

any solution on this? my control always run out of the screen size... can it re-size every control before the user can see the form load..?

View 4 Replies

Use A Form Larger Than Development Screen Size?

Dec 15, 2011

Screen Size of my deployment screen is larger than my development screen.

If i try to set my form size larger than my development screen size, IDE doesnot accepts this.

Please let me know How can I use a form larger than my development screen Size?

View 7 Replies

Make Toolstriptextbox Size With Form Size?

Aug 4, 2010

i want to make it so my toolstriptextbox will smoothly size with the form as i resize it. I tried using a timer and just say txtbox1.width = me.size.width - 100 or whatever space for the buttons and handling it for when it reaches negative numbers (with autosize off on the textbox) but its not at all smooth.

View 4 Replies

Form Objects Resizing On Different Monitor Screen Size?

Nov 29, 2011

I designed a form which contains about 50 objects all kinds including tableadapters,buttions,grids, tabs. What is the best way to optimize the loading with less time consuming. I cannot split objects in on different form as all the objects has to appear on screen as a requirement.

But my primary question here is, i designed this form with all these objects on a 15" monitor which fitted 100% on the screen. Now i am using 17" monitor when i open this form on run time, all the objects are appearing as designed but theres a 30% form area which is left blank. How can i make the form objects resize automatically on run time itself to fit on different size of monitor with no area left blank.

View 2 Replies

Resize Form & Controls To Screen Size VB 2008

Jun 10, 2011

Anyone knows how to change the Forms and controls of the project as the Screen resolution of the computer changes?

View 1 Replies

Setting Form's Screen Location Not Working?

Jan 27, 2010

I'm working on a vb 2010 project where I am playing mpeg movies using the Media Player control.The computer has dual heads (extending windows desktop to other display). My aim is to be able to selectwhich screen to show the video on. I have two forms, the first form (frmControl) has two buttons, Play and Stop.The second form (Player) has the embedded Media Player. Initial tests worked fine (not choosing a screen, but making the player fullscreen and playing a movie). When I add the following code to allow choosing the screen

View 4 Replies

Resize A Form , Its Controls According To User's Screen Settings And Physical Monitor Size?

Nov 19, 2010

I am creating an application for a company and this CD will be distributed to hundreds of people. Many users will have different computer screen size and different screen settings such as their resolution set to 1024 x 728 and their monitor size 17" inches.

I noticed when I loaded the application on a different computer with different settings the application was to big for the screen and did not work. I notice that lot of other programs from microsoft resize their controls and text but never knew how they did it. How can I resize the form and control according to the user's setting.

View 6 Replies

Resizing Forms - Form Size Aint Affected By Screen Resolution Settings

Feb 15, 2011

how do i set my vb2008 form in such away that the form size aint affected by screen resolution settings

View 3 Replies

Specify Actual Usable Form Area Instead Of Outside Area?

May 12, 2010

I designed a form and managed to fit graphics inside it. Picture box is 465 pixels high. Form1 is 500 pixels high. SnapShot of the screen verifies that the 500 pixel height is the overal height. It includes the upper Bar and lower frame. Is there an instruction to set the From's inner pixel size and not overal?

View 2 Replies

Putting VB Content In The Center Of A Full Screen With Variant Screen Size?

Feb 2, 2012

Now I'm creating at app in VB (Microsoft's, Visual Basic 2010) which will be in full screen but I want to know if I can put all my content in the centre of the screen. At the moment it's at the far top, left of the screen. When the screen size varies I want it will stay in the middle for all shapes and sizes. Like :

<div style="margin: 0 auto; width: 500px;"></div>

But this is for web pages using HTML and CSS.

View 1 Replies

Screen Resolution - Change My Program's Size Correct To Make Program,  800x600 Such As Minimum?

Jun 1, 2010

I made vb.net program for 1440x900 resolution, if i run my program on 800x600 or 1024x768, my program's resolution is bigger then windows, so i have problem with resolution. Now i want to change my program's size and i am interested in, wich resolution is correct to make program, 800x600 such as minimum?

View 9 Replies

Take A Screen Pic Of A Certain Area

Mar 26, 2010

oksice there is no way to grab an image using its source i was wondering if there is a way to taking a screen pic at a certain x,y coordinates in a webbrowser1 then displaying it in a picture box.

View 3 Replies

Screen Size - Screen On My Netbook Is Only 1024x600 And Half My GUI Is Missing

Feb 8, 2011

I have created a GUI and have set my 'Form1' window to match that of my PC monitor ( 1280x1024 ). However when i move the project to work on my netbook, the screen on my netbook is only 1024x600 and half my GUI is missing. Is there any way i can adjust my settings so that my 'Form1' GUI will auto adjust and display in full on both screen when i move the project back and forth?

View 2 Replies

Make The Width Of The Textbox Relative To The Form Size When The Form Is Resized

Oct 24, 2009

I have a form with a text box in a toolstrip. I would like to make the width of the textbox relative to the form size when the form is resized. The following code works fine except when you click the restore button from a maximized state.

[Code]...

View 6 Replies

Specify The Exact Size Of The Client Area?

Oct 2, 2009

I need my window to be an exact size. Isn't it possible to specify the exact size of the client area (the drawable part) as opposed to the entire form including the menu bars etc?

View 7 Replies

Custom Area In Screen?

Sep 6, 2010

In my program, there is an option for a custom size object. I want the user to be able to click on the upper-left corner and then click in the lower-right corner and save the location as integers. How can I do this?

View 3 Replies







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