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
Wiryono Lauw
NA
4
4.6k
Data grid view event
Aug 15 2010 2:06 AM
Hi All
I need to create app and mostly to do with data and of course using datagridview
I develop using C# with WinForm
No there is a lot of occasion when using datagridview that you need to click on one cell than it return an information such as opening in new form or perhaps pass the data to other class etc.
The event will be using the DataGridViewCellEventArgs like this
void dgCellContentClick(object sender, DataGridViewCellEventArgs e) {
//put all the function on click here
}
Now it works it works but it super slow
all the event inside above function is call after 5-6 second after I click the cell sometime i need to change click the other cell before it works out.
I put a simple event to return the rowindex I selected like this
MessageBox.Show(e.RowIndex.toString()) ---- see how simple is this
but it slow
My datagrid only have 10 rows in it.
Is it a problem in the dataset or other else ?
Reply
Answers (
1
)
Generics
Problem in Table Adapter and Datagrid view