Microsoft Access 97 is an older version of Microsoft's entry-level, SQL, database application platform.

learn more… | top users | synonyms

0
votes
0answers
38 views

Syncing New Data Changes from One Access 97 .mdb Database to Multiple Access 97 .mdb Databases C#

This is a followup question from one I asked another time right here: Adding New Row Data from C1FlexGrid to Access 97 .mdb Database C# So I'm working on a problem where I have one master database ...
1
vote
1answer
37 views

Converting Access 2000 database to Access 97 using Access 2003

I have an access databse (from an opensource project) that's in Access 2000 format. All text fields, I've looked at, have ALLOWZEROLENGTH set to TRUE and DEFAULT to "" (empty string). On conversion ...
1
vote
1answer
173 views

Adding New Row Data from C1FlexGrid to Access 97 .mdb Database C#

As a quick background, I'm a beginner at database programming so forgive me if anything that I post here doesn't make sense or is outright dumb. I'm trying to make a WinForm application that will ...
-1
votes
1answer
86 views

Upgrade to a higher version of Access MDB

I have to work with Access-97 databases on a daily basis. I made the mistake of updating to Access 2013 and now I'm stuck because 2013 does not read Access-97. Permanently upgrading these files is ...
0
votes
0answers
78 views

Using Global Variables in Access 97 VBA display is different than print

I have a project I have to do in Access 97 due to it being what the customer is currently using. I am creating a report with a query that is pulling data from multiple tables and I am trying to get ...
0
votes
0answers
97 views

Import Access 97 data in Excel 2013

Using Excel 2013 Data Connection Wizard to import Access 97 data, I select ODBC DSN then select MS Access 97 Database Data Link Properties show Connection string: DSN=MS Access 97 Database, Initial ...
0
votes
0answers
66 views

Preventing an DAO Error 3028 by closing the program before creating a new database

This question is related to this one To recapulate: Program 1 (written in VB6) creates a new temporary MS-Access 97 database using DAO 3.51 with the DAO.CreateDatabase command. Program 1 then ...
2
votes
1answer
321 views

How can you convert an ACCDB to an MDB programmatically?

Is there a way to programmatically convert an Access 2010 ACCDB file to an Access 95/97 MDB file?
1
vote
0answers
69 views

Convert MS Access 97 TO MySQL 5.5 (Is there any Tools ?)

I have huge industry level database in MS Access 97, I am redesigning the application and want to migrate all my existing data to MySQL 5.5. Is there any tool available so that I can migrate all my ...
2
votes
2answers
260 views

VB6 application keeps lock on Access (.mdb) database after creation, causing an error 3028

Our application builds an Access database (.mdb) and then starts a different application with the Shell command which needs Read/Write Access to this very database. The problem is that on some systems ...
0
votes
1answer
75 views

Check directory file size to notify by email if it grows to a certain point

I have an access 97 server on windows that crashes if it's file size grows to be 1GB. I need to either find a software or write something(in java) that checks the directory and notifies us by email if ...
0
votes
1answer
67 views

Error messages when converting access 2000 to access 97

When using access 2003 to convert an access 2000 database to access 97 I get the following 2 error messages right after the other 'invalid argument' 'Some errors happened during the conversion. No ...
1
vote
2answers
201 views

How to increase size of MDB field via DAO?

How can you increase the size of a MDB field size using DAO?
1
vote
2answers
108 views

Access 97 databases

I had been told that if I open Access 97, the whole system or at least most of it are inside some database. Is it true? For example if I write some VB code into it, the whole code is inside some ...
1
vote
1answer
275 views

Access 97 VBA writing code

I found that I can write code just by typing everything or activate element, then click for example OnClick property and write code to between the sub-end sub lines. One person I met said that one ...
2
votes
1answer
428 views

Creating Access 97 format Database

Most of the example codes on the internet use either access97 or 2000 format database.In a database creation code it was mentioned that if Jet OLEDB:Engine Type=4 is used the database created is ...
1
vote
2answers
956 views

Convert Access Database to 97 format

Is there a way of converting an Access Database into a 97 file format, using Access 2007. I know the GUI cant do it, and I have tried: Application.ConvertAccessProject _ ...
3
votes
6answers
2k views

I need to write an Access 97 .mdb file

I need to export data from a SQL server 2005 DB to an Access 97 .mdb file. The client that needs it, needs it to be Access 97 because the system that they're importing it into requires Access 97 file ...
2
votes
5answers
12k views

Find the directory part (minus the filename) of a full path in access 97

For various reasons, I'm stuck in Access 97 and need to get only the path part of a full pathname. For example, the name c:\whatever dir\another dir\stuff.mdb should become c:\whatever ...