|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
can you please tell me the code for geting active window by vc++.please its very urgent.i want to implement it in jni.
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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.
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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?
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
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) // My addition END_MESSAGE_MAP() The OnDblClkList1() function is as follows:
void CWindowSizerDlg::OnDblClkList1() { OnBnClickedButton2(); OnBnClickedOk(); } [/edit]
Ryan
He who laughs last thinks too slowly.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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)
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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]
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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...
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
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?
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
1) What did you do with the tray icons menu? I didnt look into the code, but the menu is pretty far off from the icon when the taskbar is in the right side of the screen. 1.5) open WindowSizer's about dialog and press ctrl+alt+f12 -> not good.
Otherwise, useful program
int x=1, y=5; x^=y^=x^=y; // whats the content of x and y now? ClickHereForHelp();
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
 |
|
|
I have to come back and recomment on this one Nish - I love it! It is second nature to use it now, and I find myself pressing CTRL+ALT+F12... ENTER rather than restoring windows, and every time Internet Explorer looses my windows size settings - before I would have to close every instance down and resize again from scratch.
This is a real timesaver!
Just one note - if you do change the default key combo add a "for David" version with the current settings -- I know the source is available, but it works so well as-is there is no need to recompile it. 
And I am still using the beta version...
I'm not schizophrenic, are we.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |