I am using the InputBox component in Embarcadero or Borland C++ with a default string. The Cancel key returns the same default string as the Enter button.

According to the documentation, the Cancel key is supposed to return an empty string.

String s = InputBox("Title", "Prompt", "Default");
if (s == "") return;  // Cancel key pressed
... use string s

I have seen a solution using StrPtr in VB. Is there an equivalent in C++? VB6 InputBox Cancel

link|improve this question

5  
If you found an answer, post it as an answer. If you have to wait a certain duration of time before doing so, then wait that certain duration of time then do so. Thanks. – Lightness Races in Orbit Sep 15 '11 at 13:49
feedback

2 Answers

If the user chooses the Cancel button, InputBox returns the default value.

XE2 API DocWiki

So, basically you can just make default string empty and it will be returned with the Cancel.

link|improve this answer
feedback
up vote 0 down vote accepted

I have found a solution that uses InputQuery instead of InputBox. The InputQuery functions returns FALSE if the Cancel button is selected. The DefaultString is returned on Enter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.