我正在研究从 Excel 打开文件的过程。我想插入一个检查,如果用户在没有选择文件的情况下按打开,那么会有一个消息框弹出警告。
这是我要插入支票的代码的一部分。我尝试使用Is Nothing
,但它对我不起作用。
If GetOpenFileName.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
fileStream = GetOpenFileName.OpenFile()
If (fileStream Is Nothing) Then 'I tried checking here, but it does not fire.
vmbContinue = MsgBox(strAlert, MsgBoxStyle.RetryCancel + MsgBoxStyle.Critical, "No Workbook Seletected")
If vmbContinue = MsgBoxResult.Cancel Then
xlWB.Close(SaveChanges:=False)
Exit Sub