Re: [sqlite] new to sqlite rec'd BadImageFormatException error

2011-05-05 Thread kp2011
.exe? Or > visa versa. > > Joe Mokos > Sr. Software Engineer > OPNET Technologies, Inc. > jmo...@opnet.com > (603) 598-2582 x377 > > -Original Message- > From: sqlite-users-boun...@sqlite.org > [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of kp2011 >

Re: [sqlite] new to sqlite rec'd BadImageFormatException error

2011-05-05 Thread kp2011
gt; Which build of the SQLite library and the ADO.NET provider are you using? > > On Wed, May 4, 2011 at 9:17 PM, kp2011 <kpaul...@nwrain.com> wrote: >> >> this is the vb net code I was running >> >> Dim f As New OpenFileDialog >>  

Re: [sqlite] new to sqlite rec'd BadImageFormatException error

2011-05-04 Thread kp2011
I tried several different sqlite.dlls now it works Thanks kp2011 wrote: > > this is the vb net code I was running > > Dim f As New OpenFileDialog > f.Filter = "SQLite 3 (*.db)|*.db|All Files|*.*" > If f.ShowDialog() = DialogResult.O

[sqlite] new to sqlite rec'd BadImageFormatException error

2011-05-04 Thread kp2011
this is the vb net code I was running Dim f As New OpenFileDialog f.Filter = "SQLite 3 (*.db)|*.db|All Files|*.*" If f.ShowDialog() = DialogResult.OK Then Dim SQLconnect As New SQLite.SQLiteConnection() Dim SQLcommand As