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
adam gills
NA
65
14.3k
installer.msi windows dialogbox
Nov 10 2016 3:19 AM
I have Two winform1-frmcheckupdate 2-FrmUserLogin
simple I run our application ,if updated installer ".msi" is available then show a message box with MessageBoxButtons.YesNo to update existing ".msi".
if i click "YES" then updation start successfully,
But if i click "NO" then I want to show dialog as "FrmUserLogin " form and closed form as frmcheckupdate.
I have try as below code -
frmchkupdate fu = new frmchkupdate();
fu.Close();
fu.Hide();
//checkForUpdate.StopThread();
// fu.Dispose();
FrmUserLogin fl = new FrmUserLogin();
fl.ShowDialog();
plz tell me why frmchkupdate is not closed/hide.
Reply
Answers (
1
)
how to modify particular rows in a grid ?
access locally stored files using c#