|
|
|
ต้องการเพิ่มคอลั่มใน datagrid เพื่อดูจำนวนวันรวมจากวันที่แลกจนถึงปัจจุบัน |
|
|
|
|
|
|
|
ผมต้องการเพิ่มคอลั่มใน datagrid เป็นคอลั่มบอกจำนวนวันรวม โดยนับวันที่จากคอลั่มแรกจนถึงวันที่ปัจจุบันครับ ว่าได้กี่วัน ต้องเพิ่มโค๊ดส่วนไหนบ้างครับ ช่วยบอกหน่อยคับ ขอบคุณคัรบ
Code (VB.NET)
Public Sub Load_Billsendblack()
sql = "SELECT CM_billclaim.datereceive, CM_billclaim.claimID, CM_billclaim.cusID, custumernew.custumer_name, custumernew.custumer_address, CM_billclaim.unit_total FROM CM_billclaim INNER JOIN custumernew ON CM_billclaim.cusID = custumernew.custumer_idfull WHERE CM_billclaim.status='" & "รอส่งคืน" & "'"
DA = New SqlDataAdapter(sql, cn)
DS = New DataSet
DA.Fill(DS, "table")
dgvBillsend.DataSource = DS.Tables("table")
setupdatagrid()
End Sub
Public Sub setupdatagrid()
With dgvBillsend
.Enabled = True
.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing
.ColumnHeadersHeight = 32
.Columns(0).HeaderText = "วันที่"
.Columns(0).Width = 80
.Columns(1).HeaderText = "เลขที่"
.Columns(1).Width = 110
.Columns(2).HeaderText = "รหัสลูกค้า"
.Columns(2).Width = 80
.Columns(3).HeaderText = "ชื่อ"
.Columns(3).Width = 120
.Columns(4).HeaderText = "ที่อยู่"
.Columns(4).Width = 90
.Columns(5).HeaderText = "จำนวน"
.Columns(5).Width = 70
'.Columns(6).HeaderText = "จำนวนวัน"
'.Columns(6).Width = 70
.Columns(0).DefaultCellStyle.Format = "dd/MM/yyyy"
End With
For Each col As DataGridViewColumn In dgvBillsend.Columns
col.HeaderCell.Style.Alignment = DataGridViewContentAlignment.MiddleCenter
col.HeaderCell.Style.Font = New Font("Arial", 12.0F, FontStyle.Bold, GraphicsUnit.Pixel)
col.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter
Next
With dgvBillsend
.DefaultCellStyle.BackColor = Color.AliceBlue
.AlternatingRowsDefaultCellStyle.BackColor = Color.LightBlue
End With
End Sub
Tag : .NET, Ms SQL Server 2008, VB.NET, C#, VS 2010 (.NET 4.x), VS 2015 (.NET 4.x)
|
|
|
|
|
|
Date :
2019-01-29 14:50:34 |
By :
Tikzaa |
View :
822 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Add Column ที่ตัว Datatable ที่ Query มาได้ครับ
หรือ
เพิ่ม Column จากใน Query เลยครับคำนวนให้เรียบร้อย
|
|
|
|
|
Date :
2019-01-29 14:54:26 |
By :
Da_che |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้แล้วนะครับ ขอบคุณคับ
|
|
|
|
|
Date :
2019-01-30 15:00:37 |
By :
Tikzaa |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|