http://p2ktools.motofan.ru/p2ktools2.shtml
Там есть ссылки типа:
http://p2ktools.motofan.ru/P2KTools2/pl ... t10Url.rar
Сервер выдаёт, что по этому адресу лежит файл с ContentType text/plain.
Далее возникает событие NavigateError, затем FileDownload.
Мне надо вместо стандартного диалога загрузки поместить свой, что я и делаю.
Далее делаю Cancel=True, но это игнорируется, и появляется стандартный диалог загрузки. В MSDN по этому поводу записано совершенно чётко:
FileDownload Event
--------------------------------------------------------------------------------
Fires to indicate that a file download is about to occur. If a file download dialog is to be displayed, this event is fired prior to the display of the dialog.
Syntax
Private Sub object_FileDownload( _
ByRef bCancel As Boolean)
Parameters
object
Object expression that resolves to the objects in the Applies To list.
bCancel
Boolean that specifies whether to continue the download process and display the download dialog.
false
Default. Continue with the download process and display download dialog.
true
Cancel the download process.
Remarks
This event allows alternative action to be taken during a file download.