 |
|
เรื่องการแปลงข้อมูลชนิด binary เป็น string ใน VB.NET ครับ เข้ามาอ่านทีครับ |
|
 |
|
|
 |
 |
|
จะแปลงไปทำอะไรครับ 
|
 |
 |
 |
 |
Date :
2011-02-11 09:24:28 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (VB.NET)
Private Function LoadDatabase()
UserRec = New ADODB.Recordset
UserRec.Open("Select * from tb_user", Conn, 1, 2)
FingerRec = New ADODB.Recordset
FingerRec.Open("Select * from tb_fingerprint", Conn, 1, 2)
'Load all fingerprint
UserFinRec = New ADODB.Recordset
UserFinRec.Open("Select * from tb_user u,tb_fingerprint f " & _
"where u.uID=f.f_uid", Conn, 1, 2)
Dim Template() As Byte
While Not UserFinRec.EOF
ReDim Template(UserFinRec("fTemplate").ActualSize)
Template = UserFinRec("fTemplate").Value
'Add finger from database to identify (1-N)
ScanerCtrl1.AddIdentifyDB(Template, UserFinRec("fID").Value & _
":" & UserFinRec("uName").Value)
UserFinRec.MoveNext()
End While
'Prepare memory for storage identify data (1-N)
ScanerCtrl1.LockIdentifyDB()
End Function
ตัวนี้เป็นส่วน load database ครับ ผมจะแปลงยังไงเหรอครับ และตรงฟิลด์ fTemplate เป็นไฟล์ชนิด binary นะครับ
|
 |
 |
 |
 |
Date :
2011-02-11 14:31:44 |
By :
ppanchai |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ง่ะ เงียบ แงๆ
|
 |
 |
 |
 |
Date :
2011-02-13 12:49:49 |
By :
ppanchai |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอโค๊ดตอนเกบลายนิ้วมือบ้างได้มั๊ยคับ
|
 |
 |
 |
 |
Date :
2011-06-04 16:06:13 |
By :
heri_0070 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|