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
santhosh saripalli
NA
45
51.1k
progressbar in windows application
Jun 25 2014 2:14 AM
i have code to extract rar files .i want to assosiate a progress bar for this process of extraction.below is my code.could you please add progressbar to it.
public void UnZip()
{
string DestinationPath = @"C:\Temp\DATA_UNITS\BusinessObjectsServer_win\response.ini";
Shell32.Shell sc = new Shell32.Shell();
System.IO.Directory.CreateDirectory("C:\\TEMP");
Shell32.Folder output = sc.NameSpace("C:\\TEMP");
string sourcePath = Application.StartupPath + "\\51047839.ZIP";
Shell32.Folder input = sc.NameSpace(sourcePath);
output.CopyHere(input.Items());
System.IO.File.Delete(DestinationPath);
}
Reply
Answers (
1
)
how to calculate time difference in c#
Binding Values From ListView To Textbox and Combobox