TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Akbar Mukhtar
NA
4
3.1k
OledbException Data type mismatch in criteria expression
Jun 16 2011 11:11 AM
i get a problem like this OledbException Data type mismatch in criteria expression. in ad.Fill(xDataset, "TblMaster") i'm using access database and Telerik Reporting
...:::this my code:::...
Please Help me this is my last problem for this project
Public Sub TanggalX()
conn.Open()
Dim str As String = "Select * From TblMaster Where Tanggal='" & (Me.DateTimePicker1.Value.Date.ToString("yyyy/MM/dd")) & "'"
ad = New OleDb.OleDbDataAdapter(str, conn)
xDataset.Clear()
ad.Fill(xDataset, "TblMaster")
obj_RepDoc = New Report1
obj_RepDoc.DataSource = (xDataset)
Me.ReportViewer1.Report = obj_RepDoc
Me.ReportViewer1.RefreshReport()
conn.Close()
End Sub
Reply
Answers (
1
)
Compare string in vb.net
InlineAssignHelper