Как сделать так, чтобы datagridview отображал только файлы с расширением pdf
Привет друзья:
У меня есть datagriedview отображает имя файлов из базы данных sql server, эти файлы являются расширениями png, jpg и pdf
Я хочу, чтобы ограничить datagriedview, чтобы отобразить только расширение PDF
Что я уже пробовал:
this is the code I used to fill datagridview from the database: <pre> adapter = New SqlDataAdapter("select TBL_Attaches.AttachID, TBL_Attaches.AttachName, TBL_Attaches.AttachDate, TBL_CatFailes.CatName from TBL_Attaches inner join TBL_CatFailes on TBL_Attaches.CatID = TBL_CatFailes.CatID", con) Dim dtG As New DataTable adapter.Fill(dtG) dgAttached.DataSource = dtG