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
priya
NA
32
11.5k
deletetable
Jun 16 2015 6:48 AM
private void Deletetable()
{
try
{
mshtmlTable table = null;
mshtmlTableRow row = null;
GetTableElement(out table, out row);
// process according to table being defined
if (table != null)
{
var tableElement = table as IHTMLDOMNode;
if (tableElement != null)
{
var parentNode = tableElement.parentNode;
if (parentNode != null)
{
parentNode.removeChild(tableElement);
}
}
}
else
{
MessageBox.Show("You have not selected any table");
}
}
catch
{
MessageBox.Show("Insert table to process this commmand");
}
}
this is the code for delete table.. but ctrl+z not working in it..
i just want to improve this method as ctrl+z working in it...
Reply
Answers (
2
)
convert SQL to LINQ
Calculate row count