Use this tag for questions specific to Microsoft Access 2003. Use the more generic [ms-access] tag for general Access questions.

learn more… | top users | synonyms

1
vote
0answers
16 views

MS Access database issue, multiple clients

Good morning, I have a simple WPF app, that reads one table from a access 2003 database that is on my server. I have 2 client pc's that read that table and populate the categories to a listbox on my ...
1
vote
1answer
29 views

Concatenate string and integer in VB

I have a following code: Dim IDfiltr As Long IDfiltr = Forms!KONTROLA!ID_OS DoCmd.OpenForm "OSOBA", acNormal, "", "", , acNormal Forms!OSOBA.FilterOn = False DoCmd.ApplyFilter "", ...
0
votes
2answers
22 views

Handling a #Num! Error on importing Excel into Access

I'm importing a spreadsheet from Excel 2003 to Access 2003 using ADO (Provider = "Microsoft.Jet.OLEDB.4.0"). However, I've got some text entries in a date field. These come through as #Num! values, as ...
0
votes
0answers
16 views

Library not registered error when programmatically removing reference to DAO360.DLL

I have MSAccess 2003 database running on 30 PCs. Due to setup differences I have written a .NET app to remove all references and add them back using a list in an INI file on each PC. On 2 machines ...
1
vote
1answer
49 views

ADOQuery.Filter not working with LIKE

I have a query in ADOQuery2. Now I want have a filter for that so: ADOQuery2.Filter := 'where Fname like ' + QuotedStr(Txt_Search.Text + '*'); ADOQuery2.Filtered := true; but it throws this ...
1
vote
3answers
138 views

Access 2003 VBA: query works when run directly, but run-time error 3061 when run from code?

So I have a relatively simple query that has exactly two parameters, one of which pulls a long from a form and selects only records from a single table, where one field has that value. (It's a table ...
1
vote
1answer
35 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 ...
2
votes
2answers
39 views

certain fields get corrupted going from an Access report to an Excel spreadsheet

I can't make sense of this. I'm using Access 2003. The problem occurs when I right-click an Access report, then click "Send..." which has only one option of "Mail recipient". Then I click Excel. An ...
-3
votes
0answers
33 views

unable to change from mdb file to mde [closed]

My Access 2003 file is unable to change from mdb file to mde. it is having only 6 table not joined at all and 5 forms which will be called upon from a main form. Please help how can i resolve this ...
1
vote
1answer
20 views

Access Query; Creating Master/Slave from list

Asked a question a few days ago, but have decided to go down a differnt route so am re-doing the question as the edit's were getting a bit messy. I have a list of data containing two columns: pID ...
1
vote
1answer
125 views

Foreign characters show up as ????? in VBA 2003, how to set up UTF-8?

I have a Database in Access 2003 that needs to work with foreign language characters. The characters show up fine in the table. However, when VBA tries to read them it cannot do it. As an example, ...
0
votes
2answers
94 views

How to see who is using my Access 2003 database in network?

I actually have 2 questions: 1. How might I see who is using my Access database? E.g: There is someone with an Access database opened and it created the .ldb file, I would like to see a list of who ...
0
votes
1answer
199 views

Insert into ms Access from SQL Server using OleDb provider

In this post Remou has nicely described how to bulk insert data from a SQL Server table into an MS Access table using the following syntax: SELECT fld1, fld2 INTO accessTable FROM [sql connection ...
1
vote
1answer
33 views

MS Access 2003 report concatenation

I am currently working on a report for MS Access 2003 with three fields consisting of a [Lease Start] Date, [Lease End] Date, and [Financial Notes] String. The Management wants all three combined ...
1
vote
1answer
73 views

Kernel32 issue with MS Access 2010 on Windows Server 2003 32-bit

Hi I have recently installed MS Access 2010 on my Windows Server 2003 32-bit. Since then one of my VBA scripts isn't running properly. MS Access is quitting unexpectedly giving this error with ...
0
votes
1answer
137 views

Microsoft Access, auto generate columns in DataSheet subform

I want to create a form in MS Access 2003 that lets the user pick from any existing query, and then have it display the results inside the form (as a sub-form in DataSheet view). The user will then ...
3
votes
1answer
106 views

What does compiling or decompiling an MS Access MDB file do?

I have a legacy Access application. The other day it was crashing, and crashed during Compact and Repair. After a whole bunch of Googling, what I finally had to do was decompile the MDB, then ...
0
votes
1answer
163 views

How to link Access table to SQL Server with VBA

I am trying to create a linked (or imported) table in Access with a SQL Server backend. Basically the business users periodically need a copy of the table {SQL Rulesnew] (yes, with the space, sigh) so ...
0
votes
1answer
37 views

opening mdb file by multiple users

i am new to access and am working on 2003 version I am preparing user form in access which wish to be opened by so many users at a time. so will this be possible?
0
votes
0answers
28 views

In MS-Access the form sometimes does not open to foreground

Okay I'll do my best to best describe this shady problem. We work with Access 2003 and on like 2 out of the 30 machines this problem occurs. When you open a form it sometimes does not open to the ...
0
votes
0answers
48 views

Access 2003 Adp + SQL Server 2000 - Programmatically updates - best practices

An old Access 2003 Adp project uses SQL Server 2000 to manage data. In a form + subform, programmatically updates (SQL statements) are performed, however it still seems buggy, and I'd like to change ...
3
votes
1answer
265 views

c# strongly typed dataset whose table adapter is not returning expected result

I have a C# application (using VS 2010 premium) implementing a strongly-typed dataset that's connected to an MS Access 2003 database. I am implementing a table adapter within this dataset whose SQL ...
-1
votes
2answers
124 views

Counting distinct records across two tables

Question concerning counting unique combination of fields across two tables in SQL. MSaccess 2003. table1: id, fld1, fld2 table2: id, dateAndTime id is not unique; tables are joined across "id". I ...
1
vote
1answer
69 views

Access 2003 ADP + SQL server migrated to 2008: The Data Was Added to the Database But the Data Won't Be Displayed

I have migrated a SQL server 2000 database to SQL Express 2008. Once reassignd roles and permissions, it seems working, however in a form (+subform) when adding new records to the subform, the ...
3
votes
3answers
238 views

How to get Count of rows in java from table of Access JDBC ODBC database

Hi i am developing a system in java i am trying to get the count of all records present in my table i tried a lot but it is giving me exception Exception is: - java.sql.SQLException: Driver does ...
0
votes
1answer
44 views

Can't add records in form

When I am trying to add the new record in the McAccess form, I receive this message: "The current field must match join key in the table that serves one side of the one-to-many relation. Enter record ...
0
votes
0answers
17 views

Access 03 Report Spacing Issue

I have recently switched from Windows XP Professional to Windows 7 64 Bit at work. We use Microsoft Access 2003 still and I am having a bit of an issue when exporting a report to a Microsoft Word ...
0
votes
1answer
55 views

searching for filtered duplicates in access query

i have the following problem in MSACCESS 2003 i have a query called A_Gravur which 3 columns SP1, SP2, SP3 now i want to search for duplicates. query A_Gravur: SP1 | SP2 | SP3 64 | CB75000 | 3 ...
0
votes
1answer
194 views

DB Access search textbox

StudentID > Number StudentName > Text StudentCNIC > Text StudentDOB > Date/Time I am trying to create a search textbox where the results are show in of the text boxes. I have a named ...
0
votes
0answers
60 views

Access 2003 charts in windows 7

My company recently switched over to a database on a SQL Server 2008R2 and we decided to let all the machines work on Access 2003 so that everyone is on the same version of Access. The problem I ...
0
votes
1answer
82 views

Microsoft Access 2003 - Expression Builder

When the user click the add button on the form, everything else is saved except for the field that uses expression builder in its control source. I understand the control source is the main source of ...
1
vote
1answer
99 views

Error 3045 or 3356 when appending a tabledef in Access

I'm building an temporary backend for a snapshot style database using MS Access 2003 (nothing else available), which involves adding some linked tabledefs to the temporary backend. The code has been ...
0
votes
1answer
55 views

MS Access Rounding issue [duplicate]

I have 3 values saleprice, productprice and reward_price. I need to have it look for saleprice first and if there is no saleprice then look at productprice. Then grab it and round it up or down by 50 ...
0
votes
0answers
71 views

Parent and Subform intermittent odd behavior

I've got an Access front end with a SQL back end. We've been running Access 97 until recently when we started replacing workstations and they've come with Windows 7 and access 97 does not seem to work ...
0
votes
0answers
172 views

Microsoft Access - Adding a new record in the subform automatically

I'm looking for a solution, or rather an idea on creating an "imaginary" record in the subform for calculations using the query. Currently, I've got 2 datasheets subform (OwnerUsage_Subform, ...
1
vote
0answers
503 views

Creating a linked server from SQL Server 2008r2 to Access 2003

I've written a web app in ASP.NET that stores all of it's data in SQL Server 2008r2 and runs everything via stored procedures. The app is collecting data for a department who wants 2-3 pieces of that ...
0
votes
4answers
93 views

Speed up MSAccess 2003 and MSSQL

I want to move my current DB from MDB to a MSSQL server. When I have done this through ODBC, queries became particularly slow. I have red that it's caused ODBC, that doesn't support group by and ...
0
votes
0answers
132 views

Datasheet field value for a combobox displays correctly until the database is split

I have a table called Fruit. It has 3 columns Id - autonumber column FruitName Available - When false we have run out of that fruit. I have a second table called KidsChoice. This table identifies ...
0
votes
1answer
80 views

how to publish a vb project?

I've finished a system using vb 2008 with an access database. now my problem is I have no idea how to publish it for a user testing. Could anyone help me/ teach me how to publish it.
1
vote
0answers
123 views

Delphi-MS Access record locking [closed]

I need some quick advise. I just finished a medical software that uses MS access. The software is on 3 computers and the database is on shared drive. Now how can I lock the records that are currently ...
3
votes
1answer
131 views

ACCESS 2003: Checking to see if record exists BEFORE UPDATE and then display message THEN OPEN existing record

Working on this for awhile now and i'm getting runtime error 2501 i'm trying to pull up a record after the message box appears stating that a duplicate has been found and upon clicking "OK" pulls up ...
1
vote
1answer
222 views

How to schedule a call to an MS Access macro?

I'm looking to schedule a call to an MS Access macro. This macro uses a .csv file (that I get daily) to update a SharePoint calendar. Could someone please explain how to schedule a daily call to run ...
2
votes
1answer
36 views

Do access queries automatically get truncated?

This might have been asked before, but I can't seem to find any relevant answer anywhere. I wrote a couple of long queries in Access (2003) a couple of weeks ago. I wanted to use those queries today ...
1
vote
2answers
212 views

Store ID of record created by subform in main form / table

The table measures contains many foreign ids linked to tables containing multiple questions. The form will contain many subforms for each linked table, I'm currently only showing the linked table ...
1
vote
1answer
119 views

Way to automatically change fields used across multiple queries

Im using MS Access 2003 and within it I have maybe 100 queries in total; I've been tasked with changing a few names in one of the tables and I don't know exactly how many queries use that particular ...
0
votes
0answers
91 views

MS Access Creating Calculated Form Field from a Join

As a newbie to MS Access (but not SQL or coding), I'm bumping up into an issue that might be conceptual rather than a code issue (but certainly could be). I have a table of historical client data in ...
1
vote
1answer
74 views

Unique Calculated Totals with Parameters in Access Report

I'm working with an access 2003 report that uses an employee, and their points they've accumulated over a period of time. When the report is run, it asks for parameters StartDate and EndDate, then ...
1
vote
1answer
453 views

How to find duplicates from two tables and also to find duplicate in itself?

I have created this statement in access 2003 SELECT COUNT(*) FROM TABLEA WHERE NOT EXISTS(SELECT * FROM TABLEB); Does this statement helps to check if the records in table A is the same as ...
2
votes
3answers
144 views

How to check if any value of the columns in my table consist trailing spaces in MS ACCESS 2003?

How can i check if any of the values of my columns in TABLEA consist trailing spaces? I only know how to check if there are trailing spaces from one column but not all. SELECT * ...
0
votes
0answers
27 views

The last row of a linked text file isn't showing in Access 2002-2003

This is a strange one, when I link a text file that contains 30 rows in Access 2003, and I view the table of the linked file in Access, only 29 rows are displayed and Access seem to omit the last row ...

1 2 3 4 5 10