1楼:可爱的康猪
首先拖一个抄openfiledialog控件。bai和一个按钮和textbox
然后双du击按钮产生zhi事件
在里面些这些dao**就ok
this.openfiledialog1.showdialog();
this.textbox1.text = this.openfiledialog1.filename;
2楼:
添加一个floderbrowserdialog控件 命名为
3楼:
|openfiledialog filedialog = new openfiledialog();
// filedialog.initialdirectory = "d:\\";
filedialog.title = "选择文件";
filedialog.filter = "xml files (*.xml)|*.xml";
filedialog.filterindex = 1;
filedialog.restoredirectory = true;
if (filedialog.showdialog() == dialogresult.ok)
else
在c#中如何取得文件路径和文件名并显示在文本框中?
4楼:匿名用户
openfiledialog1.showdialog();
textbox1.text=openfiledialog1.filename;
c#中,如何让textbox控件显示数据库中我要的数据或者文本
5楼:匿名用户
若是你前台有拉了一个textbox控件的话,就直接在后台写
string txt=“数据库查询后所获得的值”
textbox控件名.text=txt。tostring();
6楼:匿名用户
后台先把数据库或文本要显示的数据读取出来
然后编写**this.lable1.text=变量;
this后面输入.后,能直接预览的到lable标签的名字。
7楼:匿名用户
textbox1.text=dt.rows[0]["username"].tostring();
textbox2.text=dt.rows[0]["password"].tostring();
sqlconnection con = new sqlconnection();
con.connectionstring="";
con.open();
sql***mand cmd = new sql***mand();
cmd.connection = con;
cmd.***mandtext = "select * from tb_users";
sqldataadapter sda = new sqldataadapter();
sda.select***mand = cmd;
datatable dt=new datatable();
sda.fill(dt);
8楼:
textbox textbox = new textbox();
textbox.text = "想要的显示的文本";