-
WSPatricia W
AskWoody LoungerKen — I think your “EXEC SDUpdate @SID = ” is fine, if SDUpdate is the actual name of your procedure. I have the Chr(34) around the procedure name because it is a variable containing the name of the procedure.
I think if you just skip to your first string variable that you are passing — “txtName” — if you wrap a sinqle quote (chr(39)) around that one and the other text or date variables, that may be all you need.
thx
Pat -
WSPatricia W
AskWoody LoungerThis isn’t the answer to your problem, but noting your EXEC string, I wonder if you need quotes. The following is just a sample of a call I make. I pass a procedure and a starter date into a module, and then in the module, create the connection and a DAO recordset to hold the rows received. I think if you pass string (or date) parameters, quotes are required — I am not sure.
Set PatSet = PatsConnection.Execute(“EXEC ” & Chr$(34) & WhatProc & Chr$(34) & ” ” & Chr$(39) & CDate(WhatStarterDate) & Chr$(39))
Pat
-
WSPatricia W
AskWoody LoungerYeah, this is the null “gotcha,” and believe me, others have ended up in the same boat. My commiseration!
Pat -
WSPatricia W
AskWoody LoungerNot sure I have quite got it, but, couldn’t you just add one field that you populate with a plot counter for each plot for each Landowner, and then when you go to output, use as the column title a concatenation of the field name and the plot counter? Would that work?
Pat
-
WSPatricia W
AskWoody LoungerWell, I think if Han’s method works fine for the first person, it should work for the next — if you do use the running sum over group. I think (maybe I’m not figuring this out correctly) but I think you really must have a “running sum over group,” so it can restart at zero for each client — unless you want to do that all in code. If the “over group” isn’t working, you might want to re-check your sorting?
Ignore this that I wrote earlier , but just leaving it in FYI: How to you make the lines invisible — IOW, since you’ve probably got some code to make the line invisible, can you set a public variable at that time that (preventing it from incrementing further while with the current client is the same) and stores the amount you want to display in the group footer, and and then display it? and, upon the client changing, you set this public variable back to zero?
Pat
-
WSPatricia W
AskWoody LoungerDid you chose to have the field accumulate as a running sum “over group,” or “over all?”
-
WSPatricia W
AskWoody LoungerSo that those of us who don’t open attachments can help, can you paste a simplified version of your query to show what you are trying to do to attain the goal of excluding that line?
thx
Pat -
WSPatricia W
AskWoody LoungerMonica,
I would start by creating a query with the information that you want on the report. In order to join all the tables, you need to identify what information in each table can join the two tables together. Once you get that done, you can use the Report Wizard to create a report — you can play around with the variations.
If you like the form, you can simply highlight it and on the Menubar, chose “File->SaveAs,” and chose, “Report.”
However, I wouldn’t recommend that until you successfully get the data that you want to display, successfully tied together.
There are a lot of local businesses offering 1-day classes for beginner, intermediate & advanced users, and I would strongly recommend that. Not only are you doing yourself a favor, you are doing the economy a favor, if you or your business can afford it.
thx
Pat -
WSPatricia W
AskWoody LoungerCan’t you make the “backcolor” of your header be gray, (click on your header, or, if no open space, your header bar) and then “lasso” all your labels in the header (select all), click on “properties” if you don’t already have that selected, and make the label backgrounds be transparent? Make sure the “forecolor” of the labels is 0, or some darker gray than you use as the header section background.
Pat -
WSPatricia W
AskWoody LoungerSometimes, on a network, I cannot delete an .ldb. It gives me the same error message you get. If I log off & then back on the network I can delete it.
In addition to what Hans said about copying all the items over to a fresh database, don’t forget to ask click the options box and get any import/export file specifications (no longer available in 2007, I guess), relationships, menu bars, etc.
Pat
-
WSPatricia W
AskWoody LoungerGlad you got it to work, Silverback! I think there are some Windows functions where you can determine what settings the user has, environment-wise, but making it work to modify your product, I just think that would be a massive undertaking . I think that the simplest and easiest suggestion (Han’s and mine) is just to expand the text fields as well as you are able, as well as sticking with the most standard fonts. I still operate in “by guess and by golly” mode as far as resolution, fonts, etc. goes. That works for me because I have a fairly limited (internal) environment to distribute my product to.
-
WSPatricia W
AskWoody LoungerYOu might check the “dpi” size. I have two computers, and the same screen resolution, both pointing to the same printer, and yet the fonts display differently on both. I just clicked the “Advanced” tab on my screen propertings “settings” tab, and I don’t know what the heck “DPI” settings are, but on one computer they are “normal,” and on the other they are “large.” MAYBE MORE TO THE POINT — check out the “Appearance” tab in Display properties — on one of my computers, I have checked “large size” for the fonts, on the other, it is normal —
If you have users that play around with their screens the way I do, with a “by guess and by golly,” that might be part of the issue! I woudn’t want to change their settings, though, they might be very happy with the way they were set.
As far a printing, though — I have one user where a label caption displays well, but gets chopped off when printing — which I attribute to the printer, in that case. (The solution is simple in that case, though (stretch out the label). It’s wise to be generous with text widths, if you can be, for various reasons.
Pat
-
WSPatricia W
AskWoody LoungerHi, Hans,
I’ll latch on to this message thread, in case anyone else is searching for answers — and you know, I’ve probably re-learned this a few times (must be all that mercury-laden fish I’ve eaten): my “acformadd” call had started failing. At first, I thought it was corruption, and pulled forms into a new database, etc. etc. Then I went searching, and, triggered by this thead, I went back and looked at the “on open” event of the form. It turned out that I was setting an “orderby” at the top of the module (to solve a different problem … ignore this part). I’m using openargs to determine whether the form is showing all, filtered or new, so I moved the “orderby” part so that “New” will not come across it, and voila, it works. I don’t know why an “orderby” would blow a form opened in data entry mode, but apparently, it does — probably because the default settings for the form are the usual “allow Edits,” etc.
thx
Pat -
WSPatricia W
AskWoody LoungerThank you, Hans! once again, you saved the day. As soon as I realized from the link you inserted that pages() was 0 until after the first pass, then, I was just able to check for “if pages() = 0” and prevent some code I had tussled with for a couple of hours here, to get it to work! I only allowed the “lePage” fake page accumulator to run if pages() was more than 0, and it worked. Wow! thx, Pat
-
WSPatricia W
AskWoody LoungerThanks, Hans for your reply in “this” post : post 668,760. I also saved this in “favorites for a while. IT WORKED!
thx,
Pat
![]() |
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
-
Clock missing above calendar in Windows 10 (Awaiting moderation)
by
WSCape Sand
47 minutes ago -
The time has come for AI-generated art
by
Catherine Barrett
6 hours, 16 minutes ago -
Hackers are using two-factor authentication to infect you
by
B. Livingston
18 minutes ago -
23 and you
by
Max Stul Oppenheimer
6 hours, 18 minutes ago -
April’s deluge of patches
by
Susan Bradley
2 hours, 58 minutes ago -
April’s deluge of patches
by
Susan Bradley
6 hours, 19 minutes ago -
Windows 11 Windows Updater question
by
Tex265
9 minutes ago -
Key, Key, my kingdom for a Key!
by
RetiredGeek
21 hours, 25 minutes ago -
Registry Patches for Windows 10
by
Drcard:))
1 day, 1 hour ago -
Cannot get line length to NOT wrap in Outlining in Word 365
by
CWBillow
8 hours, 30 minutes ago -
DDU (Display Driver Uninstaller) updates
by
Alex5723
19 hours, 18 minutes ago -
Align objects on a OneNote page
by
CWBillow
1 day, 7 hours ago -
OneNote Send To button?
by
CWBillow
1 day, 8 hours ago -
WU help needed with “Some settings are managed by your organization”
by
Peobody
1 day, 16 hours ago -
No Newsletters since 27 January
by
rog7
1 day, 12 hours ago -
Linux Mint Debian Edition 7 gets OEM support, death of Ubuntu-based Mint ?
by
Alex5723
17 hours, 13 minutes ago -
Windows Update “Areca Technology Corporation – System – 6.20.0.41”
by
Bruce
15 hours, 53 minutes ago -
Google One Storage Questions
by
LHiggins
2 hours, 31 minutes ago -
Button Missing for Automatic Apps Updates
by
pmcjr6142
7 hours, 7 minutes ago -
Ancient SSD thinks it’s new
by
WSila
21 hours, 49 minutes ago -
Washington State lab testing provider exposed health data of 1.6 million people
by
Nibbled To Death By Ducks
2 days, 7 hours ago -
WinRE KB5057589 fake out
by
Susan Bradley
6 minutes ago -
The April 2025 Windows RE update might show as unsuccessful in Windows Update
by
Susan Bradley
1 day, 15 hours ago -
Firefox 137
by
Charlie
18 hours, 13 minutes ago -
Whisky, a popular Wine frontend for Mac gamers, is no more
by
Alex5723
2 days, 19 hours ago -
Windows 11 Insider Preview build 26120.3863 (24H2) released to BETA
by
joep517
2 days, 20 hours ago -
Windows 11 Insider Preview build 26200.5551 released to DEV
by
joep517
2 days, 20 hours ago -
New Windows 11 PC setup — can I start over in the middle to set up a local id?
by
ctRanger
1 day, 15 hours ago -
Windows 11 Insider Preview Build 26100.3902 (24H2) released to Release Preview
by
joep517
2 days, 23 hours ago -
Oracle kinda-sorta tells customers it was pwned
by
Nibbled To Death By Ducks
3 days, 5 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.