how to use InputBox in c++builder with multiple values
问题 How can I use InputBox to make it take 3 Values. I can make it show just one value by using code: String input[3]; input[0]= InputBox("paied check", "the value", ""); any help? 回答1: InputBox() does not support what you are asking for. It is designed for single-value input only. InputQuery() supports multi-value input, but only in C++Builder XE2 and later, eg: String prompt[3] = {"value 1:", "value2:", "value 3:"}; String input[3]; if( InputQuery("paied check", EXISTINGARRAY(prompt),