Vitus
Resource contributor
- Messages
- 1,480
- Country

Hi,
Is it possible to use the MAKE_STRING macro with it automatically using word wrap?
Currently, the macro looks like this:
I tried adding DT_WORDBREAK to the formatting parameter, but that doesn't seem to have any impact. Do I have to set up multiple string macros and break the text manually?
Is it possible to use the MAKE_STRING macro with it automatically using word wrap?
Currently, the macro looks like this:
C++:
MAKE_STRING(
dialog_message,
NULL,
NULL,
IMAGE_USE_ERASE | IMAGE_USE_BRIGHT,
0,
240, 150,
540, 150,
MAX_PATH,
MODULE_VAR_NONE,
MODULE_VAR_NONE,
MODULE_VAR_NONE,
RGB(77,75,148),
RGB(189,189,189),
RGB(128,0,0),
GAUGE_FONT_DEFAULT,
GAUGE_CHARSET,
0,
DT_LEFT,
NULL,
reply_string_cb)
I tried adding DT_WORDBREAK to the formatting parameter, but that doesn't seem to have any impact. Do I have to set up multiple string macros and break the text manually?

