There are a number of problems, but I'll ask about one at a time.
I have a data entry application in Access 2003 that has problems in 2010. When i opn the Ap in 2010 the start form appears but hangs on the following piece of code I wrote:
'Set up select query
Dim cnndbo As ADODB.Connection
Set cnndbo = CurrentProject.Connection
Dim rsdbo As New ADODB.Recordset
rsdbo.ActiveConnection = cnndbo
rsdbo.CursorType = adOpenDynamic
I am using linked tables to SQL Server 2008
When I was first trying to figure out whose on first, I went to Tools/References in the VB editor looking for stuff that had a check mark. I tried un-checking everything that was checked (per a website), and one of those things had to do with ADO. When I found that the ap was hanging opening a linked table I went back Tools/References and the reference was gone.
When I go into design mode and bring up the editor I get the following message:
Compile error
User-defined type not defined
I would appreciate any help at all.
This probably the first of more questions regarding converting to 2010.
Thanks in advance
jpl
I have a data entry application in Access 2003 that has problems in 2010. When i opn the Ap in 2010 the start form appears but hangs on the following piece of code I wrote:
'Set up select query
Dim cnndbo As ADODB.Connection
Set cnndbo = CurrentProject.Connection
Dim rsdbo As New ADODB.Recordset
rsdbo.ActiveConnection = cnndbo
rsdbo.CursorType = adOpenDynamic
I am using linked tables to SQL Server 2008
When I was first trying to figure out whose on first, I went to Tools/References in the VB editor looking for stuff that had a check mark. I tried un-checking everything that was checked (per a website), and one of those things had to do with ADO. When I found that the ap was hanging opening a linked table I went back Tools/References and the reference was gone.
When I go into design mode and bring up the editor I get the following message:
Compile error
User-defined type not defined
I would appreciate any help at all.
This probably the first of more questions regarding converting to 2010.
Thanks in advance
jpl