python748 / alternate-java-bridge-library

Automatically exported from code.google.com/p/alternate-java-bridge-library
Apache License 2.0
0 stars 0 forks source link

Request notifier method ShowMessageDialog be UN-deprecated #136

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I find myself using this method more than the others for the notifier class 
because it is the easiest to use and accomplishes what I need.  It's not a huge 
deal, i can always continue to use it, but can you undeprecate it in the next 
release so I don't have to keep seeing the line strike thru in eclipse.

Original issue reported on code.google.com by bric...@gmail.com on 24 Apr 2013 at 2:42

GoogleCodeExporter commented 8 years ago
Use ShowDialog(msg, title, buttonText). It's the exact same thing, hence why 
showmessagedialog is deprecated.

If you want two buttons, just add the button text (ex ShowDialog("message", 
"title", "OK", "Cancel").

You can add up to three buttons. It all uses the same method, which is why the 
others were deprecated.

Original comment by IMPINC...@gmail.com on 27 Apr 2013 at 6:07