 |
|
(แปลง VB เป็น C# ) ใครแปลง function data set ได้มั่งครับ ติดปัญหา |
|
 |
|
|
 |
 |
|
Code (C#)
public void genExcelHQ()
{
DataSet ds = new DataSet();
ds = GetDataClaimReport(this.tbStratDate.Text, this.tbStopDate.Text);
}
Code (C#)
public DataSet GetDataClaimReport(string stDateTime, string spDateTime)
{
try {
string strConn = null;
strConn = "server=" + "192.168.1.1" + ";";
strConn += "database=" + "DATABASE" + ";";
strConn += "uid=" + "sa" + ";";
strConn += "pwd=" + "password";
string sql = null;
sql = "EXEC USP_RPT_REPORTJOB'" + stDateTime + "','" + spDateTime + "'";
DataSet ds = new DataSet();
SqlConnection conn = new SqlConnection(strConn);
SqlCommand cmd = new SqlCommand(sql, conn);
conn.Open();
cmd.CommandTimeout = 6000;
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(ds);
//cmd.ExecuteNonQuery()
conn.Close();
return ds;
} catch (Exception ex) {
Interaction.MsgBox(ex.Message);
return null;
}
}
|
 |
 |
 |
 |
Date :
2014-05-19 16:05:19 |
By :
mr.win |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

ภาพที่1

ภาพที่2

ภาพที่3
แก้ตามที่ พี่บอกแล้วยังขึ้น error อยู่ครับ
|
ประวัติการแก้ไข 2014-05-19 16:24:44
 |
 |
 |
 |
Date :
2014-05-19 16:24:00 |
By :
nongpaoza |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ได้แล้วขอบคุณมากครับ
|
 |
 |
 |
 |
Date :
2014-05-19 16:43:09 |
By :
nongpaoza |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|