473,385 Members | 1,531 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Using an A03 mdb in A07

I have an Access 2003 database that I need to be able to run on a machine
that's running 2007. Theoretically, it should work in both versions of
Access.

However, an associate of mine has reported that he had problems running his
A03 mdb in A07. Apprently, whenever he opened a form using the acDialog
property, the form opened as a single horizontal line (a "slither," as he
called it). He then resized the from in A07 and saved it in A07, and then it
opened fine with the acDialog property.

Has anyone else come across this behavior of A07? Are there any other issues
when using an A03 mdb in A07?

Thanks!

Neil
May 5 '07 #1
5 1401
On Sat, 05 May 2007 15:42:39 GMT, "Neil" <no****@nospam.netwrote:

This is not generally the case. I'm running several A2000 and A2003
apps in A2007 without ever seeing this problem.

Perhaps you have some resize code in this form that is failing?

-Tom.
>I have an Access 2003 database that I need to be able to run on a machine
that's running 2007. Theoretically, it should work in both versions of
Access.

However, an associate of mine has reported that he had problems running his
A03 mdb in A07. Apprently, whenever he opened a form using the acDialog
property, the form opened as a single horizontal line (a "slither," as he
called it). He then resized the from in A07 and saved it in A07, and then it
opened fine with the acDialog property.

Has anyone else come across this behavior of A07? Are there any other issues
when using an A03 mdb in A07?

Thanks!

Neil
May 5 '07 #2
I don't know; I'll ask this associate, since he was the one experiencing it.
That's good to know that others aren't having this problem. Thanks.

"Tom van Stiphout" <no*************@cox.netwrote in message
news:in********************************@4ax.com...
On Sat, 05 May 2007 15:42:39 GMT, "Neil" <no****@nospam.netwrote:

This is not generally the case. I'm running several A2000 and A2003
apps in A2007 without ever seeing this problem.

Perhaps you have some resize code in this form that is failing?

-Tom.
>>I have an Access 2003 database that I need to be able to run on a machine
that's running 2007. Theoretically, it should work in both versions of
Access.

However, an associate of mine has reported that he had problems running
his
A03 mdb in A07. Apprently, whenever he opened a form using the acDialog
property, the form opened as a single horizontal line (a "slither," as he
called it). He then resized the from in A07 and saved it in A07, and then
it
opened fine with the acDialog property.

Has anyone else come across this behavior of A07? Are there any other
issues
when using an A03 mdb in A07?

Thanks!

Neil

May 6 '07 #3
I have never come across this problem. If you do again, simply resize the
form in code. Form measurements are in twips. There are 1440 twips to the
inch (20 twips to a point, 72 points to an inch), so a 3 inch form would be
(aircode):

Sub Form_Open(Cancel As Integer)
Dim twp As Integer
twp = 1440
Me.Height = 3*twp
End Sub
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com

"Neil" <no****@nospam.netwrote in message
news:PB*****************@newssvr25.news.prodigy.ne t...
>I have an Access 2003 database that I need to be able to run on a machine
that's running 2007. Theoretically, it should work in both versions of
Access.

However, an associate of mine has reported that he had problems running
his A03 mdb in A07. Apprently, whenever he opened a form using the
acDialog property, the form opened as a single horizontal line (a
"slither," as he called it). He then resized the from in A07 and saved it
in A07, and then it opened fine with the acDialog property.

Has anyone else come across this behavior of A07? Are there any other
issues when using an A03 mdb in A07?

Thanks!

Neil

May 6 '07 #4
The person having this problem is using an A02/A03 format mdb in A07 (as
opposed to an A00 format mdb in A07). I wonder if that has any bearing on
it.

Thanks for the note. I'll pass that on to him.
"Arvin Meyer [MVP]" <a@m.comwrote in message
news:%2******************@TK2MSFTNGP03.phx.gbl...
>I have never come across this problem. If you do again, simply resize the
form in code. Form measurements are in twips. There are 1440 twips to the
inch (20 twips to a point, 72 points to an inch), so a 3 inch form would be
(aircode):

Sub Form_Open(Cancel As Integer)
Dim twp As Integer
twp = 1440
Me.Height = 3*twp
End Sub
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com

"Neil" <no****@nospam.netwrote in message
news:PB*****************@newssvr25.news.prodigy.ne t...
>>I have an Access 2003 database that I need to be able to run on a machine
that's running 2007. Theoretically, it should work in both versions of
Access.

However, an associate of mine has reported that he had problems running
his A03 mdb in A07. Apprently, whenever he opened a form using the
acDialog property, the form opened as a single horizontal line (a
"slither," as he called it). He then resized the from in A07 and saved it
in A07, and then it opened fine with the acDialog property.

Has anyone else come across this behavior of A07? Are there any other
issues when using an A03 mdb in A07?

Thanks!

Neil


May 6 '07 #5
It may be a bug between those 2 versions only. I only use Access 2000 format
so that it is available in all later versions, so I don't have any files I
can use to check. The code should work in any version.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com

"Neil" <no****@nospam.netwrote in message
news:yC*******************@newssvr13.news.prodigy. net...
The person having this problem is using an A02/A03 format mdb in A07 (as
opposed to an A00 format mdb in A07). I wonder if that has any bearing on
it.

Thanks for the note. I'll pass that on to him.
"Arvin Meyer [MVP]" <a@m.comwrote in message
news:%2******************@TK2MSFTNGP03.phx.gbl...
>>I have never come across this problem. If you do again, simply resize the
form in code. Form measurements are in twips. There are 1440 twips to the
inch (20 twips to a point, 72 points to an inch), so a 3 inch form would
be (aircode):

Sub Form_Open(Cancel As Integer)
Dim twp As Integer
twp = 1440
Me.Height = 3*twp
End Sub
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com

"Neil" <no****@nospam.netwrote in message
news:PB*****************@newssvr25.news.prodigy.n et...
>>>I have an Access 2003 database that I need to be able to run on a machine
that's running 2007. Theoretically, it should work in both versions of
Access.

However, an associate of mine has reported that he had problems running
his A03 mdb in A07. Apprently, whenever he opened a form using the
acDialog property, the form opened as a single horizontal line (a
"slither," as he called it). He then resized the from in A07 and saved
it in A07, and then it opened fine with the acDialog property.

Has anyone else come across this behavior of A07? Are there any other
issues when using an A03 mdb in A07?

Thanks!

Neil



May 7 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Enos Meroka | last post by:
Hallo, I am a student doing my project in the university.. I have been trying to compile the program using HP -UX aCC compiler, however I keep on getting the following errors. ...
3
by: Mike L | last post by:
Should the command call "using" be before or after my namespace? **AFTER** namespace DataGridBrowser { using System; using System.Drawing; using System.Drawing.Drawing2D; using...
3
by: xzzy | last post by:
I was wondering why we have to have using System.Data using System.Configuration using etc.... why are they not all lumped into one 'using'? In other words, is there a best way to use...
14
by: pmud | last post by:
Hi, I need to use an Excel Sheet in ASP.NET application so that the users can enter (copy, paste ) large number of rows in this Excel Sheet. Also, Whatever the USER ENETRS needs to go to the...
8
by: acb | last post by:
Hi, I wrote a DLL Component (using Visual Studio 2005) and managed to include it into a C# Console application. I am now trying to include this component into a Web project. I copy the DLL...
0
by: Metal2You | last post by:
I'm working on an ASP.NET 2.0 application in Visual Studio 2005 that accesses a Sybase database back end. We're using Sybase SQL Anywhere 9.0.2.3228. I have installed and registered the Sybase...
10
by: mg | last post by:
I'm migrating from VB6 and have a question about using 'Using' and the best way to use it. Here is a example of a small bit of code: dbConx("open") Using CN Dim CMD As New OleDbCommand(sSQL,...
0
by: Eugene Anthony | last post by:
The problem with my coding is that despite removing the records stored in the array list, the rptPages repeater control is still visible. The rptPages repeater control displayes the navigation...
3
by: JDeats | last post by:
I have some .NET 1.1 code that utilizes this technique for encrypting and decrypting a file. http://support.microsoft.com/kb/307010 In .NET 2.0 this approach is not fully supported (a .NET 2.0...
6
by: =?Utf-8?B?U2hhd24gU2VzbmE=?= | last post by:
Greetings! I was researching AJAX to provide a solution to displaying status messages while a long process executed. I found several examples online and was able to use their code to get a quick...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.