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
John Doe
NA
7
0
Get data from DataGridView
May 25 2009 8:03 AM
Hello everyone.I have a problem with reading data from DataGridView to array. Use code: int[,] n = new int[3,19]; for (int i = 1; i <= StartDataView.Rows.Count; i++) { for (int j = 1; j <= StartDataView.Columns.Count; j++) { n[i - 1, j - 1] = (int)StartDataView.Rows[i].Cells[j].Value; } } but all values results is "null",I tried Value.ToString(),but also no result.What I do wrong?
Reply
Answers (
7
)
how to increment a variable's value which is of type time
Connecting to remte database through windows application