frmDownload.vb
上传用户:szledliu
上传日期:2021-01-29
资源大小:13805k
文件大小:1k
源码类别:

C#编程

开发平台:

C#

  1. '///////////////////////////////////////////
  2. 'This form is just and example of 1 thing you 
  3. 'might choose to do in the event of a file download.
  4. 'There are many good examples of file downloading
  5. 'and download managers all over online if you
  6. 'choose to implement a download manager.
  7. '///////////////////////////////////////////
  8. Public Class frmDownload
  9.     Public DLURL As String
  10.     Private Sub frmDownload_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  11.         Me.lblInfo.Text = "Confirm download of file: " & _
  12.         DLURL
  13.     End Sub
  14.     Private Sub btnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancel.Click
  15.         Me.Close()
  16.     End Sub
  17.     Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
  18.         Me.Close()
  19.     End Sub
  20. End Class