1
Answer

image viewing in data grid view in dbms

Aasif Rao

Aasif Rao

7y
170
1
i have saved record with image of student in library management system and student_image has variable varchar(50).
but when i  tried to display in grid view also then it shows exception of "perimeter is not valid"
please suggest me solution .
error occurs in line where i used ### in code below. 
 
private void textBox1_KeyUp(object sender, KeyEventArgs e)
{


dataGridView1.Columns.Clear();
dataGridView1.Refresh();
int i = 0;
if (con.State == ConnectionState.Open)
{
con.Close();
}
con.Open();
SqlCommand cmd = con.CreateCommand();
cmd.CommandType = CommandType.Text;
cmd.CommandText = "select * from student_info where student_name like('%"+ textBox1.Text +"%') ";
cmd.ExecuteNonQuery();
DataTable dt = new DataTable();
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(dt);
dataGridView1.DataSource = dt;

Bitmap img;
DataGridViewImageColumn imageCol = new DataGridViewImageColumn();
imageCol.HeaderText = "student_image";
imageCol.ImageLayout = DataGridViewImageCellLayout.Zoom;
imageCol.Width = 100;
dataGridView1.Columns.Add(imageCol);
foreach (DataRow dr in dt.Rows)
{
#### img = new Bitmap(@"..\..\" + dr["student_images"].ToString());
dataGridView1.Rows[i].Cells[8].Value = img;
dataGridView1.Rows[i].Height = 100;
i = i + 1;
}
}
}

}
 
Answers (1)
0
Sanket Jain

Sanket Jain

NA 619 53k 9y
Thanks.
 
But I don't have fixed Max & min date.
So, I write a code in Textchanged event & in that I'm checking the Textbox date with Max & min date.
If textbox date is between the range of min & max date then its ok else gives Errormessage.
0
Vignesh Mani

Vignesh Mani

NA 13.4k 938.3k 9y
Hi Just try below mentioned code.
 
<asp:TextBox ID="txtDate" runat="server" ReadOnly = "true"></asp:TextBox>
<br />
<asp:RangeValidator runat="server" ID="RangeValidator1" Type="Date" ControlToValidate="txtDate" MaximumValue='09/20/2011' MinimumValue="09/01/2011"
ErrorMessage="Date should be between 09/01/2011 and 09/20/2011" Display="Dynamic" />