首页 新闻 会员 周边

如何导出max中的定点数据以及纹理信息

0
悬赏园豆:50 [待解决问题]

RT,     要用工具导出成.x文件?

枫夜月的主页 枫夜月 | 初学一级 | 园豆:122
提问于:2011-09-30 14:08
< >
分享
所有回答(1)
0

 string conn = " Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source =" +FileName + ";Extended Properties=Excel 8.0";
            string Sql = "select  * from [" + Table + "$]" + " where " + Condition + "<> null";
            OleDbConnection thisconnection = new OleDbConnection(conn);
            thisconnection.Open();
            OleDbDataAdapter mycommand = new OleDbDataAdapter(Sql, thisconnection);
             DataSet  ds = new DataSet();
            mycommand.Fill(ds, "[table]");
            thisconnection.Close();

丿那年丶花开 | 园豆:55 (初学一级) | 2011-09-30 17:26
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册