|
-
June 9th, 2014, 06:21 AM
#9
Re: get image based on textbox proplem
 Originally Posted by Arjay
It's not clear what the problem is.
Do you have code that displays the FolderBrowserDialog? If so..
In the fb dialog can you navigate to the network drive? If so..
Are you able to retrieve the full network path to the file? If so..
Does the image display?
Does any of this work with an image on a local drive?
Please create a small test app, zip it up and post it here.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Drawing.Imaging;
using System.IO;
namespace FleetManagment
{
{
FleetManagment.Fleet fleet2 = new FleetManagment.Fleet();
private void button2_Click(object sender, EventArgs e)
{
try
{
string[] fileNames = Directory.GetFiles("D:\\Images");
foreach (string file in fileNames)
{
if (file.Contains(textBox1.Text))
{
pictureBox1.Image = Image.FromFile(Path.Combine("D:\\Images", textBox1.Text) + ".jpg");
}
else
{
MessageBox.Show("File not exist");
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString ());
}
}
}
}
The code above is get picture from local machine and work successfully what i need is :
1- get image from server 192.168.1.10 in folder path D:/images
2-if folder images not have image written in textbox and press
any file name wrong in textbox it give me exception
how to prevent exception from show
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|