工具箱右鍵單擊——選擇項……——選擇.net組件或com組件——點擊“瀏覽”選擇控件dll文件,然后工具箱中就會出現(xiàn)新加的控件
成都創(chuàng)新互聯(lián)公司是一家專業(yè)提供漢陰企業(yè)網(wǎng)站建設,專注與網(wǎng)站設計制作、成都做網(wǎng)站、html5、小程序制作等業(yè)務。10年已為漢陰眾多企業(yè)、政府機構等服務。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡公司優(yōu)惠進行中。
VB.NET窗體上的所有控件的屬性都保存在 窗體名.designer.vb 中,但是是在編譯前,編譯以后就直接在exe文件里面了。
vb.net使用控件FolderBrowserDialog1,在程序中:
'設置對話框中在樹視圖控件上顯示的說明文本
Me.FolderBrowserDialog1.Description = "請選擇輸出報表所在路徑:"
'設置從其開始瀏覽的根文件夾
Me.FolderBrowserDialog1.SelectedPath = "c:\"
If Me.FolderBrowserDialog1.ShowDialog() = DialogResult.OK Then
'取得全路徑(包含文件名)
reportPath1 = System.IO.Path.GetFullPath(Me.FolderBrowserDialog1.SelectedPath)
'設定text顯示文件名
txtReport1.Text = reportPath1
setReportList()
End If
在setReportList()中針對你所需要的文件進行操作等
vb.net使用控件folderbrowserdialog1,在程序中:
'設置對話框中在樹視圖控件上顯示的說明文本
me.folderbrowserdialog1.description
=
"請選擇輸出報表所在路徑:"
'設置從其開始瀏覽的根文件夾
me.folderbrowserdialog1.selectedpath
=
"c:\"
if
me.folderbrowserdialog1.showdialog()
=
dialogresult.ok
then
'取得全路徑(包含文件名)
reportpath1
=
system.io.path.getfullpath(me.folderbrowserdialog1.selectedpath)
'設定text顯示文件名
txtreport1.text
=
reportpath1
setreportlist()
end
if
在setreportlist()中針對你所需要的文件進行操作等