Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
さまざまなソースからの文字列を一緒に追加したいのですが、機能していないようです... 私のコード
int num = 0; string s = std::to_string(num); this->richTextBox1->Text = "Copying files... (" + s + "%)"; //this doesn't work
PS:次のようなコードを追加する方法-num = num + 1
num = num + 1
Textプロパティが ではないため、機能しませんstd::string。
Text
std::string
を使用して、結果std::stringを に変換できます。const char*c_str()
const char*
c_str()
this->richTextBox1->Text = ("Copying files... (" + s + "%)").c_str();