Microsoft Access 2010 Personal Relational Database Management System.
0
votes
1answer
180 views
How to close file handle after Application.run in Access
I have a kind of complex scenario
The Access-Application we are developing calls a VBA Function in another Access-Application which then triggers an Install Routine by calling the "calling" ...
1
vote
1answer
103 views
Microsoft Access with SQL Server linked tables hangs when doing search using the On Change event
I wonder if anyone has any advice for me, essentially we're using a textbox to do a search but it's causing some problems. We have a listbox with rowsource set to the equivalent of
select * from ...
0
votes
0answers
99 views
Type mismatch error when open report with parameterized pass through SQL Query in Access 2010
We have 4 scenarios:
spOnlyYear who requieres one parameter, Year
rptOnlyYear with one parameter
spDateAndYear with two parameters, Date and Year
rptDateAndYear with the same two parameters.
the ...
1
vote
1answer
161 views
Concatenate records and GROUP BY in Access
I have a table like this:
title part desc
Blah This 1 This begins the
Blah This 2 example table.
Some ...
1
vote
1answer
44 views
Search for text with specific length and no spaces
I am just learning Access (2010) and am trying to set the criteria for a query so that it only brings back names where the length is 10 letters and there are no spaces.
I did put in ...
0
votes
1answer
26 views
Summing calculated fields in access
I have generated an access report that shows the process comments for the different locations we have in the organization. What I need to do is to count the total number of comments we have per day ...
1
vote
1answer
184 views
Access 2010 Runtime Error 2185
Hi I have an application created in Access 2007, it's front-end and back-end is split. I am trying to open the database using Access 2010 runtime, however the application crashes when I change ...
0
votes
2answers
116 views
How to improve efficiency of this query & VBA?
I have this query in Access:
SELECT TOP 10 title,
ConcatRelated("DOCTEXT","DocumFrag", "title='" & title & "'" ) AS result
FROM DocumFrag
GROUP BY title;
DocumFrag contains about 9000 ...
2
votes
1answer
266 views
What is the SQL Query Syntax to write to a Date/Time Data Field in MS Access from LotusScript?
I have a LotusScript (8.5.3) routine that writes Notes data from a view (8.5.3) to a Microsoft Access 2010 database using ODBC. I'm using an SQL statement similar to the one below to write the data. ...
0
votes
1answer
54 views
Access 2010, SharePoint List, ASP
I have an access 2010 database which is linked to a sharepoint list. I have an ASP page which is querying the database and displaying data on a web page. The page auto refreshes every 30 seconds and ...
2
votes
1answer
311 views
Format a csv file with a macro
I have a .csv file that I am exporting from our accounting software. The ultimate goal is to import "some" of that data into an Access 2010 database table by appending records. My issue is that I ...
0
votes
0answers
157 views
Cannot Open Database Created with Access 2007 in Access 2010 stack overflow error
I created an access database linked to a MS SQL 2008 Back end
whenever the user attempts to use this database in an access 2010 machine the
error dialog that appears reads
"Run Time Error (28)
Out ...
0
votes
0answers
35 views
MS Access Database Form is not visually showing values but they are there when I extract the data in code
i have an Access database that populates a few text boxes/ comboboxes in a form through code.
its been running fine for months.
now, on occassion (not everytime), when I load in the data, the form ...
0
votes
3answers
62 views
Access SQL/query has truncated field at 25 characters?
I have this query in Access:
SELECT a.title, a.init, a.name, l.User AS CreatedBy,
IIf(IsNull(l.Time),Null,DateAdd("s",l.Time,#3/1/1980#)) AS CreatedAt
FROM (Reports AS a LEFT JOIN
...
1
vote
1answer
219 views
MS Access SQL join problems in case of “recurring” query
I'm facing an issue where we have 3 tables.
It should display if supplying warehouse does not have that item (deleted) or not even has a setup for however it should be the supplying warehouse ...
0
votes
0answers
82 views
MS Access Dialog Form with Null Unbound Checkbox
Here's a weird one for me,
I have a form that I'm opening as a dialog, with unbound checkboxes. It's simply to have the user choose which reports to print. After checking the boxes the user clicks ...
1
vote
1answer
336 views
calling Access query from Excel macro
I have a VBA macro in Excel that calls a query in an Access database (.mdb). However, the Access has been updated to a .accdb file and I don't know how to change up the macro (and/or include any ...
0
votes
0answers
14 views
Implementing in table security in msaccess
I'd trying to find the most pragmatic solution to enable the following: the database stores client information. The clients are added and managed by assistants. Any assistant can only see (and modify) ...
0
votes
0answers
85 views
Reserved error (-7732) when importing data with Access 2010 (64bit) via ODBC
When create a new database in Access 2010(64bit) and tend to import data from a 3rd-party database via ODBC, an error message is displayed by Access 2010(64bit).
Error message:
"Reserved error ...
1
vote
1answer
36 views
How to keep Access from login in and out on every query?
I inherited an Access app and the data is in Linked tables. The actual data is on a SQL Server box. One thing I noticed in the SQL Profiler is that Access connects and disconnects on every query.
I ...
0
votes
1answer
42 views
Can I delete *_local tables after upsizing the Access project to SQL Server?
I upsized an Access 2010 project (.accdb file) to SQL Server. I only moved the tables and now the table list shows the linked tables and their local copies (e.g. tbl_local).
Can I delete these local ...
1
vote
1answer
36 views
Access Expression Building Reference to itself
Lets say I have a report that has two columns; "Commission" & "Commission Cancallation". In my report these are represented as textboxes; txtC and txtCC. I want to txtC to be $0, if txtCC is not ...
0
votes
1answer
62 views
Auto pulling of data from sqlite to MS access using android
Can someone help me in my project? I'm new in android and its kinda hard exporting data from sqlite to ms access. Is it possible that there is a code for auto pulling of data from the emulator to ms ...
1
vote
1answer
86 views
Calculate Sum of Products Over Time With Changes in Historical Values
Given two (simplified) tables in Access 2010:
**tblDailyLabour**
DailyLabourID - PK
DateRecorded
EmployeeID
QtyHours
**tblEmployeeHistory**
EmpHistoryID - PK
DateApplicable
EmployeeID
PayRate
...
1
vote
1answer
17 views
Aggregate query fails on log([data])
enter code hereI'm building an aggregate query in the design view. If I average the original data, everything works just fine. As soon as I try to average log([data]) I get an error:
"Data type ...
0
votes
1answer
265 views
link Child/Master fields with Separate subform
I have a problem with a form in a database that i have open.
The form is called Specifiche and inside there are two subform: SSpecifiche and SSDatiSpecifiche.
...
0
votes
1answer
268 views
MS Access 2010 Form with check box per record
I'm trying to create a form that allows my audit team to help identify transactions that need further investigation. I would like to know if the following is possible and if so what would be the best ...
0
votes
0answers
32 views
How do i reduce each set of duplicates to one entry?
Below is a sample from one of my MS Access tables.
There are 4 rows/records for 2001-7501. I would like this simply reduced to one entry.
I tried the Group By First option but it did not work.
A ...
1
vote
1answer
1k views
Display a record on subform based on form's combo box selection (using VBA)
I have a main form, which has a combo box i've named FLRecCombo. This was originally set up so that selecting an option in the combo box would move to that record on the main form's record source.
I ...
2
votes
1answer
852 views
Access database engine stopped the process because you and another user are attempting to change the same data
We recently Migrated an access database onto a SQL server. Upon completion we began testing the database using the front end access database we had (Our previous setup involved two access files, one ...
2
votes
2answers
2k views
Access VBA: Find item in combo box based on non-bound column
I have a two-column combo box on an Access form representing a key-to-code mapping. The first column of the combo box is the 'bound column' (ie, the column used when MyComboBox.Value is called).
I ...
0
votes
1answer
23 views
error on insert statement
I'm having an error over and over again, please anyone tell me what's wrong with my INSERT STATEMENT?
here is my codes:
Dim SQLcon As New OleDbConnection
Dim SQLdr As OleDbDataReader
...
0
votes
0answers
92 views
Access 2010 Forms: Making one record copy the input of a field
I'm trying to create a form that when one option is selected, that information will be written to two columns in one table.
So, I'm making a game's database and there are 2 used columns in table ...
1
vote
1answer
552 views
Loop through all unbound controls on a form and clear data
I would like to loop through all UNBOUND controls on my form and clear their data or reset their values. I have textboxes, comboboxes and checkboxes. Every time I try something like this:
Dim ctl ...
0
votes
0answers
186 views
Allow Users to modify Access Database (ACCDB) but not delete
Is this possible? I would like to password protect an Access 2010 database (*.ACCDB) that can't be deleted but that can be accessed through a C# application to add data to it.
I would also like to ...
0
votes
1answer
152 views
Oledbconnection execute commad query error vb.net
Im using VS2012 wpf application vb.net MSAccess2010, Im tring to excute query via oledbconnection and its return error but when i excute same query via MSAceess2010 it return table without any ...
0
votes
1answer
54 views
Access / DCount gives a TExt field and not INT field?
On Access 2010, I have two tables 'Contact' and 'PhoneCalls'.
I created a Query on 'Contact' as I want to see how many times I called a contact.
Query as follow:
SELECT Contact.*, ...
0
votes
2answers
243 views
How to populate a textbox from the result of a query
I have a combobox and a Textbox on my form.
If a user chooses a value from the Combobox for example: Cvalue then I want to populate the textbox with the results of a query, for example :
Select S1 ...
0
votes
1answer
85 views
Multiple joins sql
I have query must contain 3 joint, but i get:
Syntax error (Missing operator)
SELECT
Agents.[PF],
Agents.[User_ID],
Agents.[First_Name],
Agents.[Second_Name],
...
0
votes
2answers
46 views
How to find count of employees who have applied for timeoff
Below are 3 columns i have in my table along with other 4 columns.
ID EMP_ID APPROVAL_STATUS
103 0023946 Pending
105 0025830 Pending
109 0022786 Pending
111 0023946 Pending
My question what is ...
0
votes
1answer
138 views
MS Access 2010 Report Design Very slow
I have a MS Access 2010 DB with bunch of forms,queries ,macros, Reports etc
The data for my report comes from ODBC links to SQL Server 2000 Tables via linked table property.
Now, whenever i goto ...
0
votes
1answer
31 views
displaying to records using Access 2010 sql
i've created a table called cust. has the columns, customer_number address and balance. customer numbers range from 100-105. what i am trying to do is get the balance of customer numbers 102 and ...
1
vote
0answers
230 views
inserting multiple insert into statements in one query [duplicate]
is it possible to insert multiple values in a table using a single query?
i have tried something like this already
insert into tablename (1,2,3)
values (a,b,c), (d,e,f), (g,h,i);
that did not work.
...
0
votes
1answer
48 views
How to avoid name error in ms access formula?
I want to set DefaultValue of a form field to
=IIf(IsNull([Forms]![MyForm]![MySubForm].[Form]![MyField]);"";[Forms]![MyForm]![MySubForm].[Form]![MyField])
When MyForm is closed I want to set the ...
2
votes
5answers
174 views
Data type for currency values in Access
I am working on database homework for school. I'm not able to think right now with lack of sleep I've been getting, but I know this is a simple question.
I have this create table statement and in ...
2
votes
1answer
50 views
How do I reset the format of a Form after saving and going to a new record
I have form that adds records to a table. I have some VBA code on the AfterUpdate event of a combobox that changes the visibility of some of the other form controls depending on the value chosen. I ...
1
vote
1answer
263 views
Access the database engine could not lock table - Make Table script for fields held on the form
I'm having a bit of trouble with some vba script i'm attempting to run from a button on a form.
Via a linked MDB file, I've written a string of Make Table queries that help certain other queries ...
0
votes
2answers
64 views
Delete from <tablename> where <columname> Like <value> MS Access
I am using the following code to filter out some columns in my taglist:
DELETE FROM TagSubs
WHERE TAGNAME LIKE '*\CMD\*' OR '*\PAR\*'
Now I thought this would just delete all the rows that are made ...
1
vote
2answers
208 views
How to enable 1 user to update the database while allowing others to only read in Microsoft Access?
I am planning to put my microsoft access application with forms and database onto a shared drive for around 10+ people to use. However, there is the issue of concurrency. Is there any way to set it ...
0
votes
0answers
63 views
SQL Query that leaves duplicate fields blank?
This is mostly just for cosmetic purposes... What I would like is if my data is this
ID Name
0 Jim
1 Dave
1 Bob
1 John
2 Ann
My query returns....
ID Name
0 ...

