Tagged Questions
0
votes
0answers
14 views
Outlook.Application on Access Database
I am trying to run this code but the system does not respond to any of the inputs. Could you please help me with this:
Private Sub SendMail_Click()
On Error GoTo Err_SendMail_Click
If Me.Dirty Then
...
0
votes
0answers
14 views
Opening an MS-Access database from the command line without running any of the startup macros?
Is there a way to open an MS-Access 2003 database from the command line without running any of the startup macros or displaying any errors?
I looked at the command line arguments for MS Access and ...
0
votes
1answer
44 views
IIF THEN MS ACCESS 2010
This code has always stumped me, I have two training courses I am trying to find records of which employee has taken them, The code is:
SELECT O896IA_VEMPPRSA.EMP_NA, O867IA_VTRAING.SYS_EMP_ID_NR, ...
0
votes
0answers
19 views
Adding a new record via subform
I'm making a simple shop database.
I have tables for products, customers, orders and order details.
I have a form of customers with a "Go to customer" combo box which works fine. It also has a button ...
-3
votes
0answers
32 views
how to get value from table to login using dlookup?
got a hard time figuring this one out. Can someone please help me?
here is my code so far:
Dim u As Variant
Dim p As Variant
Dim inu As String
Dim inp As String
u = DLookup("cusername", ...
3
votes
2answers
37 views
code for DLookup for login username and password
I want to make a log-in form, but I don't know how to get or confirm that what I typed in my Username and password textbox is in my table using DLookup in my log-in button.
Here's my current code:
...
0
votes
2answers
30 views
embed image into mail body using access vba
I am currently using the code below to send out mails from access with an attachment. But i searched everywhere with no luck for a sokution to get the attachment embeded into the mail body itself. ...
0
votes
1answer
32 views
vba write numeric data as text into excel
I am writing data into an excel spreadsheet. The data comes from an Access Database. Code like the line below works:
xl.cells(5,5)="joe"
but code like the line below does not:
...
0
votes
1answer
24 views
run time error 3061 - ms access
I am relatively new to MS Access and VBA. I am trying to do a bit of code for this DB and get error message 'Run Time Error 3061. Too Few parameters. Expected 1" when it gets to the OpenRecordSet ...
0
votes
0answers
19 views
Export to Excel from Access stalls
I am running a few queries which alters data in tables then exporting the final alterred table to an excel spreadsheet.
The code looks something like this....
Do.Cmd.OpenQuery "Query 1"
...
1
vote
0answers
23 views
Difference Between ApplyFilter and SetFilter
What is the difference between the DoCmd.ApplyFilter and DoCmd.SetFilter methods? I looked them up on msdn and I don't see the difference. They even have the same arguements.
-1
votes
1answer
40 views
Getting error message : You tried to execute a query that does not include the specified expression 'CS' as an aggregate function for an UPDATE query
I am trying to execute the below update query but it throws an error stating 'CS' is not part of an aggregate function. No clue as to what the error could be.
UPDATE [Control Shipping Summary Report] ...
1
vote
1answer
57 views
How to simplify this insert statement
So I'm trying to insert 120 rows into a new table and it keeps throwing "Query too complex" errors at me. It works fine upto 90 rows.
This is the query:
SQL = "INSERT INTO " & newtable & " ...
0
votes
2answers
30 views
Is there a way to track mass emails confirming products received in outlook 2010
My company receives email confirmations of our products being received for inventory purposes. We received over 1000 a month, we have one employee (hate her job) that goes through each and every ...
0
votes
1answer
19 views
Referencing Controls on main form and a form opened from the main form
I have 2 forms. The first one, in _Load executes several statements such as the one below, storing control references in arrays.
Set dateButtonsArray(1) = Forms("DepositsForm").[Date1]
Through an ...
1
vote
1answer
33 views
Concatenate string and integer in VB
I have a following code:
Dim IDfiltr As Long
IDfiltr = Forms!KONTROLA!ID_OS
DoCmd.OpenForm "OSOBA", acNormal, "", "", , acNormal
Forms!OSOBA.FilterOn = False
DoCmd.ApplyFilter "", ...
1
vote
1answer
38 views
Is it possible to pass parameters programmatically in a Microsoft Access update query?
I have a query that's rather large, joining over a dozen tables, and I want to pull back records based on an id field (e.g.: between nStartID and nEndID).
I created two parameters and tested them as ...
0
votes
0answers
27 views
Combo box values become invisible after selecting
I have a combo box which works fine except that when i select a value , the values becomes invisble. Everything else works fine , can someone help me solve this problem thanks
This is my vba code ...
0
votes
1answer
27 views
Character changes when importing to Access and exporting to Excel
I'm working on an Access database in which I import csv files converted from xls
Usually this works, but recently one file has some fields where characters change within the field after being ...
0
votes
1answer
34 views
Two records being added to table MS Access
I have a form which allows the user add a record to a table but when the Create Operation button is clicked two records are added to the table instead of one. When I add a second the extra record is ...
-3
votes
2answers
33 views
MS Access GUI macro for starting external program?
I am having trouble finding information about the creation of an MS Access GUI Macro (VB) for starting an external program.
Suggestions?
1
vote
1answer
34 views
VBA Access get string from db
I have a table with a column contain email addresses.
I would like to get these email addresses and send mail to them.
My problem is that i don't know how to get the addresses.
I would like to get a ...
0
votes
0answers
19 views
I need a isdropdowndisplayed (dropdown displayed boolean) on a comobox
Is there a property or general method for determining if the dropdown on a combobox is currently being displayed (or was just displayed)?
I am making a form for old people and would like to change ...
0
votes
0answers
34 views
Creating Language Option In Visual Basic For Applicaiton (VBA) in Microssoft Access 2007
I am developing a database application for a client. This application is expected to be used in various offices across the African continent and hence, it is expected that the application will have an ...
0
votes
1answer
56 views
Need SQL to update table with data from another table (adding another column to one already done)
I recently asked this question below
Need SQL to update table with data from another table IF numbers match
I have it working but trying to add something else now.
I wanted to bring another column ...
0
votes
0answers
36 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
3answers
61 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 ...
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
2answers
84 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
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
0answers
30 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
57 views
MS-Access SQL / VBA with field > 256 chars
I'm using VBA and Access 2003 and I have the following query to get the full path of a folder (only the IDs, parent IDs and folder names are stored in my table):
Table Folder
ObjId
ParentID
Name
...
1
vote
1answer
38 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 ...
0
votes
2answers
41 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 ...
0
votes
2answers
57 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 ...
0
votes
1answer
59 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
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
1answer
28 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", ...
-1
votes
1answer
24 views
How can I sort a query by a subquery field?
The Code below works fine until I try to Order the query by the "Prior_Usage" column I get a syntax error. Any help would be greatly appricated as I have spent hours searching for a solution
SELECT ...
1
vote
1answer
39 views
Do I need to use ADO when connecting to Active Directory with VBA?
I need to query Active Directory and build my MS Access database using the results. I found some code here. As you can see, part of this code is creating an ADODB.Connection object. Is this the only ...
0
votes
1answer
59 views
Complex Import/Export Data Access/Excel
Our organisation has been given a spreadsheet template to do batch imports to a website.
It's quite a faff for users to update as it's structured all on a single page in the following way:
| ...
1
vote
1answer
53 views
Relinking database tables: Access, VBA
I have a procedure that relinks all the tables in a database baed on whether or not they are a linked table. Currently this is set up to run automatically as it's set inside an AutoExec macro which ...
0
votes
1answer
103 views
Create new record when save button is clicked instead of overwrite MS-Access
I have a form with a combox box and a text box that are bound to a table, there is also a table displaying the contents and a button to save the reocrd.
I was wondering how do I have the form create ...
3
votes
1answer
23 views
extracting information from a text using vba
I want to extract some information from a text file.This is a line in my text file and I want to extract the numbers and save these numbers in an array.
ST/X 1000.0000000000000000 ...
0
votes
0answers
37 views
Create Access ADE file from command line
I have inherited an Access 2007 application that needs to be saved as an ADE before release. Is there a way to do this from the commandline? I am trying to automate the build process as much as ...
0
votes
0answers
20 views
ACC2007: Event for clicking outside of tab control
In frmCases there is a tab control tab1. On page1 of tab1 there is a subform. When the "Add case" button is clicked, tab1 and page1 are made visible. Clicking anywhere inside the tab control is ...
-1
votes
1answer
32 views
Using Do Loop and Variables to stack columns
Updated with code below:
I'm thinking this might be very quick for someone who is familiar with using a do loop an variables. I have a table with a lot of columns, what I need to do is stack the ...
1
vote
1answer
155 views
How to install CR10 runtime on win7 64bit
I'm using the Crystal Report 10 viewer ActiveX control in an Access App I've written. Works great in Office 2003 on 32bit versions of Windows. The problem arrises when I try to run the program in 64 ...
0
votes
2answers
47 views
MS Access set combobox values from query
I'm working with MS Access.
Private Sub Combo0_Change()
Dim db As Database
Set db = CurrentDb
Dim SQL As String
SQL = "SELECT album FROM Albums"
End Sub
I have a query and it ...
0
votes
0answers
58 views
how to write rich text in word document through VBA Code
I am using clipboard object to write rich text in word doucment(MS Word 2003) thr'
Microsoft Access 2007 VBA code. sample code as follows,
lRtf = RegisterClipboardFormat("Rich Text Format")
...


