Microsoft Access is a rapid application database development and reporting tool.
-1
votes
0answers
19 views
How do I import Outlook Express .dbx file into MS-Access? [closed]
I thought there would be tons of applications that would allow you to import Outlook Express and Vista Mail files into access but I'm drawing a blank.
I looked for an ODBC driver, I looked for a ...
0
votes
0answers
39 views
Setting the control source of a text box
What I am trying to achieve is to have a combo box determine what table the subform boxs are bound to, I have 4 tables with all the same coloumns and I want to be able to create a record and save it ...
2
votes
4answers
60 views
How to Delete a record in a subform when you click a button
I'm getting a run time error 3131 Syntax error in FROM clause. Can anyone tell me what I have done wrong?
Dim strSQL
If Not (Me.PlantTransactionQuery.Form.Recordset.EOF And ...
0
votes
4answers
39 views
Get Maximum Value
I am using MS Access database. I have a table (Proposal) with the following properties:
ProposalID - PK, Title, RequestedAmount, ResearcherID - FK
I want to run an SQL query to get the candidate that ...
-2
votes
1answer
42 views
MS Access with Entity Framework [closed]
Does entity Framework support for the Access database ?
I have done research and found that there are no entity Framework for MS access database.
ADO.net support oledb to connect access db.but it ...
2
votes
3answers
64 views
How to create an Access DB with vba / c# (DBMS) [closed]
I have seen some tutorials but everything that I am trying is not working.
I want a simple project with just one textbox (where the name of the database goes) and a button that creates theAccess DB ...
2
votes
2answers
26 views
Access Autonumber and Maintaining Uniqueness in Multi-user Database
Somewhat general question about Access, but hopefully has a fairly easy answer:
When you use autonumber in a shared multi-user database, is Access doing anything in particular to ensure that the ...
0
votes
1answer
34 views
Access Custom Primary Keys
I'd like to create custom primary keys in my Access database.
The database is going to be multi-user, so I need a method that ensures each key is unique even when multiple users are trying to add new ...
3
votes
1answer
34 views
how to export query to Excel without truncating Memos to 255 chars?
Using Access 2010. I have a query with several Memo fields in it that I would like to export to an Excel sheet. Every method I have tried so far has truncated the Memo fields:
Export Wizard
...
0
votes
1answer
46 views
quering a database in visual studio
I use local Access database in C# project. I need to develop a complex SQL query, but I'm a bit stuck. My table structure is:
Student:
(PK)TagID StudentID (FK)CourseID
4855755 HUJ564334 25
...
1
vote
2answers
34 views
Check if field contains any numbers?
Hi I'm trying to write some VBA so that it checks whether one of my text boxes contains a number. The text box is called: CustomerName. Here's the code I am currently using:
Function ...
0
votes
0answers
38 views
Displaying an image in a ListView from a Access database
I am using ListViews in order to display data from an Access table in visual studio.
I have an image saved in the database as a OLE Object. When I run the website in visual studio instead of seeing ...
0
votes
3answers
32 views
Automatically or easily updating my database
I have available to me a Report that is generated in Microsoft SharePoint, and it holds the quantities for certain items. The reports can be exported as excel documents, but if it is possible i would ...
0
votes
2answers
89 views
Copy a column from one table into another table
I have tried this with ALTER TABLE to create the column followed by INSERT INTO. This kind of works, except each subsequent column starts after the previous column has ended. I guess this is how ...
1
vote
2answers
119 views
Can't complete complicated query
I have a question about an SQL in C# I want to implement but I'm a bit stuck. Below are the tables with some example data:
Student:
(PK)tagID studentID (FK)courseID
4855755 HUJ564334 25
...
0
votes
0answers
13 views
Compact and repair with microsoft.office.interop.access
I want to programatically compact and repair the access database (.mdb). Following is my code
compact = new Microsoft.Office.Interop.Access.Application();
...
1
vote
2answers
82 views
Why my method is not updating
I have three tables. I have main table called employeemaintable
Fieldname Data Type
* EID Text
Firsname Text
Surname Text
Second table called employeeJobdetailstable
...
0
votes
2answers
28 views
Access not importing relationships for MySQL linked tables
I have successfully linked my MySQL database with my Access database file. Everything is working fine except the relationships in the MySQL database are not appearing in Access.
I have made a plenty ...
1
vote
1answer
54 views
Need SQL to update table with data from another table IF numbers match
I have this function below that is letting user choose excel file and it imports the data into a table(MyTable). Its just a single column excel file. The table it imports into contains 2 ...
1
vote
2answers
69 views
INSERT error ASP.NET
Hey I get an error saying there is something wrong with my code when inserting into a database, can't quite find it. The error suggests it is something in the INSERT statement, but appears on the line ...
0
votes
0answers
26 views
Connecting Access front end to SQL server back end connectivity problems
I have an Access database which I migrated from Access to SQl SERVER 2008 R2. I have enabled TCP/IP connections on the database and I can connect across the network to the database via SSMS. ...
1
vote
0answers
36 views
How to upload file using vba with Access 2010
I am trying to use vba/XMLHTTP in an Access 2010 database to upload a file. While it is going through the process and I'm not receiving any errors, nothing ends up on my web site.
Here's the code ...
0
votes
0answers
76 views
C# - Emgu Cv - Face Recognition- Loading training sets of Faces saved to Access database as a binary in to EigenObjectRecognizer for Face recognition
I was having a hard time loading training set from Ms Access database in to the main form that does the Face Recognition. I saved the training sets with their names and ID in to the database as a ...
1
vote
1answer
39 views
Creating a union in access with multiple tables and field on one table being the same as multiple fields on others
Here is my current query
Screenshot of my form:
SELECT * FROM jdsubs
INNER JOIN amipartnumbers ON amipartnumbers.oemitem = jdsubs.oempartnumber
WHERE ((([txtEnterNumber])
In ...
2
votes
2answers
115 views
SQL Insert into table only if record doesn't exist
I want to run a set of queries to insert some data into an SQL table but only if the record satisfying certain criteria are met.
I have 3 fields in the query: ID, date and price.
So my query would ...
0
votes
1answer
29 views
Microsoft Access listbox bring to front
I have two list boxes in a form. One of them is bigger than other. Smaller one was placed at the back of bigger one. I tried position > bring front for smaller one and position > send back for bigger ...
-1
votes
2answers
23 views
I am not able to run date datatype as SQL query in MS Access 2007
I have imported an Excel file in MS Access 2007 having date formated as dd-mm-yyyy. When I run the following query
SELECT Hours
FROM work_DA WHERE Date BETWEEN 01-05-2013 AND 09-5-2013;
I get only ...
1
vote
1answer
95 views
EmguCV - Face Recognition - 'Object reference not set' exception when using training set from Microsoft Access Database
I've been developing a face recognition application using EmguCV (C#). I got the whole thing working okay if I store the face images (training set) in simple windows folder. But, after I tried to ...
0
votes
1answer
23 views
SQL MS ACCESS - Select Last Updated Row with condition
First of all thank you for any support you're able to provide.
I'm working on building a workload tracking system, I have a table that currently has listed all the tasks to be completed (each with a ...
3
votes
2answers
34 views
How to return a row only if multiple clauses are met
I am working on an application to dispense liquids. here is the organization of the DB
CANISTER:
canister_id{PK}
ingredient_id{FK}
INGREDIENT:
ingredient_id{PK}
ingredient_name
DRINK:
...
0
votes
1answer
11 views
MS Access report with data from two tables
I have a Clients table and a Booking table. I want to generate an Invoice with info for one client, and one booking. I'd like the ClientID and BookingID to be supplied by parameters from a form... I ...
-2
votes
1answer
29 views
Is there a place to get Microsoft Access Templates for forms/reports?
I was looking for a quick Form/Report template that I can incorporate a current database into by just binding the fields to the specific fields that are in the template.
1
vote
1answer
13 views
MS Access Combine tables with like fields
I want to get a combined result of Costs and Payments sorted by date. This is the query I'm trying:
SELECT ClientID, TheDate, Payment, Cost
FROM
(
SELECT PaymentDate AS TheDate, Amount AS Payment, ...
0
votes
3answers
34 views
Call method from another form
I have a navigation form with two subforms that looks something like this:
When the button in Subform A is clicked, I would like to call a method from Subform B. The method is defined like this:
...
0
votes
2answers
43 views
VBA global variable value disappear in other sub
I have a global variable called flag set up. I can access flag from every module in my code, but when I assign it the value 1 in Sub Command97_Click(), for some reason flag does not keep the value to ...
2
votes
1answer
42 views
MS Access display query results on form
I have a simple Clients table and made a form to enter all the fields. I also have a query called "Balances" which does some math and calculates the balance on each clients account. What I want to do ...
0
votes
1answer
40 views
How to ensure dates are in correct format for OleDbCommand parameters?
When I execute the code below against an MDB database, the data table is empty, however when I run this in a query tool against the database it returns 2 records.
What could be the problem?
Is ...
1
vote
3answers
25 views
Multiple users simultaneously updating XML file
Let's say you got the following scenario:
An application runs locally on two computers, the XML file is shared.
User 1: load the file.
User 2: load the file, update row 5.
User 1: update row 6, ...
-3
votes
2answers
57 views
SQL statement, OleDbException error INSERT
There is no error in the code, but no information is appearing in the database.
string mysql;
mysql = "INSERT INTO Cars(Make,Model,Price,[Image]) VALUES ('"
+ tbMake.Text + ...
0
votes
2answers
59 views
How to create a ODBC connection to SQL Server?
I try to use Access to call a stored procedure in SQL Server. But have trouble to build the
ODBC connection, I do not know am I missing something? Or just need do some set in sql site?
I have a ...
1
vote
1answer
20 views
Access selecting data based on earliest or latest time
I am parsing an access log I want to create another table (table B) from the first table (Raw table A) with the following criteria.
Raw Table A Data
full_name, reg_id, date, time
Matt, 1, 05/01/2013, ...
0
votes
1answer
65 views
VBA array length (not ubound or onerror!)
Sorry to ask such a basic question but this is driving me mad...
What function in VBA returns the number of elements in an array... i.e when the array is empty it will return 0?
I cant do this with ...
0
votes
1answer
14 views
Invisible value when creating new record
I have problem with some form in Access 2010. In one of the fields (Amount) I have as a value expression =IIf([IsNull([Code]);1;2) . In the form the values 1 and 2 are shown correctly but when I try ...
0
votes
0answers
13 views
how to get tables content of mdb made by access 2.0
I have some mdb's made by old access 2.0. its secured with User level security method.
I have owner username and PID.
How to access or get tables and their content.
Any tools, or code snippets is ...
0
votes
1answer
36 views
How to add a new record from unbound fields of two tables in to a subform
Hey there Good Day can anyone help me please?
I got a mainform and a subform and Ive created a query to join the two tables and ive tried to use the query to insert fields which is unbound, my subform ...
0
votes
1answer
24 views
How to scroll the page to make a field completely visible
I have a client database with a form where the client's treatments are listed below the main data in a continuous form. For each treatment there are fields for treatment dates, medications etc and a ...
0
votes
0answers
36 views
Internet Explorer cannot display the webpage using IIS 6.0
I have some problem, I just deploy my web application into PC which is using window 7 32bit, IIS 6.1. I use asp.net with MS-Access 2003. I always get this problem every time I want to access the ...
0
votes
2answers
70 views
JDBC PreparedStatement with “?” in the Column Name
I am using a JDBC connection to fetch data from the Ns Access Database.
The database design is not my control. In DB, there are column names which has "?" included in their names. For example : ...
0
votes
1answer
51 views
Update Fields in Record Using Forms Command Button
I'm new to MsAccess.
I have a table named "Tracking" which contains some fields including "OrderID", "Process1_In" and "Process1_Out".
I created a form which creates records with "OrderID" and ...
0
votes
1answer
30 views
How to display records in form using DoCmd.OpenForm?
Apologies for the newb question, but I am having a really hard time opening a form using DoCmd.OpenForm and getting it to display some results. Here's what I have so far:
DoCmd.OpenForm "Report", ...


