-
WSmcneilkm
AskWoody LoungerThank You Hans
For now hold shift key when opening. The form called “frm_Report_Criteria” opens the parameters for the report “rpt_Op_Log_2”. If you select 11/21/2009, 400, 401, and 503843 in the drop downs respectively. This should find a record meeting that criteria in the “tbl_Inputs_Outputs” table. In the On Print event of that report you will find the dsum calc’s.
Thank you again,
Kevin -
WSmcneilkm
AskWoody LoungerI think all that was wrong was that you left out the closing ” after the #. When using multiple criteria I prefer to put brackets around each condition.
vInPut430TarsSun = Nz(DSum(“[Input 430 TARs]”, “tbl_Inputs_Outputs”, “([badge number] = ‘” & Forms![frm_Report_Criteria]![vEmployee] & “‘) and ([Activity Date] = #” & vSun & “#)”), 0)
I find it useful to introduce a string variable for the criteria. This helps with the debugging.
Dim strwhere as string
strwhere = “([badge number] = ‘” & Forms![frm_Report_Criteria]![vEmployee] & “‘) and ([Activity Date] = #” & vSun & “#)”
Debug.print strwhere
vInPut430TarsSun = Nz(DSum(“[Input 430 TARs]”, “tbl_Inputs_Outputs”,strwhere), 0)Thank You very much for the input.
I no longer get any syntax errors. However in this case I do not get the right result either. For testing purposes, the table this dsum hits has three records in it. One of them should be found by equation. What seems to be happening is the result is evaluating to Null and therefore converting to zero. When I step through and toggle a breakpoint after the equation, each individual criteria contains the correct result but the the combined criteria is failing. Would you have any thoughts as to why?
-
WSmcneilkm
AskWoody LoungerList boxes in Microsoft Access do *not* have a TextAlign property. They are left-aligned by default.
You’d need Windows API functions to change that; Stephen Lebans has a sample database with the necessary code: JustiCombo.
Thanks Hans,
Its probably easier to use a continuous subform for now. I appreciate your help.
-
WSmcneilkm
AskWoody LoungerHANS,
Sorry, I did a search in the ACCESS topic but it must have brought up the Excel. This is an Access question. My bad. Still possible?
-
WSmcneilkm
AskWoody LoungerHans,
I can’t be in the same place you are unless it is a difference in versions. I am using Office 2003 SP 3. I can see everything else you are showing in your screen shot except textalign. -
WSmcneilkm
AskWoody LoungerIn the Visual Basic Editor, open the userform.
Click on the list box to select it.
In the Properties pane, set the TextAlign property to 3 – fmTextAlignRight.My properties for that list box do not show a text align property
-
WSmcneilkm
AskWoody LoungerIs it also possible to right justify data in a list box? I have a query populating a list box with one field shoing standard numbers. (i.e. 123,456,789 with no decimals). However it is left justified and the numbers do not lign up if they are different lengths. Can that field be formatted to display as right justified?
-
WSmcneilkm
AskWoody LoungerIt is hard to read, but I think you have a problem with apostrophes in the WHERE portion. It should be:
, “[PIIN_CODE] = ‘” & Forms![supmod -> Mod]![PIIN_CODE] & “‘ And [CLIN] = ‘” & Me![CLIN] & “‘”)
or this:
, “[PIIN_CODE] = ” & chr(34) & Forms![supmod -> Mod]![PIIN_CODE] & chr(34) & ” And [CLIN] = ” & chr(34) & Me![CLIN] & chr(34))
(note: chr(34) is a double-quote.
Thank you,
That worked perfectly. Looks like I had a few too many quotes.
-
WSmcneilkm
AskWoody Loungerperfect, up and running, thanks
-
WSmcneilkm
AskWoody LoungerSorry Hans,
Right after I posted I realized the problem is in the loop, I think. I think I am just setting the vFileCOntents to the last section of the .txt file. I need to combine all into one long string. I think.
-
WSmcneilkm
AskWoody LoungerHans,
Thanks, I looked into all that you have stated. I managed to get the following code to work…DoCmd.TransferText acExportMerge, , “tblEmailChangeListTable”, “C:Documents and Settingsmcneilkm.GROTONMy DocumentsEBPricingFilesUploaded.txt …
I combine it with the following …
Dim vFileContents As String
Import Text File to get File Name
Open “C:Documents and Settingsmcneilkm.GROTONMy DocumentsEBPricingFilesUploaded.txt” For Input As #1
Do While Not EOF(1)
Input #1, vFileContents
Loop
Close #1DoCmd.SendObject , , , “LarsonBC@supship.navy.mil;mcneilKM@supship.navy.mil”, , , “Pricing and Technical Report Data has been imported to the Pricing Program”, “The Following Change Data has been added to the Pricing Program. ” & Chr(10) & Chr(13) & Chr(10) & Chr(13) & vFileContents & Chr(10) & Chr(13) & Chr(10) & Chr(13) & “This latest Data from EB is through ” & Date & ” ” & Time & “.” & Chr(10) & Chr(13) & Chr(10) & Chr(13) & “If you have any problems please repond to mcneilkm@supship.navy.mil or LarsonBC@supship.navy.mil.”, False …
The only problem I seem to be encountering is that there are three or four lines in the .txt file and only the very last section is making it to the email. I can’t seem to collect all of the contents of the .txt file.
Do you have any suggestions?Thanks
Kevin -
WSmcneilkm
AskWoody Loungerthanks Hans, see attached
-
WSmcneilkm
AskWoody LoungerIronically, a vba module opens up (it is a different one every time) and no lines are highlighted.
kevin
-
WSmcneilkm
AskWoody LoungerI got an error which pointed to the “MSBDR9.OLB” when I initially imported the report I started this thread with (it was a copy of a database that was converterted from 97 to 2000 to 2003). The import was not successfull and it automatically created a table for autosave failures with an entry record that said it could not open the report. After posting the issue an deciding to try to import from the 97 database, it seemed to import OK. Then as I was making changes to the report to fit the requirements of the current database, and tried to compile, I got a “Missing Module” error. As soon as I got that error I could no longer compact and repair or finish compiling. If I just import the file from the original database (97) and don’t make any changes to it, I don’t get any errors. Does this help?
-
WSmcneilkm
AskWoody LoungerOK, this is strange to me. When I look in the database that I imported to, there is no “Missing” reference. When I look at the database imported from, there is a “Missing” Reference. I cannot simply uncheck/check because the file doesn’t actually exist on my computer that I am aware of. I tried browsing for it from the reference dialog and cannot find it. I presume this is because it does not come with the office 2003 software.
![]() |
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
-
MS-DEFCON 2: Seven months and counting
by
Susan Bradley
11 minutes ago -
My 3 monitors go black & then the Taskbar is moved to center monitor
by
saturn2233
9 hours, 43 minutes ago -
Apple backports fixes
by
Susan Bradley
14 minutes ago -
Win 11 24H2 will not install
by
Michael1950
9 hours, 56 minutes ago -
Advice to convert MBR to GPT and install Windows 11 Pro on unsupported PC
by
Andy M
9 hours, 27 minutes ago -
Photos from iPhone to Win 10 duplicating/reformatting to .mov
by
J9438
11 hours, 35 minutes ago -
Thunderbird in trouble. Here comes Thundermail
by
Alex5723
9 hours, 44 minutes ago -
Get back ” Open With” in context menus
by
CWBillow
22 hours, 37 minutes ago -
Many AMD Ryzen 9800X3D on ASRock have died
by
Alex5723
1 day, 2 hours ago -
simple general stupid question
by
WSaltamirano
20 hours, 24 minutes ago -
April 2025 Office non-Security updates
by
PKCano
1 day, 13 hours ago -
Microsoft wants to hear from you
by
Will Fastie
13 hours, 31 minutes ago -
Windows 11 Insider Preview Build 22635.5160 (23H2) released to BETA
by
joep517
1 day, 16 hours ago -
Europe Seeks Alternatives to U.S. Cloud Providers
by
Alex5723
1 day, 22 hours ago -
Test post
by
Susan Bradley
2 days ago -
Used Systems to delete Temp files Gone WRONG what does this mean?
by
Deo
2 days, 2 hours ago -
SSD shuts down on its own
by
CWBillow
1 day, 17 hours ago -
OneDrive File Sharing Changes
by
David Clark
2 days, 10 hours ago -
OneDrive File Sharing Changes
by
David Clark
2 days, 12 hours ago -
Win 10 Pro 22H2 to Win 11 Pro 23H2 Conversion Guide
by
doneager
1 day, 12 hours ago -
Today is world backup day
by
Alex5723
2 days, 4 hours ago -
Windows .exe on Mint
by
Slowpoke47
9 hours, 10 minutes ago -
Reviewing your licensing options
by
Susan Bradley
10 hours, 4 minutes ago -
Apple has been analyzing your photos since September 2024
by
B. Livingston
1 day, 9 hours ago -
What Windows 11 24H2 offers beyond bugs
by
Lance Whitney
1 day, 5 hours ago -
Making sense of Settings in Windows 11
by
Simon Bisson
1 day, 6 hours ago -
Windows 11 pro fails to log in after upgrading Win 10 pro to Win 11 pro 24h2
by
ben_sitaud
2 days, 10 hours ago -
23H2 / 24H2 / Local v. Microsoft Account.
by
CWBillow
2 days, 8 hours ago -
YouTube Ad Blocker Blocker
by
bbearren
2 days, 8 hours ago -
Obscure historical facts about Windows
by
Cybertooth
2 days, 9 hours ago
Recent blog posts
- MS-DEFCON 2: Seven months and counting
- Apple backports fixes
- April 2025 Office non-Security updates
- Microsoft wants to hear from you
- Reviewing your licensing options
- Apple has been analyzing your photos since September 2024
- What Windows 11 24H2 offers beyond bugs
- Making sense of Settings in Windows 11
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.