Luca Matteis
Luca Matteis

Reputation: 29267

Windows C dialog resizer

This page provides lots of libraries to handle item resizing and re-adjustment, but they're all for C++. Is there anything I can use for plain C?

Upvotes: 2

Views: 135

Answers (1)

Bernd Elkemann
Bernd Elkemann

Reputation: 23550

You can call MoveWindow() do not only move but also resize Windows and Dialogs:

http://msdn.microsoft.com/en-us/library/ms633534%28VS.85%29.aspx

Upvotes: 1

Related Questions