That is very strange indeed. Boolean variables aren’t supposed to behave that way. Is the behavior consistent. i.e. does it persist after a reboot of your PC?
![]() |
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 |
-
Not Not (2002 SP3)
Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » Not Not (2002 SP3)
- This topic has 17 replies, 8 voices, and was last updated 19 years, 10 months ago.
Viewing 1 reply threadAuthorReplies-
WSPaul Lautman
AskWoody LoungerMay 18, 2005 at 12:36 pm #948500Still there after a reboot.
The attached worksheet contains a small piece of test code. Obviously you can’t run it unless you have IBM Personal Communications on your PC.Sheets 1 to 3 show results of 3 tests:
Sheet 1:
With a timeout of 1000 milliseconds, oia.waitforinputready() returns False.
You can see that ir = False and Not ir = True
This is as expected.Sheet 2:
With a timeout of 10000 milliseconds, oia.waitforinputready() returns True.
You can see that ir = True and Not ir = True
This is NOT as expectedSheet 3:
Setting ir to True explicitly (even though with a timeout of 10000 milliseconds it would already have been True) gives us:
ir = True and Not ir = False
Once again as expected. -
WSHansV
AskWoody Lounger -
WSPaul Lautman
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSpieterse
AskWoody LoungerMay 18, 2005 at 1:26 pm #948537This is a declaration and a type conversion problem.
I spotted that not all variables are dim’ed in your code.
I think the IBM code is not returning a boolean value. Since you haven’t dim’ed ir, it is by default a Variant and when assigning a value to it, it will accept any format.
Consider these three small routines:
Option Explicit Sub test1() Dim nir As Boolean Dim ir As Variant ir = 1 nir = Not ir MsgBox nir ir = 0 nir = Not ir MsgBox nir End Sub Sub test2() Dim nir As Boolean Dim ir As Variant ir = True nir = Not ir MsgBox nir ir = False nir = Not ir MsgBox nir End Sub Sub test3() Dim nir As Boolean Dim ir As Boolean ir = 1 nir = Not ir MsgBox nir ir = 0 nir = Not ir MsgBox nir End Sub
See what I mean?
-
WSPaul Lautman
AskWoody LoungerMay 18, 2005 at 1:40 pm #948543I didn’t Dim it in the attached workbook, but if you look at the picture in the first append, I did have them Dimmed as Boolean and it was still exhibiting the behaviour.
Also a Debug.Print of oia.waitforinputready(n) returns True or False.
Bottom line is, is there some way that I can code this to make a working True/False value?
-
WSHansV
AskWoody Lounger -
WSPaul Lautman
AskWoody Lounger -
WSHansV
AskWoody Lounger -
byteme
AskWoody Plus -
WSrory
AskWoody LoungerMay 20, 2005 at 9:03 am #948885Hi Paul,
Just as a matter of interest, does it help if you move the oia.waitforinputready call into a separate function which explicitly returns a boolean? The fact that it always seems to work when the function returns false (which has to be zero) but not when it returns true does seem to imply that it is not returning a real boolean value, but some sort of number; hence when you apply Not, you’re flipping the bits but still ending up with a number other than 0, so getting a true value. I am confused though as to why the assignment to a boolean variable does not force the values to be true booleans. -
WSPaul Lautman
AskWoody LoungerMay 20, 2005 at 10:08 am #948901 -
WSpieterse
AskWoody LoungerMay 18, 2005 at 2:02 pm #948552I missed the Dim in the picture.
But since my code does show a similar behaviour, I think Hans’ suggestion might help (explicitly converting to a boolean before assigning).Last thing to try: clean your code! http://www.appspro.com/Utilities/CodeCleaner.htm%5B/url%5D
-
-
-
-
-
WSPaul Lautman
AskWoody LoungerMay 18, 2005 at 12:49 pm #948460Edited by StuartR to reduce size of graphic
I am seeing some very strange behaviour when writing a programmed operator using VBA in Excel. I wonder if anyone can explain it.
The programmed operator is using OLE to interact with an IBM Personal Communications 3270 emulator.
One ofthe methods available is WaitForInputReady for which the documentation says:
Method: Boolean WaitForInputReady
The WaitForInputReady method waits until the OIA of the connection associated with autECLOIA object indicates that the connection is able to accept keyboard input
Input Parameters:
-
WScharlotte
AskWoody LoungerMay 18, 2005 at 12:16 pm #948490Does the result change if you take the parens out from Not (ir) and execute it as Not ir ? I have run into situations where a Not condition always returned true in other VBA implementations and in those circumstances, I have been forced to use workarounds like while loops or If-Else constructs.
-
WSchrisgreaves
AskWoody LoungerMay 18, 2005 at 9:18 pm #948572I have a vague sense of unease that this is similar to a problem that plagued me with hex values recently.
Sometimes -1 and &HFFFF and True and False and zero and not-zero don’t seem to connect properly.
Could it be that some specific bit pattern (length of bit string AND their values) is given a different interpretation by different code? We have all met mis-matched specs where “0” means not a problem and 0 means a problem. Or >=0 means “found” and -1 means not-found. But -1 means True, right? so something that treated -1 as True might be mis-interpreting a not-found response and thinking that everything is OK.
I noticed a reply (480920) that mentioned problems with variants.
-
WSSteveH
AskWoody Lounger
-
Viewing 1 reply thread -

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
-
Looking for personal finance software with budgeting capabilities
by
cellsee6
1 hour, 43 minutes ago -
ATT/Yahoo Secure Mail Key
by
Lil88reb
10 hours, 21 minutes ago -
Devices with apps using sprotect.sys driver might stop responding
by
Alex5723
14 hours, 42 minutes ago -
Neowin – 20 times computers embarrassed themselves with public BSODs and goofups
by
EP
23 hours, 18 minutes ago -
Slow Down in Windows 10 performance after March 2025 updates ??
by
arbrich
1 hour, 32 minutes ago -
Mail from certain domains not delivered to my outlook.com address
by
pumphouse
7 hours, 40 minutes ago -
Is data that is in OneDrive also taking up space on my computer?
by
WShollis1818
18 hours, 20 minutes ago -
Nvidia just fixed an AMD Linux bug
by
Alex5723
2 days, 10 hours ago -
50 years and counting
by
Susan Bradley
39 minutes ago -
Fix Bluetooth Device Failed to Delete in Windows Settings
by
Drcard:))
1 day, 16 hours ago -
Licensing and pricing updates for on-premises server products coming July 2025
by
Alex5723
2 days, 21 hours ago -
Edge : Deprecating window.external.getHostEnvironmentValue()
by
Alex5723
2 days, 21 hours ago -
Rethinking Extension Data Consent: Clarity, Consistency, and Control
by
Alex5723
2 days, 21 hours ago -
OneNote and MS Word 365
by
CWBillow
2 days, 23 hours ago -
Ultimate Mac Buyers Guide 2025: Which Mac is Right For You?
by
Alex5723
2 days, 23 hours ago -
Intel Unison support ends on Windows 11 in June
by
Alex5723
2 days, 23 hours ago -
April 2025 — still issues with AMD + 24H2
by
Kevin Jones
14 hours, 51 minutes ago -
Windows 11 Insider Preview build 26200.5518 released to DEV
by
joep517
3 days, 11 hours ago -
Windows 11 Insider Preview build 26120.3671 (24H2) released to BETA
by
joep517
3 days, 11 hours ago -
Forcing(or trying to) save Local Documents to OneDrive
by
PateWilliam
3 days, 20 hours ago -
Hotpatch for Windows client now available (Enterprise)
by
Alex5723
3 days, 7 hours ago -
MS-DEFCON 2: Seven months and counting
by
Susan Bradley
2 days, 8 hours ago -
My 3 monitors go black & then the Taskbar is moved to center monitor
by
saturn2233
4 days, 4 hours ago -
Apple backports fixes
by
Susan Bradley
3 days, 11 hours ago -
Win 11 24H2 will not install
by
Michael1950
2 days, 9 hours ago -
Advice to convert MBR to GPT and install Windows 11 Pro on unsupported PC
by
Andy M
1 day, 2 hours ago -
Photos from iPhone to Win 10 duplicating/reformatting to .mov
by
J9438
2 days, 17 hours ago -
Thunderbird in trouble. Here comes Thundermail
by
Alex5723
1 day, 5 hours ago -
Get back ” Open With” in context menus
by
CWBillow
4 days, 19 hours ago -
Many AMD Ryzen 9800X3D on ASRock have died
by
Alex5723
3 days, 11 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.