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
rakesh aytha
NA
15
9.8k
List object 's selected cells value capture in excel 2007 using vsto 3.0
Nov 9 2011 1:49 AM
Hi All,
Here i m trying with listobject control in excel 2007..here i took one list control and made database fields to populate in list..
What i need is i want to update the database directly when we update the cells in list control in excel..
for that i need to capture the cell which is modified...
for that firstly i'm capturing rownumber and then through that rownumber i want to find the value which is modified and i need to update the datbase directly...
hope everyone understand this..
Here is my code...
int i= list1.SelectedIndex;
string x = "A" + i.ToString();
string y = "B" + i.ToString();
var cell = list1.Range["Type.Missing", y];
string p = Convert.ToString(cell);
I know that P value shows error...
but i want to know the cells value here by any means..
Reply
Answers (
0
)
Dynamic Stored procedures,whether to create in the application code behind/database?
CODE CONTENT