473,788 Members | 2,715 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

MFC: How to resize a control with only SendDlgItemMess age (ie. without MoveWindow)

Is it possible to change the size of a Windows object (in this case a
PictureBox) without calling MoveWindow?

I'm writing a plugin for Winamp, in which I want to display a smooth
bar that displays a continuously changing output value.

In this Winamp plugin I cannot use the SendMessage command because it
causes lockups with Winamp. I _can_ use SendDlgItemMess age.

The following code does the job:
MoveWindow(GetD lgItem(pitch_co ntrol_hwnd, IDC_BMP), 500, 400, out_val, 10, FALSE);

Unfortunately, MoveWindow uses SendMessage commands internally, so I
get lockups.

How can I change the size without getting any SendMessage calls?

Notes: I know I can use a ProgressBar for this, but in WinXP, they are
not smooth anymore, but drawn with blocks that are too big.

Any other ideas to display a (smooth) bar on the screen with a
changing size are also welcome...

Regards,

Theo
----
Apr 18 '06 #1
11 5589
Theo Appelboer wrote:
Is it possible to change the size of a Windows object (in this case a
PictureBox) without calling MoveWindow?

I'm writing a plugin for Winamp, in which I want to display a smooth
bar that displays a continuously changing output value.


Try a Progress Bar control. If that doesn't work, then override WM_PAINT.
Don't use MoveWindow for a lowly animation effect. Paint the animation into
the window.

But you will get much better help on a newsgroup that covers the Windows
SDK. This group discusses the raw C++ language itself.

--
Phlip
http://www.greencheese.org/ZeekLand <-- NOT a blog!!!
Apr 18 '06 #2
* Phlip:
Theo Appelboer wrote:
Is it possible to change the size of a Windows object (in this case a
PictureBox) without calling MoveWindow?

I'm writing a plugin for Winamp, in which I want to display a smooth
bar that displays a continuously changing output value.
Try a Progress Bar control. If that doesn't work, then override WM_PAINT.
Don't use MoveWindow for a lowly animation effect. Paint the animation into
the window.


Please don't help change this into a Windows programming group.

But you will get much better help on a newsgroup that covers the Windows
SDK. This group discusses the raw C++ language itself.


That's an extreme position, an exaggeration, useful only to get the
point across. But now you demonstrate that the point has eluded you
completely. Even the exaggeration doesn't help: you reflect it back to
someone else, here Theo, without having understood anything.

Perhaps instead of an exaggeration, a limited but clear rule: in this
group do /not/ discuss how to use the Windows API, MFC, or the like.

No, purely Linux-related questions /or answers/ aren't OK, either.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Apr 18 '06 #3
Alf P. Steinbach wrote:
Please don't help change this into a Windows programming group.


Are you in a bad mood?

--
Phlip
http://www.greencheese.org/ZeekLand <-- NOT a blog!!!
Apr 18 '06 #4
Phlip wrote:
Alf P. Steinbach wrote:
Please don't help change this into a Windows programming group.


Are you in a bad mood?


I don't know; but more important, he is right.
Best

Kai-Uwe Bux
Apr 18 '06 #5
Kai-Uwe Bux wrote:
Please don't help change this into a Windows programming group.


Are you in a bad mood?


I don't know; but more important, he is right.


You all read and reviewed my post "how to bounce a post". I have posted it
here many times, and nobody has complained about the line item "if you
can't help, don't bounce".

If you don't want to reply to that post, then don't do the "passive
aggressive" thing by whining about this post.

A bounce post should not just say, "your post is off topic go away". Tell
newbies that posting to the best newsgroup will help them get the best
answer.

The person who started this thread will not post off-topic here again, and
will very soon learn how to do their progress bar correctly.

--
Phlip
http://www.greencheese.org/ZeekLand <-- NOT a blog!!!
Apr 18 '06 #6

Phlip wrote:
A bounce post should not just say, "your post is off topic go away". Tell
newbies that posting to the best newsgroup will help them get the best
answer.


Why will posting in the best newsgroup get them the best answer? Two
reasons: firstly, it's the most likely place to find someone who knows
the answer; secondly, the most topical group will provide the highest
quality peer-review.

I don't think anyone objects to you telling the OP that going to a
different group will be better for them, but you also posted an
off-topic answer to the question and that's completely different.
Unlike answers in a topical group, your off-topic answer won't be
peer-reviewed. If you get it wrong, the OP will never know. At best
you've given the OP nothing more than a topical group will. At worst,
you've given them misinformation that nobody will correct.

So the OP is better off if you don't give off-topic answers. What about
the rest of the forum? People read your message only to discover it's
off-topic and wasting bandwidth. There's a long term risk of potential
posters getting the impression that off-topic questions will get
answered here. The more you encourage off-topic questions, the more you
help to lower the signal to noise ratio. To try and protect against
that long term risk, an otherwise unnecessary thread springs up solely
made up of people telling you to stop it.

So: no benefit, potential harm - don't do it.

Gavin Deane

Apr 18 '06 #7
Gavin Deane wrote:
So: no benefit, potential harm - don't do it.


Thank you for not appealing to authority!

--
Phlip
http://www.greencheese.org/ZeekLand <-- NOT a blog!!!
Apr 18 '06 #8
Gavin Deane wrote:
[..]
So the OP is better off if you don't give off-topic answers. What
about the rest of the forum? People read your message only to
discover it's off-topic and wasting bandwidth. [..]


I don't any more. I killfiled him. Enough's enough.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Apr 18 '06 #9
Phlip wrote:
Kai-Uwe Bux wrote:
Please don't help change this into a Windows programming group.

Are you in a bad mood?


I don't know; but more important, he is right.


You all read and reviewed my post "how to bounce a post". I have
posted it here many times, and nobody has complained about the line
item "if you can't help, don't bounce".


You know, just because you post something doesn't mean we have to
follow it. I happen to think your ideas are pretty bad for the most
part, I just don't feel like arguing them out. I just ignore them.


Brian
Apr 18 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
4873
by: Caronte | last post by:
Hi all, I have a problem using Custom control class inside a DLL Extension. My Custom control use Class property to specify the register class name for the control. Both Dialog Class and Custom control class are inside the dll. When i run the application i can't view the dialog and Vc++ display an error on ShowWindow procedure.
5
8782
by: andy.g.ward | last post by:
I keep getting this when trying to create an MFC activex control in a c# windows service - anyone got any ideas what the missing module could be??? Exception thrown : System.IO.FileNotFoundException: The specified module could not be found. at System.Windows.Forms.UnsafeNativeMethods.CoCreateInstance(Guid& clsid, Object punkOuter, Int32 context, Guid& iid) at System.Windows.Forms.AxHost.CreateWithoutLicense() at...
2
1491
by: DaveKline | last post by:
I'm a new VB programmer, trying to use the VB Express 2005 development environment. Currently, when I try to resize any of the controls in a form designer window, I get an error that says "object reference not set to an instance of an object". This is true from the first moment when I make a new project from scratch. However, up until today, I had been able to resize the controls at will. Also, I can still resize the controls using the...
3
1351
by: MLH | last post by:
Me!AddnlOwnrList.Width = 5.1875 Me.Repaint Have tried the above in the on got focus event code to make the listbox control wider when its being used. I tried it in the Enter and Exit event code too. My control more or less disappears when the Width property is set when tabbing into the control and does not come back when tabbing off the control. I've never
2
5442
by: Mark Ingram | last post by:
Hi, ive got a custom control, which i like to keep at a fixed size (or a fixed ratio). So, during the OnSizeChanged function, i specify values for width and height. Which in *some* cases (i dont know why only some cases) results in stack overflow because changing the height results in OnSizeChanged being called again. What is the correct way of altering the size of the control after a user has changed the controls size?
1
917
by: James Arnold | last post by:
How is it possible to add 'fixed' jumps when resizing a control? For example, the listbox will only allow you to resize it so a full row will be displayed. I have a segmented progress bar that I would like to only show complete segments. Thank you!
1
2431
by: skyy | last post by:
Hi... I am creating a MFC ActiveX control porject... I would like to create a text box when the activeX object is load. How do i do it? Thanks!
4
5658
by: DeanJo | last post by:
I am trying to develop a resize module i can include on my pages that calculates the size of input fields based on the screen resolution... I can already detect the screen resolution, and i have the width / height multiplier for every resolution i need to support... my problem is this... I want the include file to be totally universal so heres my plan I will use CSS styles to set the current text box size... i want the javascript to then...
2
2270
by: AdamOnAccess | last post by:
Hi, I'm trying to find an event in the web browser control that triggers when the user clicks on a link inside the control and arrives at a new page. My web browser control only shows 5 events in the property list: On Updated, On Enter, On Exit, On Got Focus, and On Lost Focus. Is this all the events? I've tested the On Update event with debug.print, and it does not fire when a user clicks inside the control, or when the user arrives...
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10366
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10110
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9967
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8993
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6750
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4070
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3674
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.