既に try catch と追加のメッセージ ボックスを含むコードを記述しましたが、メッセージ ボックスをリソース ファイルに配置する必要があります。
これは私のコードです:
public void btnUpload_Click(object sender, EventArgs e)
{
try
{
// in the filepath variable we are going to put the path file that we browsed.
filepath = txtPath.Text;
if (filepath == string.Empty)
{
MessageBox.Show("No file selected. Click browse and select your designated file.");
}
}