Tagged Questions
0
votes
0answers
13 views
MS Access 2010 VBA Combobox
i am new to programming field for MS Access and VBScript.
I have a question that need help from here.
first of all i have 2 tables in my MS Access database.
1 is Web, 1 is Owner.
Relationship is 1 ...
0
votes
0answers
38 views
Combobox issue in Access VBA
I am trying to set a combobox's value to the default one, the problem is the data source is from a query that return an integer type , I want my default value to be "*", when I try this :
Private ...
-4
votes
1answer
32 views
Export MS Access queries to notepad
I want to export all the queries (names with query code) to a notepad/word document. I'm not good at VBA code but I found this code from some site in web which exports all the queries with query code ...
1
vote
1answer
28 views
MSAccess: Change in subform recordsource causes loss of LinkChildFields binding
I have a problem that Im completely stumped by. Or rather, I have a work-around that is messy and I don't understand why what I want to do doesn't work:
I have a mainform / subform nest. The ...
0
votes
0answers
21 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 ...
1
vote
1answer
43 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 ...
-1
votes
0answers
51 views
access 2010 custom ribbon vba commands not working [closed]
I have a custom ribbon that calls vba commands. When it does, I get the error message "Microsoft Access cannot run the macro or callback function [FUNCTION OR SUB]" where [FUNCTION OR SUB] is the ...
1
vote
1answer
44 views
excel and sql queries through different subs or functions
I have an excel sheet which i use with an access database. I want to open the database and use different sub routines with different queries.
However i don't know hot to publically assign an variable ...
0
votes
1answer
37 views
Changing Worksheet Data in Embedded Excel Worksheet in MS Word FROM ACCESS
Ok, so I was able to successfully change an embedded Excel worksheet with VBA in a MS Word Document... FROM the code attached to that document.
Now I'm trying to change that same embedded excel ...
1
vote
1answer
34 views
Update junction table
Here is my tables
Proposal
--------------
Id | ProposalNo
SalesCall
---------------
Id
SalesCallReference (Junction Table)
---------------
Id | ProposalID | SalesCallID
A sales call can be ...
0
votes
0answers
34 views
How to block extra popups from opening when opening page in MS ACCESS Web Browser Control?
I searched the web on this but it seems limited. I am querying a webpage and I am getting the desired result in the webbrowser control (in ms-access form). The problem is blocking the extra popups ...
0
votes
0answers
43 views
MSAccess VBA for Creating Processing Loop
I'm trying to create a loop to process multiple records in a cross reference and if there is more than one match to take the matches and concatenate them together with some text in a field called ...
1
vote
2answers
57 views
Insert values from two different tables into another different table with concatenate
I have a button which uses two separate queries that pull data from two tables and insert into another table:
Dim lngID As Long
Dim lngIDCallout As Long
Dim strSQL1 As String
lngID = ...
1
vote
1answer
125 views
Selecting record from a table/form in one ListBox and displaying it in a ListBox in another table/form
I'm having some trouble writing code for a button to add a selected record from one listbox(ListBoxForm2), to another listbox(ListBoxForm1). I've got a working button to remove a selected record from ...
0
votes
2answers
173 views
MS Access VBA acImport sheet name with spaces and range
I'm building a form with a button called "Go" to import a specific range of a specific excel sheet from an excel file. Another sub/function takes care of having the file name on the form in the field ...
2
votes
2answers
314 views
Access VBA Form Private Sub calling Public Function in different Module
In my database I have a public function in a module that receives a SQL string and returns an open recordset. This function works just fine when called by other public subs, both in this module and in ...
0
votes
3answers
75 views
MapPoint: Distances traveled within a state
I would like a process to take two points and build a route between them, and be able to tally miles by state. would a process like this be possible within Access VBA or VB.net?
So far I am able to ...
0
votes
1answer
64 views
Apply Filter Access 2010 with NULL not working
I have an Access 2010 database that has been migrated from 2003. I have a report that pulls data from a SQL backend and then in the Report_Open event filters that based on a value in a form using the ...
1
vote
1answer
212 views
Display queries in access subform from a selected listbox
Within Access 2010, I am trying to make a form display a query within a subform QueriesSubForm that when selected from listbox QueryListBox and then click on the button runbtn. It is supposed to ...
1
vote
1answer
74 views
Kernel32 issue with MS Access 2010 on Windows Server 2003 32-bit
Hi I have recently installed MS Access 2010 on my Windows Server 2003 32-bit. Since then one of my VBA scripts isn't running properly. MS Access is quitting unexpectedly giving this error with ...
0
votes
1answer
286 views
Merging multiple PDFs to Single PDF using VBA
I am working on a requirement where I am merging 14 individual PDF to single PDF file. Also I want to add page number to each page after merge. Anybody has an Idea how to add page number in PDF file ...
1
vote
1answer
283 views
building a search form in Access 2010
I am trying to make search customer form for access 2010.
I like to have an option group based on a query search. I made a search query looking for first name or last name. two textboxes are also ...
0
votes
1answer
129 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" ...
0
votes
2answers
107 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 ...
0
votes
0answers
33 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 ...
1
vote
1answer
189 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 ...
1
vote
1answer
299 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 ...
2
votes
2answers
1k 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 ...
1
vote
1answer
331 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
2answers
150 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 ...
2
votes
1answer
41 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 ...
0
votes
0answers
53 views
Size of report (Access)
i'm using access 2010.I create a report..and I try to reduce his length.
but I can't find option like that in the properties.
if I try to resize it in design mode, it's not help. when I change to ...
1
vote
1answer
377 views
Losing format with MS Word Mailmerge Macro
Using MS Word 2010 I want a Mailmerge to run with a macro, saving each record out as a separate file, in PDF format using one of the fields as the filename. This will save me loads of time.
The ...
0
votes
1answer
85 views
Access/VBA 3075 - Wrong number of arguments in Iif
iif((([START DATE]<(cdate(format(year() & [WinterStartMonth] & [WinterStartDay],"####/##/##")))) AND ([START DATE]>(cdate(format(year() & [SummerStartMonth] & [SummerStartDay], ...
1
vote
1answer
197 views
Hide new row on form in Access
My project has a form with tabs, each tab displaying data from a different table based on the current record (I will call the main form's record the client) selected in the main form. If there is data ...
0
votes
0answers
305 views
Can't Go To Specific Record on Continuous Form in MS Access
Searched and searched and cannot find a solution to this. I have a form with many continuous form subforms. When I change a value in, lets say FIELD_A on one of the subforms, I run calculations on ...
3
votes
1answer
368 views
Can't clear office clipboard with VBA
I am using a function to copy a bunch of pictures out of an access database and store them on to the disk. However, this function uses the office clipboard and the clipboard fills up after about 150 ...
0
votes
2answers
113 views
Recordset Explained?
Recently I've come to realize that a recordset may be a much simpler (less useful) object than I had originally thought. I'm looking to see if others can confirm or deny my suspicions. Let me explain. ...
1
vote
2answers
664 views
Check if Access 2010 Navigation Subform is Open
I am developing a program to track client information that utilizes a navigation form as a main menu that is open at all times. Many of the subforms have list boxes that need to be requeried as data ...
0
votes
1answer
113 views
How to create an input table (6 records) with merged heading in an Access Form using VBA
How to create an input table (ex. 6 records) with merged heading in an Access Form using VBA ?? What's the best control that support multi input records with columns and rows heading merging? Or using ...
0
votes
1answer
139 views
Mask in a list box in Microsoft access
I have a list box in Microsoft access 2010 how do I make that column 5 should have a input mask
1
vote
1answer
153 views
Audit Track a form
I am setting up a Audit Tracking system for the forms in my database. I am following the example from Susan Harkins Here
My code works for my form customers which is based off the customers table. ...
3
votes
2answers
323 views
VBA in query error evaluating false part of IIF
I have the following column in a query.
iif(Len([Field1])=0,0,Asc(Mid([Field1] & "",Len([Field1]))))
The idea is that it should return the ASCII value of the last character in a string field.
...
0
votes
1answer
796 views
Run Word 2010 mail merge from access without query prompt
My scenario is similar to that described in excel VBA to Automatically select Yes when prompted during mail merge, except that I am running the VBA from the Access database that contains the data to ...
0
votes
1answer
266 views
What reference is needed for TableDef object in Access 2010
I'm trying to use a macro/.mdb file that was written in Access 2003 in a new Access 2010 Access install. Opening my file I get a compile error saying the TableDef object is not able to be found. ...
3
votes
2answers
188 views
Duplicate rows inserted in linked table when updating Form's RecordSource with VBA
I am doing some maintenance work on a linked-table application in Microsoft Access 2010 and experiencing this little gem of a problem. The application is linked to a SQL Server 2008 database. The ...
1
vote
1answer
129 views
dlookup slow results
I have a problem in access 2010 where my dlookup runs very slow but if I already have the saved query open it runs pretty quickly. Any Idea has to why this is and how to get around the problem
edit
...
1
vote
1answer
195 views
Microsoft Access 2010 Relative Addressing Problems
After learning that MS Access only allows absolute addressing for its linking of tables and that the only workaround for this problem was throught the use of VBA code I started coding up a way for it ...
2
votes
2answers
2k views
How to insert ADO Recordset into MS Access Table
PROBLEM
I want to insert the current recordset row into a MS Access table. I am currently getting this error
Syntax error (missing operator) in query expression 'rs[columnname]'
CODE
Here is my ...
0
votes
1answer
427 views
Call a sub from a function in Access 2010
My MS Access application has a subroutine which fires after I update one control on a form.
Public Sub cboCrew_AfterUpdate()
...do some work...
End Sub
I would like to call this same sub from a ...





