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
A Repasky
NA
231
182.8k
Instance problem.
Apr 12 2013 7:44 PM
I copied some code online and everything looked well until I ran it and got an error on the return line below. Does anyone have an idea what I should do?
arep
public
static
Cell
GetCell(
WorksheetPart
workSheetPart,
string
cellAddress)
{
return
workSheetPart.Worksheet.Descendants<
Cell
>().SingleOrDefault(c => cellAddress.Equals(c.CellReference));
}
System.NullReferenceException: Object reference not set to an instance of an object.
at DetailReport.GenData.<>c__DisplayClass1.<GetCell>b__0(Cell c) in c:\CLI\CS\DetailReport\GenData.cs:line 122
at System.Linq.Enumerable.SingleOrDefault[TSource](IEnumerable`1 source, Func`2 predicate)
at DetailReport.GenData.GetCell(WorksheetPart workSheetPart, String cellAddress) in c:\CLI\CS\DetailReport\GenData.cs:line 122
at DetailReport.Program.ExtractData(String product, String reporttitle, String whereClause, String lob) in c:\CLI\CS\DetailReport\Program.cs:line 168
at DetailReport.Program.GenDetailReports() in c:\CLI\CS\DetailReport\Program.cs:line 114
at DetailReport.Program.Main(String[] args) in c:\CLI\CS\DetailReport\Program.cs:line 36
It is called this way:
Cell
cell7 =
GenData
.GetCell(wsp1, celladdress);
Reply
Answers (
5
)
Open xml speadsheet border & bold problems
What is the get and set function?