Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C++ and Visual C++ > C++ Programming
|
C++ Programming General discussions for the C++ language. For questions specific to Microsoft's Visual C++ variant, see the Visual C++ forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C++ Programming section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
  #1 (permalink)  
Old May 10th, 2008, 11:53 PM
Registered User
 
Join Date: May 2008
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Help me - fill dataGridView from struct array

Hello,

I am using a dataGridView in my dialog based application developed in c#

And I want to fill that dataGridView from a array of structure.

 struct student
 {
 int nRollno;
 string strName;
 int nTotalMark;
 }

I tried as follows,

Code:
student[] arrayStudentList = new student[10];

//Fill 10 student list here and assign as follows

dataGridView.DataSource = m_arrayStudentList;

but columns are displays in different order like as follows:
-------------------------------
nTotalMark | nRollno | strName
-------------------------------

but i want grid display as folows:
-------------------------------
nRollno | strName | nTotalMark
-------------------------------

Please help me.

Thanks
Ranjith.

Reply With Quote





Similar Threads
Thread Thread Starter Forum Replies Last Post
pointer to struct goscho C++ Programming 1 January 10th, 2008 07:23 AM
Dynamic array of struct bobwrx C# 2 September 14th, 2006 06:12 AM
fill two-dimensional array tobian Excel VBA 0 February 21st, 2006 05:55 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.