
[RESOLVED] ADODB connection on 64-bit...-VBForums
Feb 14, 2016 · Re: ADODB connection on 64-bit... The issue was that I was using mapped drives - and getting "path not found" errors. I changed to using UNC pathing and this worked, but …
MsOf365 ADODB for 64-bit-VBForums
Jan 29, 2022 · ADODB for 64-bit Hello: We just upgraded to SolidWorks and PDM 2021. I have some programs that utilizes accessing some spreadsheets to obtain data. Those programs …
[RESOLVED] either bof or eof is true or the current record has been ...
Oct 7, 2012 · VBForums Visual Basic Visual Basic 6 and Earlier [RESOLVED] either bof or eof is true or the current record has been deleted
[RESOLVED] run time error '2147467259 (80004005)-VBForums
Oct 22, 2017 · Dim cn As ADODB.Connection Set cn = New ADODB.Connection Dim rs As ADODB.Recordset Dim StrConn As String StrConn = "Driver = …
[RESOLVED]Run-time error '-2147217865 (80040e37)'-VBForums
Jun 13, 2012 · Dim conConnection As New ADODB.Connection Dim cmdCommand As New ADODB.Command Dim rsRecordset As New ADODB.Recordset Dim sqlString As String …
[RESOLVED] Error on ADO Recordset Update-VBForums
Jan 20, 2019 · Set cmd = New ADODB.Command cmd.ActiveConnection = cnn cmd.CommandType = adCmdText Set rs = New ADODB.Recordset ' Query the workheet SQL …
[RESOLVED] ACCESS - using ADODB to show records-VBForums
Oct 20, 2008 · Hi Guys, I have written a program that uses adodb and can conncet to a database and write to the values, however after looking at some tutorials I have begun to get a bit stuck …
[RESOLVED] Advice on working with ADODB.stream as a …
Aug 11, 2023 · Re: Advice on working with ADODB.stream as a replacement for for .Net streamreader in Early binding works just fine and it's much easier to use with Intellisense and …
[RESOLVED] when to close ado connection-VBForums
May 26, 2016 · Set CN = New ADODB.Connection ' <-- since you NEw the connection object here (which is safer), you do not need it on the previous line CN.connectionstring=connection string …
ADODB. Command slow-VBForums
May 28, 2020 · ADODB. Command slow I have several stored procedures in MS SQL Server database. While the number of records in tables included in those SPs were not big everything …