Posts tagged VB.NET
Storing and retrieving Images from Access database using VB.Net
Feb 24th
Download source files (38.52 kb) Download demo project (52.11 Kb) Introduction This is a simple code snippet which is used to store and retrieve images from Access database using VB.net. Code Private Sub ShowDetails() Try Dim cn As New OleDb.OleDbConnection Dim cmd As OleDb.OleDbCommand Dim dr As OleDb.OleDbDataReader cn.ConnectionString = mstrConnection cn.Open() cmd = [...]