System caption

  • Thread starter Thread starter Wally
  • Start date Start date
W

Wally

Hi all.
I need to retrieve caption of system buttons. For example: in italian o.s.
Cancel button is "Annulla", in english o.s. it is "Cancel" and so on. I need
to install my application on different operative systems. Is there an API or
another way to retrieve those system caption?

Thanks.

W
 
You might instead want to look at the Internationalization support that's
installed in .NET so that you can support more than just button captions in
other languages.

--
 
Hi, Wally,

if you can get handle of button, you can use SendMessage Win32 API with
WM_GETTEXT. You can look up details in Platform SDK help or on MSDN.

HTH
Alex
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top