Tagged Questions
4
votes
1answer
1k views
Cannot Open Database Created with Access 2010 in Access 2007 Even With SP2
A database created with one of the new sort orders will not open in Access 2007 even with SP" installed.
4
votes
1answer
1k views
how do i build a website using access 2010?
has anyone done this yet? please show me some good tutorials on building websites with databases using ACCESS 2010
you can build a website using it: http://www.youtube.com/watch?v=AU4mH0jPntI
3
votes
2answers
101 views
Text-search in properties Access objects
Is there a way in Access to search for a certain text in object properties and so on? Just not only in the VBA source code.
I'm asking this because if I change for example the name of a field in a ...
3
votes
3answers
10k views
Access 2010 VBA query a table and iterate through results
I have a query that I want to execute against a table. With the results I want to do something. In my head the pseudo code is:
var q = "select * from table where some condition";
var results = ...
3
votes
5answers
6k views
Is there an Open File dialog for Access 2010 64bit?
How do I get an Open File dialog for Access 2010 64bit? Normally I would use the common dialog control but that is 32bit and cannot be used with Access 2010 64 bit.
3
votes
2answers
1k views
Data macros in Access2010: triggers?
I've heard on the grapevine that the forthcoming Access2010 has a Data Macros feature which will for the first time add trigger-like functionality to Access data engine tables. Does anybody have an ...
2
votes
2answers
32 views
Calculating days between dates and parameters in MS Access
I'm trying to write a query that allows me to get records for all users whose items are more than X number of days overdue. I want to be able to specify whether that number be 30 or 40 or 50. I am ...
2
votes
1answer
92 views
Programatically delete an Access macro with VBA
I need to programmatically delete an Access Macro (or Form or Report) via VBA.
The AllMacros collection (and the associated Application.Containers().Documents collections) appear to be Read Only.
I ...
2
votes
1answer
142 views
Add combo box dynamically in MS Access forms
I'm trying to create a form in MS access.
Initially i will have only one combo box.
My requirement is i have "Add" button if i click on this button this should dynamically add Combo boxes one below ...
2
votes
1answer
177 views
Migrating from Access 2000/2003 to Access 2010
I want to use access 2000 and 2003 databases in access 2010. Since I don't want to check if everythings's working manually I am looking for a tool that analyzes VBA code for errors or compatibility ...
2
votes
2answers
221 views
Alter Table doesn't work under MS Access 64 bit. Why?
I am trying to write a simple function to resize a text field in MS Access 64 bit version under Windows 7. It fails with the error 3420, object invalid or no longer set. Why is this? Can't you ...
2
votes
1answer
81 views
Can I add a button in an Access stock program to search Outlook?
Is there a way I can make a button on an access database that automatically searches Outlook? My idea is to have a button besides the email address which can be clicked and it will open Outlook, or ...
2
votes
2answers
293 views
Ensure SQL-92 on Access 2000 mdb to SQL Server under Access 2010
Due to circumstances not fully under my control, I have to develop ACCESS queries which will be stored in an Access 2000 MDB but which may be developed under any one of: Access 2000, 2002, 2003, 2007, ...
2
votes
1answer
344 views
why does access 2010 with postgresql odbc driver call IDENT_CURRENT?
I am migrating an access 2003 application to access 2010. The application uses the postgres odbc driver to access its data.
On access 2010 it tries to use the IDENT_CURRENT function on the postgresql ...
2
votes
1answer
372 views
Case sensitive WHERE in Access 2010
I have to import data from a paradox database into a newly created WPF / SQL-Server application. I have sucessfully imported the necessary paradox-data into Access and now are writing a utility that ...
1
vote
1answer
48 views
Access 2010 linked table check
I am stumped. I have a database with two back ends. One is local on a network and the other is over the Internet. When my database is started the user must pass through a logon and once this happens ...
1
vote
2answers
52 views
Avoiding clashing appointments Access
I have three tables:
Employee(Id,name etc)
Appointment(Id,date,time,employee id, clientid etc)
Client(Id,name etc)
The Employee table has a 1 to many with the Appointment table as does the Client ...
1
vote
2answers
32 views
Access 2010 - reference form loaded by tab form
I have a tab form called Home and I would like to say for example refresh another form loaded in one of the tabs (or the current one).
I tried the following: ...
1
vote
3answers
65 views
Cannot See Design View In Ms Access 2010 Template
I cannot see design view for forms or tables in the Services template ms access 2010.
In access options/options/current database/ the check boxes (enable layout view & enable design changes for ...
1
vote
3answers
26 views
Alternative to Switch statement for grouping results- MS Access
I have a table that keeps track of the letters we send to our customers. We are also keeping track of the letter status in this table, and specifically, we want to know how many people who received a ...
1
vote
1answer
33 views
Need Ability to Easily Switch Between ODBC Connections in Access 2010
I am diving back into the world of Access for the first time in years...and coordinating that with SQL for the first time so please forgive my ignorance here. Here is what I am trying to do:
I have ...
1
vote
1answer
28 views
Query to a Meaningful Report
Sample Query Results
Employee_Last Employee_First RoleName CourseName CourseStart CourseEnd Attended
Ables Christopher ServiceMGR OTC Training 12/1/11 12/1/11 ...
1
vote
1answer
42 views
How to Create a Custom ID in Access 2010
The title of this Question may not be accurate because I wasn't sure how to ask the question.
Is there A way to have an ID field in AC 2010 the has a constant part and then a part of the ID that the ...
1
vote
1answer
125 views
How do I combine these two queries into one?
Query1:
SELECT DISTINCT FirstOfFrequencyMHz, Min(LicenceData.distance) AS CoFX
FROM [Freq List], LicenceData
WHERE ((([LicenceData].class_stat) Like 'F*') And (([LicenceData].type_lc)="A") And ...
1
vote
2answers
50 views
How can I run a series of SQL commands against a MySQL DB and if any of them fail roll back running MS Access 2010 as the front end?
Preface:
I have a MS Access 2010 front end running against a MySQL back end.
I have companies that have sites and employees that are linked to those company sites and want to allow the users to ...
1
vote
1answer
154 views
How can I force Access to change the user-name and password for a DSN less ODBC connection?
Preface
I have a Access 2010 front-end with a MySQL back-end. I want to use a default MySQL user-name to initially connect to the back-end DB and do password checks etc then switch to a user specific ...
1
vote
1answer
86 views
Infinitely looping through a recordset in VBA
I've got a recordset I'm looping through using .movenext and all, but it always loops around!
Dim dbsNu As Database
Dim rsNieuw As DAO.Recordset
Dim rsOld As DAO.Recordset
Set rsOld = ...
1
vote
1answer
202 views
Access VBA: enter expression in user form, store calculated result in table?
I've got a form that I'd like users to be able to enter simple maths into, with the calculated value stored in the table.
For example:
User enters "1+5" into a text box.
The answer 6 is stored in ...
1
vote
1answer
109 views
Is there a way to disable Access 2007's Code editors CTRL+Y Shortcut key?
Background
I have used MS editors and applications for years including Visual Studio and office products and got use to CTRL+Y being redo. In fact so use to it doing that that I use undo CTRL+Z ...
1
vote
1answer
246 views
MS Access Lookup Wizard columns showing ID instead of name
In General
I'm just getting started in MS Access and one of the issues that keeps creeping up is with lookup columns in tables will stop showing the lookup name, and start showing lookup ID.
For ...
1
vote
1answer
387 views
access 2003 application runtime error in access 2010 runtime
Hi I have a application designed in access 2003 that has its front-end and back-end split. The front-end has some tables used in the UI and a lot of queries, forms, reports, and macros. This app also ...
1
vote
2answers
181 views
Subform not updating from other subform input in Access 2010
I have a database with 2 sub forms within a form with fields as below
Sub Form 1: 'Qty Booked In', 'Qty Booked Out'
Sub Form 2: 'Total Stock'
When running in Access 2003, the 'Total stock' field is ...
1
vote
1answer
100 views
How do I correctly use an Avg function in an update statement?
I am trying to get the average for each MIUID inserted into a table. The relevant tables and column information are as follows:
Table1.[MIU ID], Table1.[Avg RSSI]
and
Table2.MIUID, Table2.MeanNum
...
1
vote
4answers
877 views
Using VBA to create a dynamic table in Access 2010
I have an Access 2010 database with a VBA module that does some statistical analysis on the data. The results of the statistical analysis cannot be generated by SQL, but they can be presented in ...
1
vote
2answers
263 views
Microsoft Access: Long Text field truncated in report! How to fix this?
I created a simple report in Access. One line per record (using the default tabular format with Report Wizard). However, one text field is sometimes too long and is truncated when one record is ...
1
vote
0answers
127 views
Access 2003: Selection from drop-down box to populate table
I have built queries for 32 facilities (an M and a P, total of 64 queries). I am trying to build a form that lists these queries in a drop-down box. When you select the query, it populates the queries ...
1
vote
2answers
175 views
Is there a way to empty access database and erase all data on it completely as if the database never used before?
I have Microsoft Access database (.mdb) that contains too much data. When i delete the data in it by code or by deleting records, the data is completely deleted. However the database size remains the ...
1
vote
1answer
62 views
Connecting Tables in Microsoft Access 2010
I'm new in creating database in Microsoft Access, I'm trying to figure out how to connect tables in it. I have 3 tables, I named it as Products, Suppliers, and Prod_Supp. In my Prod_Supp table I have ...
1
vote
1answer
532 views
An Access Problem:How to Set Access Report paper size A3 through VBA code
I want to set access report paper size to A3 permanently whenever user print it through VBA
code .
For that I have written this code which I have found over net
Option Compare Database
Type ...
1
vote
1answer
255 views
MS ACCESS 2010 - trying to write a query to avoid duplication in a linking table
This is my first question so I'm going to be very thorough. Bear with me.
I am building a database for beers and have created a linking table that allows me to suggest similar beers (either by taste ...
1
vote
1answer
135 views
In MS Access 2010, How do you get rid of the 'Add New' tab in the navigation control?
I want to remove the space the [Add New] tab is taking up in the navigation control. Is there any way to do this?
1
vote
1answer
291 views
Use Office 2000 proofing tools in Access 2010 Runtime
I am using Access 2010 Runtime to run my custom database application. Office 2000 professional is also installed on the same machine. I use DoCmd.RunCommand acCmdSpelling a couple different place to ...
1
vote
1answer
349 views
Access report either not showing data or failing with “Multi-level GROUP BY cause not allowed in subquery.”
I have two queries that I am using to generate a report from, the problem is when I run the report, three fields do not show any data at all for some reason.
Query 1:
SELECT ClientSummary.Field3 AS ...
1
vote
2answers
1k views
Access Services and SharePoint 2010 - Need Info
I've been asked to research the ability to publish Access solutions directly to SharePoint as demonstrated in the demo below.
http://channel9.msdn.com/shows/Access/Microsoft-Access-2010-Demo/
I'm ...
0
votes
2answers
9 views
How to open Form in Add record
I have a form to input records to a table. I would like it to open on an empty add (New) instead of displaying the first record of the table. To be used by a Navigation Form which opens the input ...
0
votes
1answer
13 views
MS Access: on form combo box with column count > 1, how to display column 2 in resulting table entry?
I have built a simple database posted here (Access 2007 format): http://www.derekbeck.com/Database1.accdb
I have two tables:
a task list
an organization list
I want a form "assign orgs" to have ...
0
votes
2answers
33 views
ms access form for allocating categories to a user
I am stuck with a little problem. I am using MS access 2003 (also 2010 on our server).
I have a table of users, a table of categories and a table for user_to_category.
How would I create a form ...
0
votes
1answer
27 views
Stock on the fly missing values with no sales
I have the following queries,
QryStockOnHand
SELECT QrySaleTot.Item, QrySaleTot.ProductID, [QryStockLevel].[Stock]-[QrySaleTot].[Quantity] AS StockOnHand
FROM QryStockLevel INNER JOIN QrySaleTot ON ...
0
votes
1answer
53 views
MSAccess: Selecting one row out of a one-to-many relationship
In MS Access 2010, I have TableA related one-to-many to TableB, and TableB related one-to-many to TableC. TableC has one numeric field and one date field (in addition to the lookup field).
FormA's ...
0
votes
0answers
50 views
How to lock record from changing? [Access 2010]
I'm doing a small project as a part from my course in access; we use Microsoft Access 2010 but the database itself is 2007.
My main problem is: how to lock a record from changing after a value in the ...