Skip to main content

Review open_file_box (Internal use only)

Implementation

Example

message_box::show(string::format("Selected files are:\n{}", string::join("\n", file_names)));
  • instead
xtd::string txt;
for (auto& filename : file_names) txt += filename + '\n';
message_box::show(string::format("Selected files are:\n{}", txt));

Documentaton