 |
|
ขอวิธีเปลี่ยนค่า itemdata gridview ให้แสดงผล โดยใช้ 2db |
|
 |
|
|
 |
 |
|
Code (VB.NET)
Sub ChangeNumToText()
Dim Bath As String = txtSmoney.Text 'ตัวแปร Bath เก็บค่าตัวเลขจาก txtSmoney
Dim convert As String = "" 'ตัวแปร convert เก็บค่าตัวเลขที่ได้จาก Bath
'แปลงอักษรหลักหน่วย
Dim txtnum1() As String = {"ศูนย์", "หนึ่ง", "สอง", "สาม", "สี่", "ห้า", "หก", "เจ็ด", "แปด", "เก้า", "สิบ"}
'แปลงอักษรหลัก สิบ ร้อย พัน หมื่น แสน ล้าน
Dim txtnum2() As String = {"", "สิบ", "ร้อย", "พัน", "หมื่น", "แสน", "ล้าน"}
Dim number As String 'ตัวแปร number เก็บค่าตัวเลขที่ได้ในรูปแบบ String
Dim number1 As Array 'ตัวแปร number1 เก็บค่าตัวเลขที่ได้ในรูปแบบ Array
Dim Len As Integer 'ตัวแปร len เก็บค่าความยาวตัวเลข
Dim i As Integer 'ตัวแปร i ใช้ในการวนลูป
Dim n As String 'ตัวแปร n เก็บค่าตัวเลขที่อ่านได้จาก txtSmoney
'กรณี txtSmoney เป็นค่าว่าง
If Bath = " " Then
Bath = "1"
End If
ลองไปแปลงดู
|
 |
 |
 |
 |
Date :
2017-08-23 14:38:42 |
By :
S-Hyun |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ผมหมายถึงว่า เราจะดึงข้อมูล oracle มาแทรกใน gridview ยังไงครับ เพราะต้อง bind data ออกมาจาก sql ครับ (มันออกมาเป็นตัวเลข)
แต่ผมต้องการให้มันแสดงออกมาเป็นตัวอักษรใน gridview ครับ โดยเลขที่ออกมาจาก sql มันเป็นเลขที่มีค่าเทียบไว้แล้วครับ (เช่น 001 = กรุงเทพ ประมาณนี้ครับ oracle ในงานของผมเป็นข้อมูลตายตัวครับ เรียกใช้งานอย่างเดียว)
ยังไงก็ขอบคุณที่มาตอบนะครับ
|
ประวัติการแก้ไข 2017-08-23 15:35:51 2017-08-23 15:36:11
 |
 |
 |
 |
Date :
2017-08-23 15:33:33 |
By :
aaaaaaaaaa |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองเปลี่ยน เอา datatable โยนให้กับ gridview แทนได้มั้ยครับ
ไม่ต้องไปดึงตรงๆ เวลาเราอยากได้ column ที่เราต้องการมาแสดงด้วย ก็ new column ใน datatable ก่อนโยนให้ gridview
|
 |
 |
 |
 |
Date :
2017-08-23 17:21:51 |
By :
Da_che |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ผมใช้เก็บค่าเป็น datatable มาแปลงครับ แต่ติดแบบนี้ คืออะไรครับ
มันขึ้น error อะครับ ว่า error A column named 'UNP_TRADE_TERMCon' already belongs to this DataTable
ใน eval ผมใช้ชื่อ UNP_TRADE_TERMCon หรือว่าต้องเป็นชื่อของ ฟิวใน dbครับ
อันนี้เป็น loop ใน gridview นะครับ
Code (VB.NET)
'Gridview
Dim dtGV As DataTable
Dim dtcon As DataTable = New DataTable()
dtGV = GridImp(docnoGV)
If dtGV.Rows.Count > 0 Then
For i As Integer = 0 To dtGV.Rows.Count - 1
Dim UNP_PORTCon As String = ""
Dim UNP_TRADE_TERMCon As String = ""
Dim drcon As DataRow
dtcon.Columns.Add(New DataColumn("UNP_PORTCon", GetType(String)))
dtcon.Columns.Add(New DataColumn("UNP_TRADE_TERMCon", GetType(String)))
UNP_PORTCon = dtGV.Rows(i).Item("UNP_PORT")
UNP_TRADE_TERMCon = dtGV.Rows(i).Item("UNP_TRADE_TERM")
Dim dtcon1 As DataTable = gPartofDescheck(UNP_PORT)
If dtcon1.Rows.Count > 0 Then
UNP_PORT = dtcon1.Rows.Item(0).Item("code_cmmt").ToString()
End If
Dim dtcon2 As DataTable = checkTrade1impcon(UNP_TRADE_TERM)
If dtcon2.Rows.Count > 0 Then
UNP_TRADE_TERM = dtcon2.Rows.Item(0).Item("code_cmmt").ToString()
End If
drcon = dtcon.NewRow()
drcon("UNP_PORTCon") = UNP_PORTCon
drcon("UNP_TRADE_TERMCon") = UNP_TRADE_TERMCon
dtcon.Rows.Add(drcon)
Next
Me.GridView1.DataSource = dtcon
GridView1.DataBind()
|
ประวัติการแก้ไข 2017-08-25 08:54:10 2017-08-25 08:55:01
 |
 |
 |
 |
Date :
2017-08-25 08:52:36 |
By :
aaaaaaaaaa |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|