Error 429 when opening a disconnected recordset
- From: "Andy DF" <nospam@xxxxxxxxxx>
- Date: Mon, 27 Mar 2006 11:34:46 +0200
The following code creates and opens a disconnected recordset.
On some machines I get an error 429 "ActiveX component can't create object"
This has happend on Win ME and on Win XP.
Does anyone know what could be the source of the problem?
TIA,
Andy
Private Sub pTest1()
Dim rs As Recordset
On Error GoTo ERR_OUT
Set rs = New Recordset
rs.Fields.Append "TestField", adBoolean
rs.Open
' Ok
MsgBox "Test #1: OK", vbInformation
' Clean up
rs.Close
Set rs = Nothing
Exit Sub
ERR_OUT:
MsgBox Err.Description & vbCrLf & Err.Number, vbExclamation
Err.Clear
End Sub
.
- Follow-Ups:
- Re: Error 429 when opening a disconnected recordset
- From: Andy DF
- Re: Error 429 when opening a disconnected recordset
- Prev by Date: Re: Please help!!! [multiposted]
- Next by Date: Re: Error 429 when opening a disconnected recordset
- Previous by thread: Please help!!!
- Next by thread: Re: Error 429 when opening a disconnected recordset
- Index(es):
Relevant Pages
|