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
Aldio Kaminang
NA
3
4.6k
Cannot find column [name]
Oct 23 2020 5:12 PM
private
void
textBox_Search_TextChanged(
object
sender, EventArgs e)
{
DataTable dbdataset =
new
DataTable();
try
{
DataView DV =
new
DataView(dbdataset);
DV.RowFilter =
string
.Format(
"nama LIKE '%{0}%'"
,textBox_Search.Text);
metroGrid_SearchCS.DataSource = DV;
}
catch
(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
This is my project, i didn't search customer name with textbox. And i got Cannot find column [name]
Anyone can help me.
Thank you
Reply
Answers (
5
)
Capture Cellphone camera picture without preview
Form 1 listbbox value pass in form 2 label “help Me In This Code”