Microsoft Access is a rapid application database development and reporting tool.

learn more… | top users | synonyms (4)

0
votes
1answer
19 views

Getting the value for a textfield from a VBA variable

I have a Form in wich I enter some values (project info) The values entered in these fields, are stored in some variables in VBA when the user clicks the button: Private Sub btnPItoKabels_Click() ...
0
votes
0answers
8 views

MS Access cursor location in continuous form

I have a contunuous form where editing is disabled. If you want to edit an entry you have to select the line in a table and click the button "Edit". The problem is when the form loads it's allways ...
0
votes
1answer
28 views

jdbc odbc with ms access issue

I want to store a record but don't know what to do. When i start entering the details of a customer, at that time database connectivity is successfully created but I fail to store the data in the ...
1
vote
0answers
15 views

How to edit MS Access tables via web

I have an MS Access 2007 desktop database that has been in use for many years. Of the numerous tables, I have three tables that now require users to update some fields via the web. I do not want to ...
0
votes
2answers
27 views

Finding difference between two tables in SQL

I have two tables with exactly same schema. One is a week old and other is current. Let new record be new_data and the old be old_data. Both have a column called opportunity_id which is the primary ...
0
votes
1answer
15 views

ACC2010: date picker in restricted folder not available

If an MS Access .mdb or .accdb file (assume front end db, data elsewhere) is placed in a folder where the user's permissions are limited to read & execute and the file is opened by ACC2007 or ...
0
votes
2answers
20 views

issue editing Access database table with OpenRecordSet

I am very new to access. I am trying to update a table using OpenRecordSet and am having issues. Here is my code: Set rst2 = CurrentDb.OpenRecordset("tbl_Inventory", dbOpenTable) With rst2 .Edit If ...
0
votes
0answers
16 views

Vba requery parameter syntax

I need to set the parameter for a requery command, but I can´t find the correct syntax. tbTreinamentosConc.Requery Profissional = prof tbTreinamentosConc refers to table Trn_Done, which has the ...
0
votes
1answer
9 views

How to make child form refresh when master is clicked?

I have two tables, WorkItem and Status. They are related as follows: Status.WorkItemID is the foreign key mapped to the primary key WorkItem.ID. I want to set up a form so that there are datasheets ...
0
votes
2answers
23 views

Creating an SQL query in MS Access for a dropdown box lookup in a subform?

I have the following two tables, the first called Projects and the second called Parts: I then have a form (lets call it Form 1) that uses Projects as its Record Source with a subform that links ...
0
votes
2answers
21 views

Added SQL query criteria returns wrong data set

I have a table of jobs, with fields that include date of last cost update, work billed, revised contract amount, and payments. I want to only return records where the amount billed, contracted and ...
0
votes
0answers
10 views

How to reestablish a connection after “Error -2147467259 [Microsoft][ODBC SQL Server Driver]Communication link failure”

Running MS Access 2010 in Win 7 via Citrix against a SQL Server 2008R2 backend. I keep getting Error -2147467259 [Microsoft][ODBC SQL Server Driver]Communication link failure. Much Googling indicates ...
1
vote
1answer
22 views

Force a constraint in primary key to have “@” in MS Access

How do make sure that the primary key has one "@" in the column "email" in MS Access database, so it does not save any data without one "@" and throw exception. I also have one column that saves ...
0
votes
2answers
17 views

MS ACCESS 2003 triggers (Query Event), and Excel import

I am working on a project in a company, and because of such i am bound to use MS ACCESS 2003 operating on XP (although, i don't think the OS is relevant here). Because the company is using other ...
0
votes
4answers
38 views

VBA: How to Pull Mid String 2 Character State From Address?

I am looking for the best way to go about manipulating this string: We need to extract a state from the invoice line description field of my Excel. Here is an example of the type of line I need to ...
0
votes
1answer
15 views

Exporting a recordset from Access 2007 to spreadsheet

Private Sub Command27_Click() Dim ltr As DAO.Recordset Set ltr = Me.RecordsetClone If Not (ltr.BOF And ltr.EOF) Then ltr.MoveFirst End If DoCmd.TransferSpreadsheet acExport, ...
1
vote
0answers
20 views

VBA Syntax “BEGIN (Object?) (Something Else??) (…body…) END” … and OPOS Printer OCX Driver in Access 2007

I'm using a "OPOS" printer and Access 2007, and I'm trying to get some access VBA code interact with the driver. So far I got this VBA6 program that I'm trying to chew into Access VBA: VERSION 5.00 ...
1
vote
2answers
15 views

Sorting a grouped report

My schema looks a bit like this: SEQ GROUP1 GROUP2 GROUP3 VALUE Where SEQ is roughly equivalent to the row number -- it's actually sort order, from an external table -- and the GROUPx fields ...
0
votes
0answers
19 views

Lookups of lookup fields (and how to avoid them)

I'm trying to create a relational database for a data dictionary within Access. The data comes from many different sources with many different data types and definitions for the same name. The issue ...
0
votes
0answers
18 views

Access 2007 - Left Join to a query returns #Error instead of Null

Similar to this question, but their problem with the query was never fully solved: #Error showing up in multiple LEFT JOIN statement Access query when value should be NULL I get #Error when I'm ...
0
votes
1answer
10 views

ADODB special char in query

I'm using ADODB and PHP for work with a MS Access DB. When I call this code: $rs->fields["Unità_amministrativa"] The Server give me back this: Notice: Undefined index: Unità_amministrativa in ...
0
votes
2answers
24 views

Convert Database From MSAccess to SQlite for android

I have a database of MSAccess and now i want to convert into SQLite database. Is it possible? If yes and if you have any idea related to it than please Share with me. Thanks.
1
vote
2answers
42 views

Print report pages in different files providing filenames dynamically

I have come across a challenging requirement for Reports and Printing of reports. The requirement is : Create a report (lets say 5 pages), each page should be saved in different files with providing ...
-9
votes
1answer
101 views

Combo box access not displaying anything [closed]

I'm using VBA with Microsoft Access. I don't know why a simple combo box is not displaying anything on my form. This is the code I currently have: Private Sub Combo8_Click() Combo8.Items.Add ...
0
votes
1answer
22 views

Search record in ACCESS DATABASE using c#

i am trying to find the records based on the user input in msaccess database. below is the code string strProvider = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Employees.mdb"; string strSql = ...
0
votes
1answer
13 views

Break Columns to second Page in report

i am having a Problem with my Report. As you can see in the picture below, my current Report has a Column for each employee. Now that we are > 10 Employees, i need to break some of the columns to a ...
2
votes
1answer
22 views

Show human error if inserting duplicate data in access database

I've prohibited duplicate records in access database so no one will insert same data again and again. it works fine, but the error message is not helpful to the users, i want to show that error in a ...
1
vote
1answer
14 views

Errors with linked tables and Ms Access ( Run-time error '3622' : dbSeeChanges/Identity column )

I am trying to output the name of all linked tables, including their fields which are Date/Time, and that fields values. The following code can output the first table, field name and their first ...
0
votes
2answers
24 views

Microsoft Access - Multiple Items Form Image

I have 2 tables: One of them is named 'ImageDrive', and the other is named 'Person'. In the Person table, there is a field called 'Primary Image Path' and it stores part of the path, i.e., ...
1
vote
2answers
16 views

Access SQL Query: Find the most recent date entry for each employee for each training course

Im sure this is pretty simple to do but im a complete novice at access especially SQL, basically I work for a safety company and i need to create a query which brings up only the most recent training ...
0
votes
1answer
16 views

Can't write back to Access DB on new machine (Windows 8)

I have an application using ".mdb" Access DB written in VB.NET, VS 2012. In Windows 8, I can run it, establish a connection to the DB, read the data from DB with the "SELECT" statement, but when I ...
0
votes
0answers
4 views

Sharepoint : In a published Access web database I see multiple occurrences of some columns preceeded with _ (undersocre)

I have an access web database published to sharepoint. Every table gets converted to a list when publishing to sharepoint. But every time i publish, some columns keep duplicating and break my ...
1
vote
3answers
37 views

Syntax errors in MS Access converting from SQL

From my earlier question subqueries-on-subqueries I'm now trying to put this into access The code is from answer one on the link, copied and pasted exact with the exception of putting ...
1
vote
1answer
35 views

Need help to sort processed mdb file in Python on Linux machine

I am trying to extract a table from .mdb file, then filter that table and spit out the result into short .csv file. So far I was able to extract the table needed and save it's content into .CSV. But I ...
2
votes
4answers
40 views

How can I find whether VBA code is called in an Access database?

I'm working with a legacy Access database that has a front-end and a good amount of VBA code. The goal is to either replace the tool with a purchased product or a web application (one day), and while ...
0
votes
1answer
21 views

create sql server temp table in MS access passthru

I have created an access query with a 3 field output of approx 700 records that I would like to use as an input to a passthru query to sql server. I have tested the process entirely in SQL server, ...
1
vote
1answer
19 views

Advice on building personalized inventory database?

I have some amount of experience developing and using Access Applications and am looking to create an Access Database to act as an Inventory of my personal library. I can easily set up the Table(s) ...
0
votes
0answers
12 views

MS Access 2007 - Page no longer showing dialog forms

I have taken over an old project for sign-ups. And part of the code involves opening a form via dialog. Now when i try to click a button event with the openform call in it, the page either opens off ...
0
votes
1answer
13 views

Excel open mdb temp table, but Access don't see it

Access can open only table data and queries, but i need to get large data (more then 2kk rows) from temp tables which can only opens in Excel. How can I export this temp tables (~TMPCLP298071, ...
0
votes
1answer
65 views

Working with Access from Excel?

'Create the recordset Set dbRecordset = New ADODB.Recordset dbRecordset.CursorLocation = adUseServer dbRecordset.Open Source:="Table1", _ ActiveConnection:=dbConnection, _ CursorType:=adOpenDynamic, _ ...
1
vote
1answer
47 views

OleDb Update command throws data type mismatch when clearing Byte[] value in DataTable

I have an existing method of updating an MS Access database via OleDb connection. I've used this method to update data in the past, but I'm having a type mismatch error now that I've added in an ...
2
votes
1answer
24 views

Flag Records From A Filtered Form

I have my Form set to filter to make sure that only clients who need to be mailed are loaded into this form. [Complete]=No And [Call 1]="Wrong Number" Or [Complete]=No And [Call 2]="Wrong Number" ...
0
votes
2answers
34 views

Get first row of each group in access2010

There are multiple way to get first row from each group, but none of my idea is working with access2010. Do you have a solution to get first row in access2010 ? Or ID Name Age 1 Name1 3 2 Name2 4 ...
0
votes
0answers
13 views

Graphs will not update in Report (Access 2007)

I am encountering a problem with getting my graphs to update. I currently have a report that generates information based upon a query. The report is broken down into 3 subgroups (Temperature --> ...
0
votes
1answer
14 views

Select distinct totals from access tables

I have three tables: T_O, T_C, & T_D they each have a date (run_date) and count column. I need to select the data to show a summary by date for each count. I cannot get the nested sql to make it ...
0
votes
1answer
18 views

form tabcontrol subform runtime error 468: Object doesn't support this property or method

I am developing a search form / report builder in Access 2007 called frmSearch. The existing search form works well, showing its results in a subform of a tabcontrol. Then I can click a button to show ...
0
votes
1answer
16 views

Access VBA to update Access table from SQL Server table source

I have created the code below to test whether I can run a query and retrieve a data from an SQL server table. And so far I can return the result using a MessageBox, but somehow I just don't know how ...
0
votes
1answer
29 views

Unbound checkbox in continuous form

I'm beating a dead horse here, but I still haven't found the answer I am looking for. I am throwing together an Access Database that deals with lockout procedures for our various machines at work. I ...
3
votes
1answer
38 views

GridView update/delete crashes

I have a gridview of my table. I established a AccsessDataSource to my database. The Accsess datasource is configured so the sql scentance is: SELECT * FROM [Users] In the advanced settings I checked ...
0
votes
1answer
14 views

Set Size of an ActiveX Control in MS Access

I have written an WinForms Control as ActiveX by COM-Interop and so far it works well in MS Access. But the Problem is in Access the Form on the Display View hasn't the same Size as the Form in the ...

1 2 3 4 5 266