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
Rey Lopez
NA
5
0
using Filestream to export to exel
Aug 7 2012 12:40 PM
Hello,
I need help in exporting to excel from Filestream. When the data gets written to the file its only getting written in 1 line..
ex. FAAT0010926 URCS
it should be 2 separate columns in excel.
here is part of the code.
using (streamwriter sw=new StreamWriter(filename))
{
for (int i=0;i<1;i++)
{
sw.Write(firstlinedata1);
sw.Wrtier(firstlinedata2);
sw.Flush();
sw.Close();
}
....
thanks in advance
}
Reply
Answers (
1
)
What is Datamanager
temp code that im struggling with