-
WSdreyes
AskWoody LoungerI just tried something and it worked. I went into Control Panel, Display, Setting and changed the setting from default Blue to Olive Green. Called up the form and it display fine, ugly color but read able. Next I changed it back to default blue and it working fine now.
-
WSdreyes
AskWoody LoungerUsed “Yes” How do I know if I am using the right dbtable?
‘-=-=-=-=-=-=-=-=-=-
Sub UpdateA
Dim Obe
Dim MyDB
Dim Rst
Dim Rsm‘On error resume next
Set Dbe = Application.CreateObject(“DAO.DBEngine.36”)
If Err.Number 0 Then
MsgBox Err.Description & “— Some functions may not work correctly” _
& Chr(13) & “Please make sure that DAO 3.6 is installed on this machine”
Exit Sub
End If‘How do I know if I am looking at dbUserID and not a different table?
Set MyDB = Dbe.Workspaces(0).OpenDatabase(“tabsnasdatabase$edgarMasterCIGARS06copyblank.mdb”)
Set RST = MyDBOpenRecordset(“dbUserID”)
If UserProperties.Find(“sat”).Value = “Yes” Then
cmdCom7_click()
msgbox”com7″
Update5
Else
msgbox”Else”
End if
End if
End Sub -
WSdreyes
AskWoody LoungerJust tried that and it goes to the Else all the time. It does no run Com7, Update5.
Going to drop this and change to code to use a Forward button instead of trying it this way.
Thanks
-
WSdreyes
AskWoody LoungerThe OBE/DBE was a typeo, sorry.
In UpdateA, If the Value of SATS is Yes, then cmdCOm7 will build the reply message that is display on the screen. As it should do in the first pass as the requestor. In Update 5, the SATS is changed from “Yes”, to “Mailed” (I verified this in the database.) Now the Form is sent to the next person for processing. When the Next person/group opens the Form, do their task and gets ready to forward the form to the next group. Its at this stage that Com7 displays again, even if the SATS is not Yes but Mailed in the database.
If UserProperties.Find(“sats”).Value = Yes Then
cmdCom7_click()
Update5
Else
End if
End Sub
‘-=-=-=-=-=-=-=-=-=-‘****************************************************************
‘* Procedure:
‘* Arguments:
‘* Description: Sends mail to HR Dept. about NEW Employee
‘****************************************************************
Sub cmdCom7_Click()
Item_Reply = False
Set MyFolder = Application.GetNameSpace(“MAPI”).GetDefaultFolder(6)
Set MyItem = MyFolder.Items.Add(“IPM.Note.Security Awareness Communication”)
MyItem.To = Item.UserProperties.Find(“reqby”).Value
MyItem.Subject = “Security Awareness Communication: ” & “” & Item.UserProperties.Find(“jobnum”).Value
myItem.Body = “Keep this form until Security Awareness is completed. Then send the Date and TIme of person to Data Security.”
MyItem.Display
End Sub
‘-=-=-=-=-=-=-=-=-=- -
WSdreyes
AskWoody LoungerI have a Windows XP in the CD drive and it is set 1st in the boot order. Once I start the computer I can get into the BIOS and change things around using the keyboard. Not sure what the keyboard is set at right now, but I can navigate around. Will check the boot order again just to make sure.
I have not tried using just one dimm, but will try it tonight.
-
WSdreyes
AskWoody LoungerI already gave them a Status Monitor system. Its a VB6 application that they call up and select the Dept they are in. In the status Monitor it shows all Task related to their Dept,
Task number, Date/Time Request, Who Requested it, Status (Submit, Work in Progress, Finished), Who is working on the task and when they started to work on it.
They are just to lazy to open the Status Monitor up.
Ok, thanks for the input..I’ll just tell them it would take to long to design and code. -
WSdreyes
AskWoody LoungerBy filling out the form I capture all the information that I need. That was fine with me, but now the Dept Manager doesn’t want to OPen the form and tab to the section where his group is working on.. Instead, he wants to be informed what is going on just by opening the form.
1. Tech 1 opens the form, goes to the section/tab for his depmartment and enters the date/time, his name – Using a command button – he updates the database.and starts on completing the process.
2. 20 min. later Tech 2 logons into his computer and see’s the message about a new message/form is waiting for processing. Now, just by the process of open the form, a message pops up telling him that Tech 1 has already started to work on the request. – So Tech 2 can just close the request as someone else is already working on the task.
3. 1 hr later Tech 3 logons into his computer, and opens the message/form task. By this time Tech 1 has finished the process, so Tech 3 upon opening the form, has a pop up telling him that the Task has been finished. -
WSdreyes
AskWoody LoungerNot sure of anything right now. I only got to formatting the hard drive and the mouse did not move before or after I started.
-
WSdreyes
AskWoody LoungerNot sure I understand your question. I am publishing the forms in: Public FodlersIT Forms (folder) as forms.
There will be no forms in the Organizations Forms Library, they are being moved into the Public Folders.
-
WSdreyes
AskWoody Loungerok, Foot in mouth time.
Charlette: How do I test for a null entry?
-
WSdreyes
AskWoody LoungerTried this format and it seems to be working: and ((dbtask.group = “M”) or (dbtask.group = “S”))
This seems to be working and so far I see all the informaiton I was expecting. Thanks to everyone for helping on this.
-
WSdreyes
AskWoody LoungerDid some looking around and I think that Outlook VBA Editor is not powerful enough to handle this. I need to see if I can convert this to a VB6 format. As for the ))) or )), I tried both and I still get the same syntax error. I am still looking into the Nulls in all the fields (operator1, txtstatus) as there are some. As for the S&M, the full range of options are C,S,M and the rare blank. The combinations I will be looking for later are:
Report 1: C
Report 2: S
Report 3: SMReports 1 & 2 are working, but I have not checked to see if the blank field will make a difference. Report 3: Is my problem child.
What I am going to do is close this message and rebuild Report 3 using VB 6 software, and make the report into a display using datagrid to show the report online
only. -
WSdreyes
AskWoody LoungerNot sure what you mean by Nulls, that is your right there are some records that are blank but did not think about that before. Will look that up and see how to deal with the nulls.
Thanks.
-
WSdreyes
AskWoody LoungerGetting a syntex error in query expression from “where (dbtask.operator1……)));
Select [dbtask.tasknum], [dbtask.date], [dbtask.sent], [dbtask.Reqby], [dbtask.txtstatus], [dbtask.jobtype], [dbtask.form], [dbtask.operator1] FROM dbtask where (dbtask.operator1 ‘Not Assigned’) and (dbtask.txtstatus ‘Finished’) and (dbtask.group not (In(‘S’,’M”))); -
WSdreyes
AskWoody LoungerSelect [dbtask.tasknum], [dbtask.date], [dbtask.sent], [dbtask.Reqby], [dbtask.txtstatus], [dbtask.jobtype], [dbtask.form], [dbtask.operator1] FROM dbtask where dbtask.operator1 “Not Assigned” and dbtask.txtstatus “Finished” and dbtask.group = “S”
To change the question just a little – I want to be able to select from dbtask.group where it = “S” or “M”.
I know this is a simple question,,,just tired and want to finish this up.
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
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
-
How much I spent on the Mac mini
by
Will Fastie
4 hours, 3 minutes ago -
How to get rid of Copilot in Microsoft 365
by
Lance Whitney
4 hours, 5 minutes ago -
Spring cleanup — 2025
by
Deanna McElveen
4 hours, 6 minutes ago -
Setting up Windows 11
by
Susan Bradley
4 hours, 6 minutes ago -
VLC Introduces Cutting-Edge AI Subtitling and Translation Capabilities
by
Alex5723
4 hours, 27 minutes ago -
Powershell version?
by
CWBillow
1 hour, 12 minutes ago -
SendTom Toys
by
CWBillow
5 hours, 31 minutes ago -
Add shortcut to taskbar?
by
CWBillow
6 hours, 35 minutes ago -
Sycophancy in GPT-4o: What happened
by
Alex5723
15 hours, 25 minutes ago -
How can I install Skype on Windows 7?
by
Help
14 hours, 7 minutes ago -
Logitech MK850 Keyboard issues
by
Rush2112
8 hours, 52 minutes ago -
We live in a simulation
by
Alex5723
1 day, 5 hours ago -
Netplwiz not working
by
RetiredGeek
16 hours, 7 minutes ago -
Windows 11 24H2 is broadly available
by
Alex5723
1 day, 17 hours ago -
Microsoft is killing Authenticator
by
Alex5723
5 hours, 36 minutes ago -
Downloads folder location
by
CWBillow
2 days ago -
Remove a User from Login screen
by
CWBillow
20 hours, 2 minutes ago -
TikTok fined €530 million for sending European user data to China
by
Nibbled To Death By Ducks
1 day, 15 hours ago -
Microsoft Speech Recognition Service Error Code 1002
by
stanhutchings
1 day, 15 hours ago -
Is it a bug or is it expected?
by
Susan Bradley
1 day, 20 hours ago -
Image for Windows TBwinRE image not enough space on target location
by
bobolink
1 day, 14 hours ago -
Start menu jump lists for some apps might not work as expected on Windows 10
by
Susan Bradley
14 hours, 10 minutes ago -
Malicious Go Modules disk-wiping malware
by
Alex5723
2 days, 4 hours ago -
Multiple Partitions?
by
CWBillow
2 days, 5 hours ago -
World Passkey Day 2025
by
Alex5723
1 hour, 13 minutes ago -
Add serial device in Windows 11
by
Theodore Dawson
3 days, 13 hours ago -
Windows 11 users reportedly losing data due forced BitLocker encryption
by
Alex5723
1 day, 14 hours ago -
Cached credentials is not a new bug
by
Susan Bradley
3 days, 18 hours ago -
Win11 24H4 Slow!
by
Bob Bible
3 days, 18 hours ago -
Microsoft hiking XBox prices starting today due to Trump’s tariffs
by
Alex5723
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.