|
|
|
สอบถาม คือ ข้อมูลใน Gridview ทำยังไงให้จัด ตั้วอักษรให้มันชิดเท่ากันได้ครับ |
|
|
|
|
|
|
|
สอบถาม คือ ข้อมูลใน Gridview ทำยังไงให้จัด ตั้วอักษรให้มันชิดเท่ากันได้ครับ
Code (VB.NET)
Dim sqlland2 As String = ""
sqlland2 = "SELECT HOUSE_ID,BUILD_TYPE_NAME,HOUSENO,MOO,TAMBON_TH,DISTRICT_TH,PROVINCE_TH,EVALUATE_TAX FROM house_tax WHERE (OWNERID='" & txtOWNERID_HOUSE.Text & "')"
With Conn
If .State = ConnectionState.Open Then .Close()
.ConnectionString = strConnstring
.Open()
End With
If Not (ds.Tables("house_tax") Is Nothing) Then
ds.Tables("house_tax").Clear()
End If
da = New SqlDataAdapter(sqlland2, Conn)
da.Fill(ds, "house_tax")
DataGridView2.DataSource = ds.Tables("house_tax")
'txtsearch.Clear()
Dim cs As New DataGridViewCellStyle
cs.Font = New Font("ms sans serif", 12, FontStyle.Regular)
cs.Alignment = DataGridViewContentAlignment.MiddleCenter
cs.ForeColor = Color.Blue
With DataGridView2
.ColumnHeadersDefaultCellStyle = cs
.Columns(0).HeaderText = "รหัสบ้าน"
.Columns(1).HeaderText = "ลักษณะโรงเรือน"
.Columns(2).HeaderText = "บ้านเลขที่"
.Columns(3).HeaderText = "หมู่"
.Columns(4).HeaderText = "ตำบล"
.Columns(5).HeaderText = "อำเภอ"
.Columns(6).HeaderText = "จังหวัด"
.Columns(7).HeaderText = "ค่าภาษี"
.Columns(0).Width = 100
.Columns(1).Width = 130
.Columns(2).Width = 50
.Columns(3).Width = 50
.Columns(4).Width = 80
.Columns(5).Width = 80
.Columns(6).Width = 120
.Columns(7).Width = 130
.Columns(0).SortMode = DataGridViewColumnSortMode.NotSortable
.Columns(1).SortMode = DataGridViewColumnSortMode.NotSortable
.Columns(2).SortMode = DataGridViewColumnSortMode.NotSortable
.Columns(3).SortMode = DataGridViewColumnSortMode.NotSortable
.Columns(4).SortMode = DataGridViewColumnSortMode.NotSortable
.Columns(5).SortMode = DataGridViewColumnSortMode.NotSortable
.Columns(6).SortMode = DataGridViewColumnSortMode.NotSortable
End With
Tag : .NET, Ms SQL Server 2008, Win (Windows App), VB.NET, VS 2012 (.NET 4.x)
|
|
|
|
|
|
Date :
2012-09-23 13:43:53 |
By :
pisansri |
View :
1059 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมใช้แบบลูกทุ่ง
Code (VB.NET)
DataGridView1.Columns(0).DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter
|
|
|
|
|
Date :
2012-09-23 14:18:35 |
By :
Downrung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-09-23 14:30:22 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2012-09-24 12:56:23 |
By :
pisansri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|