I've looked through previous postings, but this exact thing doesn't seem to have come up.
Given this snippet:
use Win32::GUI;
$box = Win32::GUI::MessageBox(undef, "Message", "Title", MB_OK);
...how do I change the text in the box as needed AFTER the box has been created? I'm needing the Win32::GUI equivalent of Tk's $widget->configure(-option=>"value")
Given this snippet:
use Win32::GUI;
$box = Win32::GUI::MessageBox(undef, "Message", "Title", MB_OK);
...how do I change the text in the box as needed AFTER the box has been created? I'm needing the Win32::GUI equivalent of Tk's $widget->configure(-option=>"value")