Search Results

0
votes

Openform action was canceled in MS-Access VBA code

I don't know if this qualifies as an answer, but the code in that OnOpen event is dependent on a lot of outside functions. Specifically, the code is assigning value lists for the RowSources of a bu …
1
vote

Inspect Call Stack in VBA

There is no programmatic way in VBA to view the call stack that I know of. The usual solution to this problem is to use some structure to track calling of functions, but it always seems like a klud …
4
votes

How to use VBA to automate several Office applications?

To get started from Access, add a reference to the Excel object library. Then use the object browser to familiarize yourself with how the Excel object hierarchy looks from within Access. It is goin …
1
vote

How to be productive in Access VBA + SQL development?

One thing that just futzing around in Access won't teach you is how to create and use standalone class modules. These have some aspects of object orientation, but not a whole lot, but they can be e …
1
vote

Access 2007 Emtpy Query Quirk

I haven't worked with Access 2007's split forms, but usually in Access the empty recordset and blank controls means you have Allow Additions turned off. If it's ON, then a blank empty record will b …
1
vote

Input Mask without Year for date

I'd suggest that you probably shouldn't use a date mask like this with data stored in a date field. If you input like "06/13" that will be stored as 06/13/2009 today and as 6/13/2010 a year …
3
votes

Update calling all rows if clause in vba

Your question includes some very confused code. You define this recordset: Set rst = db.OpenRecordset("SELECT * FROM tblECodes") and then walk through it …
4
votes

Using VBA to export all MS Access SQL queries to text files

This should get you started: Dim db As DAO.Database Dim qdf As DAO.QueryDef Set db = CurrentDB() For Each qdf In db.QueryDef Debug.Print qdf.SQL Next qdf Set qdf = …
1
vote

Compiling an Access 2007 accdb into accde

For future coding, you should make sure you follow good coding practices: in VBE options, turn off COMPILE ON DEMAND and make sure REQUIRE VARIABLE DECLARATION is turned ON (this w …
1
vote

Catching event when a link is clicked in a Textbox displaying richtext

I don't have A2007 to test this, but if clicking the link sets the cursor position, you could check the rich text control's .SelStart property (while it has the focus), but I don't know what event …
1
vote

VBA - Accessing a collection of values

Another option is to write a function that concatenates the PKs of the recordset that the subform displays. Say your main form is Company and your subform lists Employees. You'd have a LinkMasterFi …
0
votes

Limit number of selections in a MultiSelect ListBox in Access?

I would suggest that a much more manageable, user-friendly and understandable UI for this would be the paired listbox approach, with ADD> and button after the user has reached the limit. You don't …
4
votes

Access sometimes jumps to existing record on save new record - Access2k FE/SQL2005 BE

I'm wondering about the scenario where you are using a form to add records that has any other records for the user to jump to. That is, I don't believe in using the same form to edit record …
0
votes

How to access the label of a control in code

@Astander has provided the correct answer, but keep in mind that not all controls have the same kind of Controls collections. TextBoxes, ComboBoxes, ListBoxes, CheckBoxes have a maximum of …
2
votes

Copy data from lookup column with multiple values to new record Access 2007

I would recommend against using multivalue fields for precisely the reason you're running into, because it's extremely complex to refer to the data stored in this simple-to-use UI element (and it's …

1 2 next
15 30 50 per page