Questions tagged [maximize-window]

This tag refers to the process of increasing the size of a UI window to its fullest, so that it takes up the entire screen.

134 questions
0
votes
2 answers

Maximize button that triggers password prompt before maximizing?

Short Explanation: I'm trying to create a pop-up Password prompt that is fired when the Maximize-window button is clicked. Longer Explanation: I'm working on a GUI whose default dimensions hide sensitive controls from the user. Clicking on the…
blockheadjr
  • 53
  • 1
  • 1
  • 5
0
votes
1 answer

Xpages xsp popup form + disable close button

I have a xsp form in Xpages, and this is called in a JS file as follows: PopupWin = window.open('PopupWin1.xsp?iddoc='+id,'','width='+w+',height='+h+',top='+pt+',scrollbars=yes,resizable=yes,left='+pl); I want to disable (grey-out) the close button…
daggakilla
  • 25
  • 1
  • 1
  • 6
0
votes
1 answer

Re-sizing controls that are next to each other when maximizing window size

I am having trouble re-sizing some of my controls when I give a window the ability to be maximized. The two controls lies next to each in the window as displayed in the picture. I have experimented with various ways of anchoring, docking, and auto…
Code Vader
  • 739
  • 3
  • 9
  • 26
0
votes
1 answer

Nothing happens when I close maximized MDI child form

I have Form1 with 2 radio buttons (rb1 and rb2) and one ordinary button (btn). When I click on btn I should open Form2, as MDI child of Form1 if rb1 is checked, or as ordinary Dialog if rb2 is checked. Also, there can only be one Form2 opened at any…
sruzic
  • 125
  • 12
0
votes
0 answers

'The operation can not be performed' - Error message in QTP

I am using QTP to automate a Java Application. With the following code, I am trying to maximize a JavaWindow which is simply taken from QTP's record and playback. JavaWindow("MyAppWindow").Maximize This code is working fine in most of the cases.…
Dinesh
  • 16,014
  • 23
  • 80
  • 122
0
votes
1 answer

Maximize button does not work using Tkinter in RHEL5

I created a minimal Tkinter GUI as follows: import Tkinter root = Tkinter.Tk() root.mainloop() Everything is fine if I run the above code on RHEL5, except that the maximize button does not work properly(resizing is available). If I click the…
0
votes
1 answer

is there any command to change all font when i maximize windows in vb?

In my program, my default font is fit to small windows but user can maximize windows and then all font is too small when user do that. I would like to increase all font size in all page of my program when user maximize a windows. I can change size…
BOSS
  • 43
  • 7
0
votes
1 answer

Maximized owned Form not restoring correctly

I have a button on a form which opens a new form as an owned form. (It's very simple, no other logic than below) public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button2_Click(object…
Adam S-Price
  • 1,988
  • 2
  • 15
  • 21
0
votes
1 answer

mono gtk maximize but still space on top

Hy all, I'm playing around with monodevelop and am using gtk for the window. Curently i'm using Windows 7 x64. The problem that i'm having is that when i'm maximizing the window ( by hand or by program, that doesn't matter ) there's still some space…
Mathlight
  • 6,436
  • 17
  • 62
  • 107
-1
votes
1 answer

PowerShell control maximise / restore for console window

I have these handy functions to flip console sizes from the command line. The only problem is that they don't work if the console window is in the maximized state. Is there a way to toggle Maximize / Restore for the console window from the…
YorSubs
  • 3,194
  • 7
  • 37
  • 60
-1
votes
1 answer

How to make a maximize and normal windowstate all in one button

I want a simple way to maximize and normal windowstate all in one button (click me for image) Method (code) c# coding - int maxornot; private void MaxButton_Click(object sender, EventArgs e) { this.WindowState =…
-1
votes
2 answers

C# maximize a form from another form

I am trying to do speech recognition for my application. I have the Speech Recognition form (Form2) and my main form (Form1). I want to find a way to maximize Form1 from Form2. I have already learned about speech recognition and I don't need help…
Nicholas Hein
  • 119
  • 1
  • 11
-3
votes
1 answer

How do you set a frame (awt)'s size to fullscreen in a simple java statement?

I would like to set my frame automatically to fullscreen. Is this possible, and if yes how? Thanks
-3
votes
2 answers

I know how to do a Maximize Button, but how do I do a Restore Button in VB?

I was just wondering how to make a 'Restore' button in my Form? But changes from Maximized to Restore on the button?
GregRogers
  • 13
  • 1
  • 6
1 2 3
8
9