#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Thu, 21 Feb 2019 14:45:15 +0100
changeset 6541 5d5a796a3701
parent 6540 f16a4870c7c8
child 6542 9bc32510b526
#FEATURE by cg class: DialogBox class added: #information:with:with:
DialogBox.st
--- a/DialogBox.st	Wed Feb 20 10:29:54 2019 +0100
+++ b/DialogBox.st	Thu Feb 21 14:45:15 2019 +0100
@@ -1343,6 +1343,18 @@
     "Created: / 15-02-2019 / 09:40:50 / Claus Gittinger"
 !
 
+information:aString with:arg1 with:arg2
+    "launch a Dialog to tell user something"
+
+    self information:(aString bindWith:arg1 with:arg2)
+
+    "
+     Dialog information:'help %1 %2' with:'foo' with:1234
+    "
+
+    "Created: / 21-02-2019 / 14:44:45 / Claus Gittinger"
+!
+
 informationText:aString title:windowTitle
     "launch a Dialog to tell user something.
      The argument aString is shown as multiline, scrollable text"