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
leo ochoa
NA
60
510
How to add item to listbox and then send email.
Jan 30 2019 11:32 PM
Good day guys, I'm a semi-intermediate here in c#. Actually, the said topic name it won't work with my codes implemented, i need some help on how to improve my timer tick procedure code as shown what I've tried below.
private
void
timer1_Tick(
object
sender, EventArgs e)
{
statmessage();
int
i = listBox1.SelectedItems.Count + 1;
do
{
var exp = (EItem)listBox1.Items[i];
var timeVisible = DateTime.Now - exp.Added;
if
(timeVisible.TotalSeconds > 5)
if
(counter == 100)
{
SendMessage();
counter = counter - 1;
++i;
}
else
if
(counter <= 0)
{
statmessage();
}
}
while
(i < -1);
}
}
}
Your feedback is highly appreciated and will help to improve the said concern, Thank you very much.
Reply
Answers (
3
)
i want checkbox in gridview check/Uncheck based db value ??
Update data using Entity model