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
ankit dubey
NA
9
1k
FarPoint.Web.Spread.ComboBoxCellType data limitation
May 29 2018 2:29 AM
Preparing the excel sheet data from c# code and saving it does not populating all the data.
I m using Farpoint.Web.Spread.ComboBoxCellType columns for dropdown list, the character length is limited to less than 255 chracters.
Usin the below code block :
FarPoint.Web.Spread.ComboBoxCellType cb = new FarPoint.Web.Spread.ComboBoxCellType();
string[] arr = new string[50];
for (int r = 0; r < 50; r++)
{
arr[r] = "ItemItemItemIten_ienenehn" + r;
}
cb.Items = arr;
svFields.Columns[1].CellType = cb;
Please help!
Reply
Answers (
0
)
Text file writing in c#
Type of delegates in c# with example.