My image is being stored in a folder called D:\Project\Imag e\...jpg
Inside my Mircosoft access i made a field called ImageFile . And copy paste the image path into the field in text
Using
Here is my code -- which is not giving me anything
ps i am a beginner
How do i make the image appear at the Image Control Image2
How do i convert text into image?
Inside my Mircosoft access i made a field called ImageFile . And copy paste the image path into the field in text
Using
Code:
OleDbCommand sqlquery = new OleDbCommand("SELECT * FROM StudentDatabase WHERE Name ='" + TxtName.Text + "' ", ConnectionString);
OleDbDataReader reader = sqlquery.ExecuteReader();
while (reader.Read())
{
Image2.ImageUrl += reader[9] + "";
}
ps i am a beginner
How do i make the image appear at the Image Control Image2
How do i convert text into image?
Comment