 |
|
 |
This is now not working in Windows 7
|
|
|
|
 |
|
 |
I see this program works well, but could you possibly implement an option that excludes the window border?
The reason for this is that I need to record a video (using Fraps), though I'd like to set the windows contents to 1280x720 so I get a video of this resolution. Currently setting the window to 1280x720 makes the contents a bit smaller, meaning my video won't be the correct resolution.
|
|
|
|
 |
|
 |
Great tool to check out if a codeproject article fits on the screen.
|
|
|
|
 |
|
 |
Great Article, It helps me, Thanks
My vote for 5
|
|
|
|
 |
|
 |
although this works fantastic on both xp 32-bit and vista 64-bit...i would love to see a "save custom size" .
im trying to add a few of my own default window sizes (have to type them in manually in this version, apart from the defaults)
|
|
|
|
 |
|
 |
Hi!
I'm having trouble using the program. When it launches, it sits in the notification area and waits for the Key sequence. However, I have another program that uses the same sequence. When I enter the sequence, Window Sizer is omitted and this other program is activated instead.
Is there a workaround to avoid this 'conflict'?
Best of luck
Kirill Osipov
|
|
|
|
 |
|
 |
Yeah .. this is the same behaviour for me in Win7
|
|
|
|
 |
|
|
 |
|
 |
can you please tell me the code for geting active window by vc++.please its very urgent.i want to implement it in jni.
|
|
|
|
 |
|
 |
Hi Nish,
I have a project created in VC++ which gives me .lib file after compilation. I want to use this file into one of my c# projects. Can you tell me, how can achieve this. I came to know that I have to create a wrapper and then I can call the functions of the .lib file, but I don't know how to do that. Can you help me.
Regards
Paresh
|
|
|
|
 |
|
 |
Yahoo Messenger 6.0 has an annoying big window. This tool can not make it smaller than its minmal size. There could be something in yahoo messenger that's preventing that.
|
|
|
|
 |
|
 |
I often use this to resize cascaded windows. This is a very useful tool, however I'd like to see the following improvements:
1. ability to set a default custom size
2. ability to resize multiple windows without hitting the hide button.
3. Ability to resize all active windows at one click
Thanks,
Wayland Moncrief
|
|
|
|
 |
|
 |
I got a bitmap displayed in the client area of my window.
The bitmap fills the client area in 800x600 display setting.
But in 1024x768 the client area increases and the bitmap does'nt fill the client area. How can I solve this problem?
|
|
|
|
 |
|
 |
collincode wrote:
I got a bitmap displayed in the client area of my window.
The bitmap fills the client area in 800x600 display setting.
But in 1024x768 the client area increases and the bitmap does'nt fill the client area. How can I solve this problem?
Window Sizer only resizes the main window of an application or any top level window that you specify. It does not resize individual controls inside the window that is being resized. To have automatic resizing of your dialog/window child-controls (like this bitmap you mention) take a look at some of the auto resizing dialog articles here on CodeProject
Regards
Nish
Extending MFC Applications with the .NET Framework [NW] (coming soon...)
Summer Love and Some more Cricket [NW] (My first novel)
Shog's review of SLASMC [NW]
Come with me if you want to live
|
|
|
|
 |
|
|
 |
|
 |
Extremely handy little tool.
What about the possibility of double-clicking on one of the resolutions to automatically resize the window AND hide the WindowSizer box? Would make the process even quicker than it is already!
[edit]
I've implemented this myself. The additions are shown below:
in WindowSizerDlg.h, at the bottom of the class definition
afx_msg void OnDblClkList1(); in WindowSizerDlg.cpp
BEGIN_MESSAGE_MAP(CWindowSizerDlg, CDialog)
...
ON_LBN_DBLCLK(IDC_LIST1, OnDblClkList1) END_MESSAGE_MAP()The OnDblClkList1() function is as follows:
void CWindowSizerDlg::OnDblClkList1()
{
OnBnClickedButton2();
OnBnClickedOk();
}[/edit]
Ryan
He who laughs last thinks too slowly.
|
|
|
|
 |
|
 |
Guys,
I've created a mod to Nish's original version, which uses an XML file to specify a Class and WindowCaption, to search for specific windows, and then set the window's size and location by iterating the XML file.
Just don't know the approach required to post this modified version.
(I've also modified it so it's a Visual Studio 6 compile)
|
|
|
|
 |
|
 |
Paul Farry wrote:
Just don't know the approach required to post this modified version.
When you base a work/article on someone else's it's usual practice to mention that your work is based on so-and-so's work and put a link to the original article. And explain what you changed and how you changed etc... You can submit it to submit@codeproject.com or you can use the article submission wizard to directly submit it. As the author of the original work I hereby give you proper authority to do this
Nish
Author of the romantic comedy
Summer Love and Some more Cricket [New Win]
Review by Shog9
Click here for review[NW]
|
|
|
|
 |
|
 |
Wowsers, this really is something that I was looking for, for a long time now
Very nice distribution too, complete with an installer... that's how I like the software !
Lost in cyberspace...
|
|
|
|
 |
|
|
 |
|
 |
Hi Nish,
Great app I am finding it very useful.
One small niggle though, where are the standard windows sizes, i.e.
1024 x 768, 1152 x 684, 1280 x 1024, 1600 x 1200.
I know I can put them in as a custom size put it would have been nice to include them in the list.
Is there an easy way to add these settings?
And may be even remove ones I don't use
Like I say still a great app.
Thanks
Regards
Ian
|
|
|
|
 |
|
|
 |
|
 |
Thanks to Brian Delahunty, I found this excellent tool.
--
standing so tall, the ground behind
no trespassers, on every floor
a garden swing, and another door
she makes it clear, that everything is hers
A place of abode, not far from here, Ms. Van de Veer
|
|
|
|
 |
|
|
 |
|
 |
I got a bitmap displayed in the client area of my window.
The bitmap fills the client area in 800x600 display setting.
But in 1024x768 the client area increases and the bitmap does'nt fill the client area. How can I solve this problem?
|
|
|
|
 |