-
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.
![]() |
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
-
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
1 hour, 15 minutes ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
11 minutes ago -
Stop the OneDrive defaults
by
CWBillow
2 hours, 4 minutes ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
12 hours ago -
X Suspends Encrypted DMs
by
Alex5723
14 hours, 12 minutes ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
14 hours, 30 minutes ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
15 hours, 7 minutes ago -
OpenAI model sabotages shutdown code
by
Cybertooth
15 hours, 44 minutes ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
3 hours, 54 minutes ago -
Enabling Secureboot
by
ITguy
10 hours, 54 minutes ago -
Windows hosting exposes additional bugs
by
Susan Bradley
23 hours, 38 minutes ago -
No more rounded corners??
by
CWBillow
19 hours, 27 minutes ago -
Android 15 and IPV6
by
Win7and10
9 hours, 12 minutes ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
1 day, 11 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
1 day, 14 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
1 day, 9 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
1 day, 22 hours ago -
May preview updates
by
Susan Bradley
1 day, 9 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
1 day ago -
Just got this pop-up page while browsing
by
Alex5723
1 day, 14 hours ago -
KB5058379 / KB 5061768 Failures
by
crown
1 day, 11 hours ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
13 hours, 27 minutes ago -
At last – installation of 24H2
by
Botswana12
2 days, 13 hours ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
10 hours, 14 minutes ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
3 days, 1 hour ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
1 day ago -
Limited account permission error related to Windows Update
by
gtd12345
3 days, 15 hours ago -
Another test post
by
gtd12345
3 days, 15 hours ago -
Connect to someone else computer
by
wadeer
3 days, 9 hours ago -
Limit on User names?
by
CWBillow
3 days, 13 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.