-
WSjacksonmacd
AskWoody LoungerThanks.
Looking forward to hearing if/when you solve the size problem.the image fix works like a charm.
-
WSjacksonmacd
AskWoody LoungerBy the way, how do you create the hotlink back to the other thread?
-
WSjacksonmacd
AskWoody LoungerHey — thanks for looking at that one. I am still awaiting an answer!! And you are right, it is bizarre.
Got another one if you are up to it…
What property holds the width (or height) of the current slide. I’ve tried ActiveWindow.width, but that seems to be something other than the actual slide size.
What I am trying to do is to allow the user to drop any size file onto the slide, and have it resize itself automatically to fully occupy the slide space, whether the slide is portrait or landscape. I keep getting overhang.
-
WSjacksonmacd
AskWoody LoungerDrat!!! I had feared that was the answer. My macro already does what you suggest.
Thanks for the clarification. -
WSjacksonmacd
AskWoody LoungerWOW!!!!!
AJF – you have gone above and beyond the call of duty! Thanks very much. The key to your trick was how to get that average onto the secondary axis. I had been able to get it onto the graph, but as you know, adding the data series dropped one of the other four. I didn’t know how to recover all five series. Your trick of hover and right-click was just the ticket!!
Thanks again.
-
WSjacksonmacd
AskWoody LoungerCreate a new query that contains both tables. Drag the phone number from one table into the other table to create a JOIN between them. double-click the asterisk from one of the tables to indicate that all the fields should be shown in the query. Run the query. the resulting records are the ones in which the phone numbers are equal.
return to the query design and change the query into a MakeTable query. Run the query, and it will create the new table for you.
-
WSjacksonmacd
AskWoody LoungerDone.
You will see the range that defines the chart. What I would like to do is to add the data from row 6 (avg), and have it appear as a line overlaying the stock chart.
I kinda get the feeling that it’s not possible, but was hoping that somebody has found a way to do it.
Thx.
-
WSjacksonmacd
AskWoody LoungerA method I use to get the syntax right is to always complete the “skeleton” of the IF before writing any of the “guts”. For example, type:
equal sign
IF
opening bracket
comma
comma
closting bracketThen go back and fill in the blanks. Doing it this way makes it easier to get the right number of commas and brackets. In this case, the first term would be the comparison (a2>=25), the second term would be the value (5), and the third term would be another IF statement, which you would build the same way. Continue for each additional IF.
-
WSjacksonmacd
AskWoody LoungerHere’s a little stub that I use in an application. On my system (before I loaded LookOut as an experiment…), it would launch my preferred email (Pegasus). On the client’s machine (he uses LookOut ), it would launch his preferred email software. Hope it works for you:
Private Sub cmdEmail_Click()
Dim sText As StringIf Len(Me![uFrmContactSUB].Form!) Then
sText = Me![uFrmContactSUB].Form!
End IfIf Len(sText) Then
sText = “mailto:” & sText
Call ShellExecute(Me.Hwnd, “open”, sText, _
vbNullString, vbNullString, 1)
End IfEnd Sub
-
WSjacksonmacd
AskWoody LoungerExtremely powerful… and it takes a while to learn. I suggest that you pick up a good book on programming Access. Any good computer bookstore will have a variety of books to choose from. Look for one that goes beyond the basic Access introduction into the area of programming. One of the best is Access Developer’s Handbook by Litwin, Getz, and Gilbert. It’s not really a beginners’ book, but is very thorough.
One of the things you will learn is how to apply an SQL string as the recordset for a form or a listbox.
For this specific example, you will notice that the WHERE xxx IN (SELECT… ) part is very structured. If you design a form with “bits of code” attached to various controls designating the various languages, you can build up a SQL string as the user clicks each control. Then once the string is formed, you apply it to a form or a listbox.
Experiment by building the string manually and applying it to a listbox. Nest some additional WHERE xxx IN (SELECT….) clauses. Then move on to building the string when the user clicks the various parts of the form.
HTH
-
WSjacksonmacd
AskWoody LoungerAnswered my own question after reading “Don’t know what to call it” thread by LonnieB. The answer there inspired me to write this VBA code:
Private Sub cmdExtractMaxHours_Click()
Dim MachineID As RangeSheets(“copyMax”).Select
Sheets(“CopyMax”).Range(“a2:m1000”).ClearContents
Sheets(1).Select
Range(“CurrentID”).Value = 0For Each MachineID In Range(“a5:a5000”)
If MachineID.Value = “” Then Exit Sub
If MachineID.Value Range(“CurrentID”).Value Then
If MachineID.Offset(0, 6) <= Range("MaxHours") Then
Range("CurrentID") = MachineID.Value
MachineID.EntireRow.Copy
Sheets("CopyMax").Range("A65536:FA65536").End(xlUp).Offset(1).PasteSpecial Paste:=xlAll
End If
End If
Next
End SubDon't know if it's possible to do without VBA, but this works for me.
-
WSjacksonmacd
AskWoody LoungerI’ve had good success with the MDBDiff utility from http://www.pb-sys.com/ The web site lists this software as “retired”, but it is still available. I’ve used only the Acc97 version, but A2K is also available.
-
WSjacksonmacd
AskWoody LoungerDone.
In anticipation of your next question, you build up the more complex query by building the SQL on-the-fly. Combine as many AND operations as you like by concatenating successive IN statements. The result of one query becomes the basis for building the next query.
Tried to post an attachment, but was unsuccessful. If you send me your email, I will send it to you directly.
-
WSjacksonmacd
AskWoody LoungerYou can’t do it directly. Instead, you need to select the people who speak English, and then from that group, select the people that speak Dutch. It can be done using a Subselect
select IDName from connect where (IDLanguage = “dutch”) and IDName IN (select IDName from connect where IDLanguage=”English”)
The key to this technique is using the IN operator.
Hope this helps.
-
WSjacksonmacd
AskWoody LoungerGee — it’s kinda reassuring to know that I’m not alone. I’ve read a lot about VB and its power, but most of my experience has been with Access. I am always spinning my wheels with VB — thought that it was just me. Glad (???) to see that someone with Charlotte’s depth of knowledge is similarly befuddled.
![]() |
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
-
Outdated Laptop
by
jdamkeene
55 minutes ago -
Updating Keepass2Android
by
CBFPD-Chief115
6 hours, 20 minutes ago -
Another big Microsoft layoff
by
Charlie
6 hours ago -
PowerShell to detect NPU – Testers Needed
by
RetiredGeek
5 hours, 49 minutes ago -
May 2025 updates are out
by
Susan Bradley
6 hours, 25 minutes ago -
Windows 11 Insider Preview build 26200.5600 released to DEV
by
joep517
12 hours, 4 minutes ago -
Windows 11 Insider Preview build 26120.3964 (24H2) released to BETA
by
joep517
12 hours, 6 minutes ago -
Drivers suggested via Windows Update
by
Tex265
11 hours, 57 minutes ago -
Thunderbird release notes for 128 esr have disappeared
by
EricB
9 hours, 41 minutes ago -
CISA mutes own website, shifts routine cyber alerts to X, RSS, email
by
Nibbled To Death By Ducks
18 hours, 56 minutes ago -
Apple releases 18.5
by
Susan Bradley
13 hours, 21 minutes ago -
Fedora Linux 40 will go end of life for updates and support on 2025-05-13.
by
Alex5723
20 hours, 22 minutes ago -
How a new type of AI is helping police skirt facial recognition bans
by
Alex5723
21 hours ago -
Windows 7 ISO /Windows 10 ISO
by
ECWS
4 hours, 16 minutes ago -
No HP software folders
by
fpefpe
1 day, 4 hours ago -
Which antivirus apps and VPNs are the most secure in 2025?
by
B. Livingston
2 hours ago -
Stay connected anywhere
by
Peter Deegan
1 day, 10 hours ago -
Copilot, under the table
by
Will Fastie
1 day, 1 hour ago -
The Windows experience
by
Will Fastie
1 day, 16 hours ago -
A tale of two operating systems
by
Susan Bradley
1 day, 7 hours ago -
Microsoft : Resolving Blue Screen errors in Windows
by
Alex5723
1 day, 21 hours ago -
Where’s the cache today?
by
Up2you2
2 days, 12 hours ago -
Ascension says recent data breach affects over 430,000 patients
by
Nibbled To Death By Ducks
2 days, 5 hours ago -
Nintendo Switch 2 has a remote killing switch
by
Alex5723
1 day, 6 hours ago -
Blocking Search (on task bar) from going to web
by
HenryW
8 hours, 18 minutes ago -
Windows 10: Microsoft 365 Apps will be supported up to Oct. 10 2028
by
Alex5723
3 days, 6 hours ago -
Add or Remove “Ask Copilot” Context Menu in Windows 11 and 10
by
Alex5723
3 days, 6 hours ago -
regarding april update and may update
by
heybengbeng
3 days, 7 hours ago -
MS Passkey
by
pmruzicka
2 days, 9 hours ago -
Can’t make Opera my default browser
by
bmeacham
3 days, 15 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.