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
ahmed sa
NA
289
128.8k
Save image from picture box to hard disk proplem
Jun 14 2014 3:12 AM
I using this code to show image in c# 2008
try
{
string
[] fileNames =
Directory
.GetFiles(
"\\\\192.168.1.5\\Hani"
);
foreach
(
string
file
in
fileNames)
{
if
(file.Contains(textBox1.Text))
{
pictureBox1.Image =
Image
.FromFile(
Path
.Combine(
"\\\\192.168.1.5\\Hani"
, textBox1.Text)+
".JPG"
);
}
}
}
catch
(
Exception
ex)
{
MessageBox
.Show(ex.ToString ());
}
it is success in display image but how to save picture in hard disk c drive or d or any location
Reply
Answers (
2
)
operators
data storing logic