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
pavithran
NA
69
0
Mapping ArrayList to DataGrid -- Problem
Apr 7 2005 2:12 AM
Hi, the code below given is displaying lenght of strings in datagrid rather displaying the string names ___________________________________________________ private System.Windows.Forms.DataGrid dataGrid1; private System.Windows.Forms.DataGridTableStyle dgTabStyle; ArrayList arraList = new ArrayList(); arraList.Add("pavithran"); //9 arraList.Add("Pavi"); //4 arraList.Add("Nani"); //4 dgTabStyle.MappingName = "ArrayList"; dataGrid2.TableStyles.Add(dgTabStyle); dataGrid2.DataSource = arraList; ___________________________________________________ can u help me to display names rather displaying name lengths. thanx pavithran
Reply
Answers (
2
)
Add Existing Item
Problem with on_load event. Why is this happening?