-
WSJamesB
AskWoody LoungerTake a look at this document, although it is for Outlook Express, it walks you through the steps to verify your hyperlinks are setup correctly, and that IE is your default browser.
OLEXP: Internet Shortcuts in Outlook Express Do Not Start Web Browser
-
WSJamesB
AskWoody LoungerMartin,
The only time I have seen that get checked, is when a user has checked it; but although I’m not sure how, I would not doubt that something else could have set it, such as a template. (There is an Application.IgnoreRemoteRequests property in VBA that could have done it). -
WSJamesB
AskWoody LoungerJols,
Are you using the NZ function in the the query that is the source for the form? My best guess, is you a getting Null values instead of 0 values, if nulls are converted to 0 (with NZ), they should show as $0.00 -
WSJamesB
AskWoody LoungerEven though you have tried the utility, you might want to take a look at OFF2000: Internal Error 2343 During Setup
Specifically, it is unclear if the utility fixes the notes.ini part, so you may want to try that manually. Also, you can walk through the other steps, to see if the utility did them correctly.
-
WSJamesB
AskWoody LoungerIn Excel, look at Tools-Options-General, uncheck “Ignore Other Applications”
-
WSJamesB
AskWoody LoungerUse Setwarnings:
DoCmd.SetWarnings False
DoCmd.RunSQL
DoCmd.SetWarnings TrueNote: YOU MUST turn the warnings back on, or a lot of problems may result. I strongly recommend turning them off perform the action, then turn them on. Also, I would not group actions in between, perform one action per off / on. ( A bit more overhead, but less chance of missing important errors)
-
WSJamesB
AskWoody LoungerFrom your description, it sounds like you are getting the values fine from the subform. My concern/observation is your decision to store those values in the tblMaster. By doing that, you run into a situation where problems could arise, if they are ever updated improperly. The rule of thumb with tables is to usually store the raw values for calculations in the tables, but to perform the calculations on the fly, when needed. This ensures that you always have the most current data. It also makes your tables much more portable, and may eliminate headaches down the road. For example, what would happen if you decided to make a quick entry screen, where just the subform showed, so you could update a group of payments quickly. The way you have it set up, the tblMaster would not be updated with the calculations, unless you created something to do it, and the potential for inaccurate data is high.
So, if it was me, I would leave the fields Amount Paid and Balance Due on the main form, but do not have them update the tblMaster (in other words, delete them from tblMaster, and leave the Main Form formulas there, but do not set them to update the table). Then, in any place you need the values calculated, create a formula or query (depending on the scenario).Let me know if I made this more confusing than it needs to be.
-
WSJamesB
AskWoody Loungerok, I dated myself a bit
NZ is available in 97 AND 2000, sorry for the confusion.
-
WSJamesB
AskWoody LoungerJols,
Someone may jump in with a better solution, but I have some ideas for you.First, an observation. In tblMaster, you have Amount Paid, and Balance Due, this seems confusing, since they appear to be calculated fields based on tblDetails, is that correct? If that is the case, it would seem those fields are better calculated by doing a calculation on tblDetails, and not storing the value in tblMaster, otherwise, it appears you would need to update two fields, whenever a payment is made. For the calculated values on the form you have setup, you can use a dlookup, or the query below, when done.
As for the query issue, I would recommend a subquery be used. It seems the main issue is that the way you have it setup, no records are returned when there is no payment. You need to retrieve those records also. I would do this as follows: (Please let me know if you need more detail)
Create a query, similar to the one you posted, setting the link to retrieve all records from tblMaster, and those that are equal from tblDetails(joined on Docket #). Only add the fields Docket # from tblMaster, and Payment from tblDetails (set total to Sum). This will return all records, including records for which no payment is recorded.
The SQL for the subquery (leaving out extraneous fields, that you may want to add):
Name: qryPaymentsSELECT tblMaster.[Docket #], Sum(tblDetails.Payment) AS SumOfPayment
FROM tblMaster LEFT JOIN tblDetails ON tblMaster.[Docket #] = tblDetails.[Docket #]
GROUP BY tblMaster.[Docket #];The main query (note, if you change the subquery name, change it in here)
Name: qryRestitutionSELECT tblMaster.[Docket #], tblMaster.[Date Due], nz([SumOfPayment],0) AS Payment
FROM tblMaster INNER JOIN qryPayments ON tblMaster.[Docket #] = qryPayments.[Docket #]
WHERE (((tblMaster.[Date Due])<Date()) AND ((nz([SumOfPayment],0))<[Amount Ordered]));Note: the NZ function is only available in Access 2000, if you are not using 2000, I can send you code to write it.
Let me know if this is too confusing.
-
WSJamesB
AskWoody Loungerkris,
Any chance it is Error 50003 and not 5003, I’ve seen the 50003 before, but not of my resources shows any 5003 with VB. If it is 50003, it is usually related to outdated or incompatible OCX’s or DLL’s. If you have more info about how your app works, we might be able to narrow it down. -
WSJamesB
AskWoody LoungerThis outlines the process pretty well, please ask if you have any questions.
(Note, after you export, move the exported files to the new computer, then follow the import part). -
WSJamesB
AskWoody LoungerGot this from a board, some time ago….
=A1-DATE(YEAR(A1),1,0), where A1 = the date you are checking.
-
WSJamesB
AskWoody LoungerI have seen the Standby option disappear before, if that is the case, see the following:
-
WSJamesB
AskWoody LoungerGeoff,
If you open the spelling options page, the Recheck document button should reset it.
If you are looking to add this to your macro, look at the properties
SpellingChecked and ResetIgnoreAllFrom Help:
Application.ResetIgnoreAll
ActiveDocument.SpellingChecked = False
ActiveDocument.CheckSpelling -
WSJamesB
AskWoody LoungerIn addition to the previously mentioned XLStart folder, there is also an alternate one that can be set from Tools-Options-General Tab, you might want to check there also.
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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
-
KB5058379 / KB 5061768 Failures
by
crown
2 minutes ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
5 minutes ago -
At last – installation of 24H2
by
Botswana12
1 hour, 27 minutes ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
32 seconds ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
11 hours, 55 minutes ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
5 hours, 14 minutes ago -
Limited account permission error related to Windows Update
by
gtd12345
1 day, 1 hour ago -
Another test post
by
gtd12345
1 day, 1 hour ago -
Connect to someone else computer
by
wadeer
19 hours, 54 minutes ago -
Limit on User names?
by
CWBillow
23 hours, 12 minutes ago -
Choose the right apps for traveling
by
Peter Deegan
12 hours, 55 minutes ago -
BitLocker rears its head
by
Susan Bradley
21 hours, 29 minutes ago -
Who are you? (2025 edition)
by
Will Fastie
39 minutes ago -
AskWoody at the computer museum, round two
by
Will Fastie
15 hours, 17 minutes ago -
A smarter, simpler Firefox address bar
by
Alex5723
1 day, 11 hours ago -
Woody
by
Scott
1 day, 21 hours ago -
24H2 has suppressed my favoured spider
by
Davidhs
20 hours, 34 minutes ago -
GeForce RTX 5060 in certain motherboards could experience blank screens
by
Alex5723
2 days, 11 hours ago -
MS Office 365 Home on MAC
by
MickIver
2 days, 5 hours ago -
Google’s Veo3 video generator. Before you ask: yes, everything is AI here
by
Alex5723
3 days, 1 hour ago -
Flash Drive Eject Error for Still In Use
by
J9438
19 minutes ago -
Windows 11 Insider Preview build 27863 released to Canary
by
joep517
3 days, 20 hours ago -
Windows 11 Insider Preview build 26120.4161 (24H2) released to BETA
by
joep517
3 days, 20 hours ago -
AI model turns to blackmail when engineers try to take it offline
by
Cybertooth
3 days ago -
Migrate off MS365 to Apple Products
by
dmt_3904
3 days ago -
Login screen icon
by
CWBillow
2 days, 15 hours ago -
AI coming to everything
by
Susan Bradley
5 hours, 45 minutes ago -
Mozilla : Pocket shuts down July 8, 2025, Fakespot shuts down on July 1, 2025
by
Alex5723
4 days, 12 hours ago -
No Screen TurnOff???
by
CWBillow
4 days, 12 hours ago -
Identify a dynamic range to then be used in another formula
by
BigDaddy07
4 days, 12 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.