VBA in Microsoft Access
0
votes
0answers
3 views
Setting range properly in DoCmd.TransferSpreadSheet (VBA Excel/Access)?
For Each Page In Worksheets
PageName = Split(Page.Name, " ")
If UBound(PageName) > 0 Then
Worksheets(Page.Name).Activate
LRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row
...
0
votes
0answers
5 views
Using recordset referece i,j as a matrix in access vba
I would like to reference my recordset as a matrix with the i,j indexex, where i is the line and j is the column. This is my code:
Dim db As Database
Dim tb As Recordset
Set db = CurrentDb()
Set tb ...
2
votes
3answers
24 views
How can I find whether VBA code is called in an Access database?
I'm working with a legacy Access database that has a front-end and a good amount of VBA code.
The goal is to either replace the tool with a purchased product or a web application (one day), and while ...
0
votes
2answers
7 views
How to AutoSearch from any part of a string and not from the beginning when user starts typing in a combobox?
How can I autosearch and find matches from any part of a string rather than from the beginning when user starts typing in a word in the combobox?
For eg. If user starts typing in "001007228" it ...
0
votes
0answers
8 views
MS Access 2007 - Page no longer showing dialog forms
I have taken over an old project for sign-ups. And part of the code involves opening a form via dialog. Now when i try to click a button event with the openform call in it, the page either opens off ...
2
votes
1answer
22 views
Flag Records From A Filtered Form
I have my Form set to filter to make sure that only clients who need to be mailed are loaded into this form.
[Complete]=No And [Call 1]="Wrong Number" Or [Complete]=No And [Call 2]="Wrong Number" ...
0
votes
0answers
13 views
Graphs will not update in Report (Access 2007)
I am encountering a problem with getting my graphs to update.
I currently have a report that generates information based upon a query. The report is broken down into 3 subgroups (Temperature --> ...
0
votes
0answers
10 views
form tabcontrol subform runtime error 468: Object doesn't support this property or method
I am developing a search form / report builder in Access 2007 called frmSearch. The existing search form works well, showing its results in a subform of a tabcontrol. Then I can click a button to show ...
1
vote
0answers
11 views
Updating specifics rows in a RecordSource of a Sub-Form by using textbox
I am on Office Access 2007, i've been working on a Race Timer for school during vacations.
I already know that Access is not the best for this sort of software but the previous developer been using ...
0
votes
1answer
11 views
Access VBA to update Access table from SQL Server table source
I have created the code below to test whether I can run a query and retrieve a data from an SQL server table. And so far I can return the result using a MessageBox, but somehow I just don't know how ...
-3
votes
0answers
28 views
Need ur help to convert Access & VBA code to SQLServer 2008 & T-SQL
Access Code: Kindly see below
SELECT EDW_SC.SHIP_YEAR_WEEK, Round(HybFillRate(0.9,"EDW_SC","sOCT","[Ship_From_Plant_Code] In ...
1
vote
0answers
48 views
getting the id number from another field
Im new to Access and need a little help
I have a form with a row view in the subform (all fields are not enabled), I want to make the line clickable e.g
Private Sub ID_Click()
recordID = Me.ID
...
1
vote
1answer
20 views
access passing values between non related forms
I have a main form, 1, a subform inside it, 2, and a popup form, 3.
form 2 and form 3 are datasheets. A button in form 1 opens popup form 3.
Right now, in form 2, I capture the currently selected ...
0
votes
2answers
25 views
MS Access Reference to Recordset.Recordcount
I need to find out if there is a record in my
Main forms [frmShiftDay]
Subform [frmShiftMachinesSubform]
SubSubform [frmMachineOutputSubform]
and I can’t get it to reference at all. Thanks!
...
0
votes
1answer
28 views
How to limit the size of Files of type dropdown in Application.FileDialog()?
I have the following code, but when it comes to selecting the file type (which should only be limited to PDF) the dropdown box is more than one entry big and so looks like this:
.
How can I alter ...
1
vote
1answer
29 views
VBA to insert embeded picture excel
I have seen lots of posts about us xlApp.activesheet.Pictures.Insert(strImagePath) to insert pictures into a spreadsheet with VBA, which works great. The only problem is it inserts it as a linked ...
1
vote
1answer
20 views
copying a form textfield value into a report textfield
I have an access form in wich a user can enter project details (like project number, name and ordering party etc etc)
I also have a few reports with a header. I would like the values that are ...
0
votes
3answers
55 views
Excel-VBA code that moves Excel sheets to Microsoft access?
I was wondering if it was possible to move data from an excel sheet and store it in a Microsoft Access datbase. I have a lot of sheets of data with a similar format, and I would like a table for each ...
0
votes
0answers
14 views
Use VBA to post on Facebook wall
I've spent hours trying to find an example of this but could not find one anywhere (well that made sense to me anyway as I have only ever used VBA)
The objective is to post on to FB wall from ...
0
votes
0answers
24 views
VBA recognizing new table row?
I have 4 arrays and I'm trying to put all those variables into one array. Once that's done I'm just going to insert the data into the table 1 by 1 by with s variable. Below is where the one array ...
0
votes
1answer
19 views
VBA automatically changes upper to lower case letters
So my problem is that I want to type for example Forms!Judge![name].SetFocus but instead VBA automatically changes it to Forms!judge![name].SetFocus so the name of the form doesn't match. How do I ...
2
votes
2answers
23 views
Converting measurements in a form to update a table
I am using Access 2010 to create a database of fish caught by local fishermen. I have a table with all the information about each fish caught (location, day, length, etc) and a form to add new ...
1
vote
1answer
28 views
Attempting to update combo box updates table instead?
I am a bit of an Access novice, but I'm slowly catching on. I am rebuilding a database at work, and I'm struggling with an odd issue in regards to updating combo boxes.
What I am trying to do, is ...
1
vote
1answer
16 views
Adding New ADODB.Recordset instantly causes Crash
I'm fairly new to Access, but I have never had anything like this happen to me.
I have an Access DB that I am creating, and I have been using recordsets to grab values for variables. I have several ...
0
votes
1answer
31 views
MS Access List Box multiple value selection
I have created form based on query output. I had used 3 combobox and one list box. 1st combo box gives me list of Dept, selection of dept on 2nd gives me location of that dept (distinct), the 3rd ...
1
vote
3answers
30 views
Access report, populate label with results of query
I have, what I think, is a pretty basic Access file, with a report. The report is based off a query. The query is:
SELECT * FROM dbo_NewPatient WHERE id=[Patient to view];
This works good, and ...
1
vote
1answer
19 views
MS Access - What is the use of “!” , exclamation symbol
I am new to MS Acces and would like to know what does the symbo "!" mean.
For e.g.
1) What does "Tbl!Field" means and how does it differ from "Field" where "Tbl" is a atable name and "Field" is a ...
1
vote
3answers
20 views
where condition with data in access
I want to use date in a where clause. I am building where clause such as this:
WhereCondition = WhereCondition + "DOB =" + DOB.value
DoCmd.OpenForm "InputForm", , , WhereCondition
DOB is a textbox ...
0
votes
1answer
12 views
Having to call SetFocus twice in MS Access 2010
I found that for a couple of hours this code worked:
If KeyCode = 37 Then
Me.Text12.SetFocus
End If
Then it mysteriously stopped working. I thought it might have had something to do with ...
-2
votes
0answers
28 views
Hang / Unresponsive UI : VBA
Is there a way to avoid hanging and unresponsiveness of windows while running inside vba code/macro on large data. At times I can't even move window from one position to another.
What is role of ...
0
votes
0answers
27 views
Show/hide watermark on a MS-Access report
I am trying to hide the watermark on a report based on a condition. It does not seem to have the slightest effect, even when the code is executed (in debug mode). Any idea ?
Private Sub ...
0
votes
1answer
29 views
How to retrieve data from multiple selected rows in a table?
I am using MS Access 2007. I have a form that has inserted a subform. The subform appears essentially as a grid of rows and columns of data, with each row representing a record in a table.
I have a ...
0
votes
2answers
21 views
Refresh form from subform event handler
I seem to be having a problem that looks an awful lot like it could be a bug in MS Access. I have a form which enumerates all the rows in a table and lets you edit them in a subform. Upon clicking ...
2
votes
1answer
26 views
Access 2003 - VBA - Joining on two types (string = date)
Background: Im busy with a research, in which I receive data stored in a oracle database. I myself use an Access database to store the data from the oracle database (and as well data from other ...
0
votes
1answer
15 views
Equivalent cURL in VBA?
I have an API for my application which allows me to make cURL requests to it.
I need to implement this into VBA so my desktop database can fire CURL requests to my web app.
curl -i --user ...
0
votes
2answers
44 views
Vba Access error: Method or data member not found
I have been trying to open a contracts form from contracts_all page. I want to open all the records on the contracts_all form but only show the specific one clicked on. To show this one particular ...
1
vote
1answer
39 views
vba code not doing INSERT into database
I am very new to access. I was told that the way to do a database insert in access is with the CurrentDb object (as long as the table is in the same database, and it is in my case.) I made this code, ...
0
votes
3answers
36 views
Open a form using ID from a different form in Access 2010 using vba
I am trying to open a form from a button in another form. The form with the button,contracts_all form, has a field ID and I want to open up the form that contains the information with that ID. This ...
1
vote
1answer
24 views
Why clicking in a report on a textbox garbages results?
Can anyone help, I don't know what's happening.
For the table that looks like this:
part value
BAC 102
BS1 275
MAV 425
BAC 519
BSF 653
BAC 1072
The result would be:
...
0
votes
1answer
11 views
Ms Access 2003 VBA. Random order of table recordset?
I open a recordset (A) and use record value to process some data, and write a new recordset (B), with record value from recordset (A) and data value returned from processing.
E.g
RS A RS B
...
0
votes
2answers
23 views
Issue using VB in access to open up form with OpenForm
I have a Inventory form. I want to create an Update button which, when clicked, will open up a new form frm_add-remove, which will contain only the selected inventory item and will allow you to edit ...
0
votes
1answer
21 views
Conditional Saved Import in Access/VBA
I'm fairly new to this stuff, so hopefully someone our there can help me out.
The setup: I've got an Access 2007 database that imports data, then performs a set of queries and exports the results on ...
0
votes
1answer
34 views
What are all the fields available in a Notes document in VBA
I have written VBA code to send an email from a group mailbox. I set the principal field to say where the mail comes from. It almost works correctly, putting the message in the sent items of the ...
-4
votes
0answers
30 views
Filter a large csv file using VBA code [closed]
I have a CSV file dailylog.csv with 4 million records.
The format is:
name, value, acccounttype, master_account
The master_account field has around 200,000 unique values.
I have some selected ...
-2
votes
0answers
33 views
Import pictures into an Access 2010 database [closed]
i am currently working on data base for student in which we have main Table name "Master Data" having detail of student along with their snaps (attachment), we have round about 1000 students data and ...
1
vote
3answers
46 views
IN Function for Access VBA
Is there a function in Access VBA that works like the IN function in SQL?
I'm looking for something like:
if StringValue IN(strA, strB, strC) Then
0
votes
1answer
28 views
VBA Access Page Break
I'm fairly new to VBA and I'm trying to bring data from access form to a word document using bookmarks. The problem I'm having is that I'm finding it very hard to create a new in MS word with the next ...
1
vote
1answer
39 views
How do you programmatically update a linked table in Access that will refresh data types too?
I'm working with a legacy Microsoft Access database that we've recently updated to use linked tables/SQL Server backend.
I'm making some changes to the structure of the data and would like to ...
0
votes
1answer
32 views
Searching Tables from VBA
As much as I hate asking without having a good start I am stuck on something very simple I think.
I have a table with only 3 fields. I want to be able to search them using a InputBox which I call ...
0
votes
1answer
8 views
Setting parent record field value based on Maximum Child record field value
I am working with MS Access 2007.
I have a table called [tblDonors] linked to child records in a table called [tblReceipts].
I am trying to set the value of a new Boolean(y/n) field ...



