整数と組み合わせたテキストで構成されているメッセージを表示するのに問題があります
これが私のコードです:
int integerNumberOfImportantAppointments = calCalendar.getNumberOfImportantAppointments();
if (integerNumberOfImportantAppointments > 0)
{
ShowMessage("You have " + integerNumberOfImportantAppointments + " important appointments. Do you wish to view them?");
}
次のエラーが発生します:E2085無効なポインタの追加
これを機能させるために助けてもらえますか?
ありがとう