1

Check all these images: Screenshots of message

Most programs show the same message if a required file is missing. The title of the message is also translated if Windows language isn't English.

I can't find this method that is used by most Windows programs.

I know how to check if file exist and show a MessageBox (C#), but I want to use this Windows built-in method.

1 Answers1

0

Take a look at this page.
There even is an example written in C#.

  • Can you send a link to the exmaple? – user6484212 Jun 19 '16 at 10:42
  • Scroll down a bit. But I would recommend you to use a 'normal' MessageBox. As far as I think there is a function in VS to translate your texts [here](http://stackoverflow.com/questions/17170102/translating-a-visual-studio-project). –  Jun 19 '16 at 13:10
  • It's not about the translation. I just want to use the same method of file checking like all other programs in Windows. – user6484212 Jun 19 '16 at 15:20
  • You asked about a Windows-built-in-MessageBox. Take a look at [this](https://en.wikipedia.org/wiki/Windows_API) and maybe you will find what you are searching for. –  Jun 19 '16 at 15:44
  • It is only an explanation about the Windows API. I read it and didn't find what I am searching for. – user6484212 Jun 19 '16 at 22:27