Tagged Questions
Microsoft Access 2007 - a rapid database application development tool
12
votes
7answers
10k views
Is it better to use ADO or DAO in Access 2007?
When creating a new database in Access 2007, should ADO (ActiveX Data Objects) or DAO (Data Access Objects) be used?
Edit: Part of this database will be importing data from Excel 2007 spreadsheets.
8
votes
5answers
757 views
Why does MS Access 2007 not allow a row insert, but then allow it on the next insert attempt?
My insert statement is:
INSERT INTO myTable (inst_id,user_id,app_id,type,accessed_on)
VALUES (3264,2580,'MyApp','Renew',Now);
...where all of the values are formatted correctly. The table has the ...
5
votes
3answers
2k views
Exclamation Marks in a Query SQL
I'm reading over this query, and I came upon a line where I don't understand heres the line
[FETT List]![FETT Search]
FETT List is a table
FETT Search is a column in FETT List
Can someone ...
5
votes
9answers
24k views
Connect Access 2007 to SQL Server 2008 Database
I've seen numerous answers to similar questions like this one. I haven't seen on the web many people have asked the seemingly simple question "How do I connect Access 2007 to an SQL server 2008 ...
4
votes
3answers
189 views
Using Microsoft Access as a front-end to a MySQL database?
My Microsoft Access database (FE/BE) has grown out of the limitations and I've to import more data, so Access is not the right choice anymore. I'll switch to MySQL (NOT SQL Server) as a good ...
4
votes
2answers
110 views
how to automatically create a class compatible with the access table?
i want to use Linq to connect to a access2007 database (i don't want to use ado.net).
i saw some examples but all of them make a class of the object i want to import from the database for example
...
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
0answers
365 views
Access 2007 upgrade DAO references conflict
I am updating an Access 97 DB w/ VBA code to Access 2007. The VBA code uses DAO objects that Access 2007 references when I converted the db files (first from 97 to 2002, then to 2007). My problem ...
4
votes
4answers
1k views
How do I distribute updates to a Access database front end?
I've got an Access 2007 database that I developed which connects to SQL Server for the actual data storage. I used the Package Solution Wizard to create a distributable installer which included ...
4
votes
2answers
2k views
Hiding columns in a Microsoft Access 2007 datasheet with VBA
I am trying to hide specific columns in an Access 2007 split form through code. I need the form to check certain conditions to see whether it needs to display a column or not. I have code in the ...
4
votes
2answers
373 views
Error in datagridview using ms acess(c#)
the below mentioned code raises error "SYNTAX ERROR IN INSERT INTO STATEMENT"
here i took name and number field has text
no as autonumber(primary key)
con = new ...
4
votes
8answers
3k views
MS Access Application - Convert data storage from Access to SQL Server
Bear in mind here, I am not an Access guru. I am proficient with SQL Server and .Net framework. Here is my situation:
A very large MS Access 2007 application was built for my company by a contractor.
...
3
votes
1answer
47 views
Column/table delimiters in Access 2007, Oracle, and SQL Server
The Problem
I'm trying to dynamically build a few SQL statements that need to use column/table delimiters so that we can have table names with two words, or special reserved keywords, etc. (I don't ...
3
votes
2answers
63 views
How does Access's query editor decide whether to discard my formatting?
Like a lot of developers who are comfortable with SQL syntax I get frustrated when working with Access's query editor. I'm talking about the raw SQL Syntax view, obviously.
One of its many annoying ...
3
votes
5answers
199 views
SQL select query not working. in ms access 2010
here are my two charts and my query. Obviously you do see that some parameter names match. but my query shows up as no results. WHY IS THAT?
Thank you .
Altho this query was made in access 2010 ...
3
votes
2answers
103 views
How to find all queries related to table in MS Access
I have a database. In this i have hundreds of tables,macros and forms.
No my problem is i have to find what all queries,macros that are related to specific table.
I'm using microsoft acess 2000.
But ...
3
votes
4answers
130 views
MS Access Update Query
I am trying to figure out if an update query is really what I need. I have a field called account_numbers, and each entry consists of a 3 digit number prefaced by the letter "M".
Account number
M001
...
3
votes
1answer
123 views
Excel VBA query to access is failing
I am trying to query an access file from excel using VBA and it is giving an error on the line rs.Open queryStatement, conn, adOpenStatic, adLockOptimistic. The error is "Run-Time error '-2147217904 ...
3
votes
2answers
109 views
Conditional default values in MS Access
I'm using MS Access 2007. I have a form with several phone number fields (cell, home, work, primary*). The data source for all of these fields comes from a Customers table.
Basically, what I am ...
3
votes
2answers
59 views
Dynamic menu items from a database
Is it possible to load menu Url's and attributes from a database?
I am building a site that will incorporate dynamic news sections and it would be great to include new news items into the menu ...
3
votes
2answers
92 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
4answers
861 views
Access 2007: type mismatch when opening an ADO connection
I have an Access ADP file. I upgraded the back-end database to point to a SQL 2005 server instead of a SQL 2000 server and changed the database connection information appropriately. The file runs ...
3
votes
1answer
49 views
How do I assign a function that returns a value to a variable?
So I have a class called Transactions and I put all my functions there. The problem is, when I try to call that specific function and assign it to a variable, there is a "ByRef Argument Type ...
3
votes
3answers
230 views
Count of two types of values in same field in MS-Access
I have this table customerDetail, in which there's a field c_type, in which "a" represents "active" and "d" represents "not-active". Now I have to find the count of both of them in same query.
I used ...
3
votes
2answers
441 views
Making a SOAP request from Access 2007
I am currently working on a system in Microsoft Access 2007, and I need to make a SOAP request to an outside webserver in order to retrieve some data. I'm new to both SOAP and Visual Basic, and I've ...
3
votes
6answers
2k views
MS Access: How does one insert NULL into DateTime field
I have an MS Access database (intolerably enough), and communicating with it through PHP (ODBC).
There is a DateTime field that I have to include in my INSERT statement. This field is NOT defined as ...
3
votes
1answer
380 views
In a website running ASP.NET, how can I display an image stored in an MS Access 2007 Attachment Type
BACKGROUND:
MS Access 2007 added an attachment field type, where images can be stored.
I am building a website using ASP.Net and the .NET framework 4
So, without using Silverlight, what is the ...
3
votes
4answers
2k views
Check if access table exists
I want to log web site visits' IP, datetime, client and refferer data to access database but I'm planning to log every days log data in separate tables in example logs for 06.06.2010 will be logged in ...
3
votes
3answers
144 views
Access is refusing to run an query with linked table?
i have 3 tables each as follow
cash_credit
Bank_Name-------in_date-------Com_Id---Amount
America Bank 15/05/2010 1 200
HSBC 17/05/2010 3 500
Cheque_credit
...
3
votes
3answers
722 views
Best practices for implementing an Microsoft Access application
Where can I find an overview (website) of best practices for implementing an Access (2007) application (with a FE/BE architecture) regarding to security, performance and maintainability? I know about ...
3
votes
2answers
603 views
Using INSERT INTO and setting one field value - Access VBA
I'm using INSERT INTO to copy rows of data from one table to another:
INSERT INTO tblNewCustomers (CustomerID, [Last Name], [First Name])
SELECT CustomerID, [Last Name], [First Name]
FROM ...
3
votes
1answer
580 views
Access 2007: Unrecognized database format
My client has an Access 2007 (accdb) file. It's stored on SharePoint, and there are three users that check it out, make updates, and check it back in. One user is on Windows 7, another on Vista, the ...
3
votes
4answers
4k views
Unable to connect to MS Access database through JDBC on Win 7 64-bit
I've been trying to connect to a MS Access 2007 database through JDBC. My JDK is JDK 1.6u18 64-bit and OS is Windows 7 64-bit. But problem is I am unable to create a DSN using ...
3
votes
4answers
2k views
How do I compact and repair an ACCESS 2007 database by .NET code?
I need to compact and repair an Access 2007 .accdb database file. I know that JRO.JetEngine can do this with .mdb files, but I need to repair the newer version 2007 format by code.
Any suggestions?
...
3
votes
8answers
798 views
CPU Stuck at 100% on Customer PC, any debugging suggestions?
I'm having a dead-end situation with one of the clients using my software. Out of about 40 copies of our product sold (Application programmed in .NET 2.0 using VB.NET 2005), about 2 get non-responsive ...
3
votes
4answers
1k views
Version control Access 2007 database and application
I need to version control a Microsoft Access 2007 database and application. Currently everything is contained in a single mdb file.
The application includes:
Forms
VBA code
Actual database
I ...
3
votes
6answers
479 views
How to use VBA to automate several Office applications?
Although I've done VBA projects within a single application for both MS Access 2007 and Excel 2007, I haven't automated multiple applications at the same time. The generalized project is to open ...
3
votes
1answer
18k views
Insert SQL command with Datetime in MS-Access
I am trying the following query in MS-Access 2007, but it fails on the time field.
INSERT INTO LOG (EMPLOYEECODE,STATUSID,LOCATIONID,TIME,DURATION,SHIFTID,LATECOMING,EARLYGOING,LOGDATE,STATIONID) ...
3
votes
5answers
9k views
email using Access and VBA without MAPI
I would like to send email from Microsoft Access unattended using VBA. I understand that the built-in method “SendObject” uses MAPI meaning security prompts and something like Outlook configured. ...
3
votes
1answer
1k views
Access 2007: How can I get the onclick event of a Treeview checkbox?
I have an Access 2007 form that is using an ActiveX Treeview control with checkboxes enabled. I want to run some custom code after a checkbox has been clicked but I can't seem to find any sort of ...
3
votes
2answers
2k views
Access query returns empty fields depending on how table is linked
I've got an Access MDB I use for reporting that has linked table views from SQL Server 2005. I built a query that retrieves information off of a PO table and categorizes the line item depending on ...
3
votes
7answers
28k views
The action or event has been blocked by Disabled Mode
I am using Microsoft Access 2007 to move and massage some data between two SQL Servers. Yesterday everything was working correctly, I was able to run queries, update data, and delete data.
Today I ...
2
votes
1answer
53 views
Please help me make this Access 2007 Friendly
I asked a friend to hellp me with an issue I was having with my Access Database since I haven't programmed in years, and here's what he replied with:
Let me toss an example out just to make sure ...
2
votes
2answers
32 views
column alias in access query
I am using a query in vb.net, database is Access
I need alias of query like sql but the query return me column alias and also ' '
SELECT COLUMN1 AS 'FIRST NAME'
I expect the result to be a field ...
2
votes
1answer
31 views
Can System.Security.Cryptography be added to Microsoft Access
We would like to decrypt data stored in Microsoft Access.
Without getting into too much detail we have a Web Form, written in PHP, that saves Form Data (encrypted) to a MySQL table. MS Access copies ...
2
votes
1answer
51 views
Update table result
I have two tables. In the UniqueZips table there is a code field assigned,
my goal is to match the fields of each window from both tables and assign the code from the Uniquezips table to the Route tbl ...
2
votes
2answers
126 views
How easy is to break into MS Access file? How to secure it?
As person pointed out in thread it is really easy to break in into MS Access (*.accdc) file.
How people manage to do this? I know they can see the content by using hex editor.
So how do I break into ...
2
votes
3answers
80 views
finding the courses not taking in Staff table ? using SQL
I have two tables
The First one contains information about staff who take courses
The second table information about all courses available and it must taking by staff
I want quereu SQL to find ...
2
votes
4answers
153 views
MS Access 2007: Find Where a Form / Query / Report is Used
History: I inherited a rather large app written using MS Access with lots of forms, queries, and reports. Because it looks like some of these items that were copied as a way of backing them up, I've ...
2
votes
2answers
79 views
Avoiding errors on Access name-parsing query
I'm trying to clean up data in an older database, and the FirstName field has been polluted with middle names & initials over the years. Using a simple Left-Mid query, I'm easily able to split the ...