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
mohammed jaseefar
NA
217
20.1k
how export Array of a complex class to Excel using Interop
May 17 2018 5:27 AM
private
void
btnDoctor_Click(
object
sender, EventArgs e)
{
Clear();
EmployeeWebservice.EmployeeData [] hm;
hm = hc.GetAllDoctors(lg);
dataGridView1.DataSource = hm;
SSiNETProjectLibrary.Utils.DataGridViewExport.exportToExcel(dataGridView1);
MessageBox.Show(
"Doctors Details Exported"
,
""
, MessageBoxButtons.OK, MessageBoxIcon.Information);
lblmsg.Text =
""
;
}
The above one iam tried, it is working.. but i can not customize because of the use of a external dll.
anybody can give the source using interop?
Reply
Answers (
1
)
What are the best way to design beautiful UI ?
how to transfer data from datagridview to crystal report.