-
WSLeesha
AskWoody LoungerHi Pat,
I’m not sure where you want me to try to (!).
Yes, Member/BusinessName is the name of the control on the frmMemberStatusAdd.
Thanks,
Leesha -
WSLeesha
AskWoody LoungerUhm, I “think” that is where the problem is arising as the code gets past the point of opening the form but seems to blow up on the form load code. To answer your questions:
Control source = member/businessname
Number of columns = 4
Column widths = 0″;1″;1;1″
Bound column = 1Thanks so much!
Alicia
-
WSLeesha
AskWoody LoungerHi Hans,
No the record for the member does not already exist. The form opens with the pupose of adding a new membership record for the name chosen from the demographics table/form.
I entered this code behind the cmd button that is used to open the form:
DoCmd.OpenForm “frmMemberStatusAdd”, , , , acFormAdd, , Me.[LASTNAME/BUSINESS]
I entered the following code on the frmMemberStatusAdd:
Me.[Member/BusinessName].DefaultValue = Chr(34) & Me.OpenArgs & Chr(34)
When the run the cmd. button on the demographics form to open frmMemberStatusAdd I get the following error:
Object doesn’t support this property or method and when I debug it it is the code one the form load property that is in yellow.
Alicia
-
WSLeesha
AskWoody LoungerHi Charlotte,
When I ran the code I got an error message that says the openform action was canceled.
This is the code I used –
DoCmd.OpenForm “frmMemberStatusAdd”, , , “[Member/BusinessName] = ‘” & Me.[LastName/Business] & “‘”
I took out the spaces as you mentioned.
Thanks for the help!
Leesha
-
WSLeesha
AskWoody LoungerHi Charlotte and Wendell
Well it worked and I’m thrilled! Thanks for the info!!
Leesha
-
WSLeesha
AskWoody LoungerThank you!!! That’s what happens when one is self taught!! You don’t necessarily know all the cardinal rules. And yes, the code is is behind a form :-)!
I’ll give it a shot.
Leesha
-
WSLeesha
AskWoody LoungerHi Wendell,
I have tried various things. These are the ones that gives me the read-only error I mentioned:
[NAME] = [FULL NAME LNF]
Me.NAME = Me.FULL_NAME_LNFThis one gives me a message stating “Invalid qualifier”
Me.NAME.Value = Me.FULL_NAME_LNF.Value
NAME is yellowed out in the debug screen. NAME is the name given to the unbound text box.Thanks for you help,
Leesha -
WSLeesha
AskWoody LoungerThanks Hans. I’ll start reading!!!
Leesha
-
WSLeesha
AskWoody LoungerMy question is how do I go about setting it up. I assumed it would work if it was listed as an alternative in Access.
Thank you,
Leesha -
WSLeesha
AskWoody LoungerHans, Pat & Wendell…..THANK YOU!! Sure enough the date input boxes weren’t formatted, and once I set the date to short date the query ran. It just about killed me to be at a nursing related training all day and having to wait to get home to see what new advice there would be. I’m on my face and will TRY to leave this project alone till tomorrow night. Unfortunately, my friend needs it back with the changes ASAP. Sorry Hans if I frustrated you. I appreciate the help and the patience. In the process I learned a great deal and from the number of people who read these posts, hopefully so did a lot of other folks.
Leesha
-
WSLeesha
AskWoody LoungerMorning Pat,
In answer to your question re the joins, when I run the query without “startdate” and “enddate” defined I get all the records in the database. So, I’m confident that the join works. It’s only when I enter in the nonbound input boxes ‘startdate” and “enddate” on the form frmAccountsReceivable, and then enter them into the query that I loose the data.
Off to a three day nsg meeting. Ugh. Won’t be home till this evening to get this right. Probably a good thing for my eyes to not stare at a computer screen for a bit, but I’m itching to get this fixed.
Have a good one,
Leesha -
WSLeesha
AskWoody Lounger<<Can you just make sure there are dates in the date range?
Yep, I'm sure.
<<What is your date range?
I've tried a variety of ranges. IE 11/1/02 – 11/31/02; 1/1/03-1/31/03 and so on. For Novemeber alone there are roughly 285 records.
<>Let’s just establish if there are any records first before we go and change the joins.
Hitting the sack. Will check in the am to see if you have any ideas. I’m blind from looking at this computer screen working on this database. Thanks so much for the help.
Leesha
-
WSLeesha
AskWoody LoungerFirst there is no such thing as a dumb question! Second, I appreciate your bearing with me!
The dates in tblTimeSheet start with 11/5/02 and go through the present. There are 1400+ records. I’ve been entering the a range of dates that are 30 days in size so as to capture data. I’m sure that there are dates for the time frame I’m trying to look at. I’ve even tried a variety of dates and still not data. We’ve made progress in that at least there are no errors! As far as right and left joins, this is really outta my league. What would I do?
Thanks,
Leesha -
WSLeesha
AskWoody LoungerNo errors but no data either.
PARAMETERS [Forms]![frmAccountsReceivable]![Startdate] DateTime, [Forms]![frmAccountsReceivable]![Enddate] DateTime;
SELECT tblTimeSheet.AutoNumber, tblEmployee.[Employee Name], tblTimeSheet.Date, tblClientDemographics.[Client Name], tblAccountDemographics.[Account Name]
FROM tblEmployee INNER JOIN (tblClientDemographics INNER JOIN (tblAccountDemographics INNER JOIN tblTimeSheet ON tblAccountDemographics.ID=tblTimeSheet.AccountId) ON tblClientDemographics.ID=tblTimeSheet.ClientID) ON tblEmployee.[Auto Number]=tblTimeSheet.EmployeeID
WHERE (((tblTimeSheet.Date) Between [Forms]![frmAccountsReceivable]![Startdate] And [Forms]![frmAccountsReceivable]![Enddate]));Leesha
-
WSLeesha
AskWoody LoungerI just replaced frmTimesheet with frmAccountsReceivable and no longer get errors, however nothing comes up in the query. Here is the code:
PARAMETERS [Forms]![frmAccountsReceivable]![Startdate] DateTime, [Forms]![frmAccountsReceivable]![Enddate] DateTime;
SELECT tblTimeSheet.AutoNumber, tblEmployee.[Employee Name], tblTimeSheet.Date, tblClientDemographics.[Client Name], tblAccountDemographics.[Account Name]
FROM tblEmployee INNER JOIN (tblClientDemographics INNER JOIN (tblAccountDemographics INNER JOIN tblTimeSheet ON tblAccountDemographics.ID = tblTimeSheet.AccountId) ON tblClientDemographics.ID = tblTimeSheet.ClientID) ON tblEmployee.[Auto Number] = tblTimeSheet.EmployeeID
WHERE (((tblTimeSheet.Date)=[Forms]![frmAccountsReceivable]![Startdate] And (tblTimeSheet.Date)=[Forms]![frmAccountsReceivable]![Enddate]));Thanks,
Leesha
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Where’s the cache today?
by
Up2you2
31 minutes ago -
Ascension says recent data breach affects over 430,000 patients
by
Nibbled To Death By Ducks
2 hours, 10 minutes ago -
Nintendo Switch 2 has a remote killing switch
by
Alex5723
2 hours, 31 minutes ago -
Blocking Search (on task bar) from going to web
by
HenryW
7 hours, 12 minutes ago -
Windows 10: Microsoft 365 Apps will be supported up to Oct. 10 2028
by
Alex5723
12 hours, 19 minutes ago -
Add or Remove “Ask Copilot” Context Menu in Windows 11 and 10
by
Alex5723
12 hours, 25 minutes ago -
regarding april update and may update
by
heybengbeng
13 hours, 55 minutes ago -
MS Passkey
by
pmruzicka
1 hour, 43 minutes ago -
Can’t make Opera my default browser
by
bmeacham
21 hours, 35 minutes ago -
*Some settings are managed by your organization
by
rlowe44
8 hours, 18 minutes ago -
Formatting of “Forward”ed e-mails
by
Scott Mills
20 hours, 29 minutes ago -
SmartSwitch PC Updates will only be supported through the MS Store Going Forward
by
PL1
1 day, 16 hours ago -
CISA warns of hackers targeting critical oil infrastructure
by
Nibbled To Death By Ducks
2 days, 1 hour ago -
AI slop
by
Susan Bradley
15 hours, 17 minutes ago -
Chrome : Using AI with Enhanced Protection mode
by
Alex5723
2 days, 2 hours ago -
Two blank icons
by
CR2
14 hours, 12 minutes ago -
Documents, Pictures, Desktop on OneDrive in Windows 11
by
ThePhoenix
2 days, 11 hours ago -
End of 10
by
Alex5723
2 days, 14 hours ago -
Single account cannot access printer’s automatic duplex functionality
by
Bruce
1 day, 11 hours ago -
test post
by
gtd12345
2 days, 20 hours ago -
Privacy and the Real ID
by
Susan Bradley
2 days, 10 hours ago -
MS-DEFCON 2: Deferring that upgrade
by
Susan Bradley
12 hours, 31 minutes ago -
Cant log on to oldergeeks.Com
by
WSJonharnew
3 days ago -
Upgrading from Win 10
by
WSjcgc50
1 day, 12 hours ago -
USB webcam / microphone missing after KB5050009 update
by
WSlloydkuhnle
1 day, 15 hours ago -
TeleMessage, a modified Signal clone used by US government has been hacked
by
Alex5723
3 days, 16 hours ago -
The story of Windows Longhorn
by
Cybertooth
3 days, 3 hours ago -
Red x next to folder on OneDrive iPadOS
by
dmt_3904
3 days, 18 hours ago -
Are manuals extinct?
by
Susan Bradley
18 hours, 24 minutes ago -
Canonical ditching Sudo for Rust Sudo -rs starting with Ubuntu
by
Alex5723
4 days, 3 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.