 |
|
ติดปัญหาเรื่อง ขอโชว์รูปในการ ค้นหาข้อมูลครับ ไม่รู้ว่าจะใช้โค๊ด อะไร ช่วยด้วยครับ |
|
 |
|
|
 |
 |
|
Code (VB.NET)
Sub Search()
If TbxSearch.Text = "" Then
MessageBox.Show("กรุณาระบุรหัสพนักงานก่อน !!! ", "ข้อผิดพลาด", MessageBoxButtons.OK, MessageBoxIcon.Error)
Exit Sub
End If
Dim sql As String
Dim dr As OleDbDataReader
Dim ID As String
ID = TbxSearch.Text.Trim
sql = "select * from Employee where IDEmployee='" & ID & "'"
Dim cmd As New OleDbCommand
cmd.CommandType = CommandType.Text
cmd.CommandText = sql
cmd.Connection = connect
dr = cmd.ExecuteReader
If dr.HasRows Then
dr.Read()
TbxIDEmployee.Text = dr.Item("IDEmployee").ToString
CMBTitleName.Text = dr.Item("TitleName").ToString
TbxFullName.Text = dr.Item("FullName").ToString
CmbDay.Text = dr.Item("_Day").ToString
CmbMonth.Text = dr.Item("_Month").ToString
CmbYear.Text = dr.Item("_Year").ToString
TbxAddress.Text = dr.Item("Address").ToString
MPhoneNumber.Text = dr.Item("PhoneNumber").ToString
MIDCard.Text = dr.Item("IDCard").ToString
DateTimePicker1.Value = dr.Item("Start").ToString
TbxAppointment.Text = dr.Item("Appointment").ToString
CMBEducation.Text = dr.Item("Education").ToString
TbxBranch.Text = dr.Item("Branch").ToString
TbxSalary.Text = dr.Item("Salary").ToString
Picture.Image = dr.Item("Picture").ToString
TbxSearch.Text = ""
Else
MessageBox.Show("ไม่พบพนักงานในระบบ", "ค้นหา", MessageBoxButtons.OK, MessageBoxIcon.Error)
TbxSearch.SelectAll()
End If
ListBox1.Enabled = False
Dim text As String
text = MessageBox.Show("ต้องการค้นหาข้อมูลพนักงานต่อหรือไม่", ".", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
If text = MsgBoxResult.Yes Then
Else
ListBox1.Enabled = True
End If
Picture.Image = dr.Item("Picture").ToString <<< มันไม่ถูกต้องอ่ะครับ มีวิธีอื่นอีกไหมครับ ช่วยแนะด้วยครับ
Tag : .NET, Ms Access, VB.NET, VS 2008 (.NET 3.x)
|
|
 |
 |
 |
 |
Date :
2011-02-03 16:34:41 |
By :
Digitalhong |
View :
1119 |
Reply :
4 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Picture.Image = Image.fromfile(dr.Item("Picture").ToString)
|
 |
 |
 |
 |
Date :
2011-02-04 08:27:56 |
By :
kaimuk |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Error ครับ มันเป็นตามภาพอ่ะครับ
Code (VB.NET)
Dim fiStream As New FileStream(TbxFilename.Text, FileMode.Open, FileAccess.Read)
Dim binReader As New BinaryReader(fiStream)
Dim pic() As Byte = binReader.ReadBytes(fiStream.Length)
cmd.Parameters.AddWithValue("Picture", pic)
ตอนผมเซฟไฟล์มันเป็น Binary เกี่ยวกันไหมครับ ลองใช้ Code แล้ว Error อ่ะครั ช่วยดูให้ด้วยครับ
|
 |
 |
 |
 |
Date :
2011-02-04 20:10:07 |
By :
Digitalhong |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
โอ้ เก็บภาพไว้ใน Database ผมไม่ค่อยจะสันทัดอ่ะครับถ้าท่านเก็บภาพไว้แบบนี้ เพราะการเก็บภาพแบบนี้เขาไม่ค่อยทำกันอ่ะครับเพราะมันจัดการยาก
|
 |
 |
 |
 |
Date :
2011-02-05 08:14:01 |
By :
kaimuk |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
แล้วทำเก็บเป็นอะไรหรอครับ เพราะ Binary มันสามารถเก็บค่า .Jpg และไฟล์อื่นได้ใช้ไหมครับ
แต่ถ้าเป็นไฟล์ .bmp มันเป็นเก็บได้แค่ Bitmap อย่างเดียว อ่ะครับ ไม่ทราว่าจะพอ รู้วิธีไหมครับ
|
 |
 |
 |
 |
Date :
2011-02-05 12:21:11 |
By :
Digitalhong |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|