-
WSFay Yocum
AskWoody LoungerThanks guys. I will look into the Nav III and IV. Hard to believe people are still using antique browsers.
Got another question. I tried to make a page with just the nav bar and a logo graphic. Then I wanted to insert it into the top of the other pages. Thereby having only one place to go to make changes. But when I inserted it above or below the 2nd page’s tag it didn’t work. Any ideas.
Thank you. Fay
-
WSFay Yocum
AskWoody LoungerThank you for responding and your comments about my site.
I have in the past stayed away from frames. The main reason being concerns regarding different browsers handling of frames. Is that a non issue at this time? Should I still be concerned?
Thank you. Fay
-
WSFay Yocum
AskWoody Loungerunkamunka That did it. Thank you! It is always the little things that get you. I tried sending the file but got a message that it couldn’t be sent.
Happy Holidays. Fay
-
WSFay Yocum
AskWoody LoungerThank you Leif for your response. Actually the code I was using was from Dynamic Drive for the Top Navigational Bar II.
I have attached the file. Okay that didn’t go through so I will do the tried and true copy/paste method. Thanks! Fay
New Page 1 /*
Top Navigational Bar II (By Mike
Hall)Last updated: 00/05/08
Permission granted and modified by Dynamicdrive.com to
include script in archiveFor this and 100’s more DHTML scripts, visit
http://dynamicdrive.com*/
var myNavBar1 = new NavBar(0);
var dhtmlMenu;
//define menu items (first parameter of NavBarMenu specifies
main category width, second specifies sub category width in pixels)//add more menus simply by adding more “blocks” of
same code belowdhtmlMenu = new NavBarMenu(100, 0);
dhtmlMenu.addItem(new NavBarMenuItem(“Home”,
“http://www.awarenessproductions.com.com”));myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(100, 120);
dhtmlMenu.addItem(new NavBarMenuItem(“Documentation”,
“”));dhtmlMenu.addItem(new NavBarMenuItem(“Books”,
“http://www.cnn.com”));dhtmlMenu.addItem(new NavBarMenuItem(“MSNBC”,
“http://msnbc.com”));dhtmlMenu.addItem(new NavBarMenuItem(“ABCNews”,
“http://www.abcnews.com”));myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(110, 120);
dhtmlMenu.addItem(new NavBarMenuItem(“Technology”,
“”));dhtmlMenu.addItem(new NavBarMenuItem(“News.com”,
“http://www.news.com”));dhtmlMenu.addItem(new NavBarMenuItem(“Techweb”,
“http://www.techweb.com”));dhtmlMenu.addItem(new NavBarMenuItem(“Wired”,
“http://www.wired.com”));dhtmlMenu.addItem(new NavBarMenuItem(“Dynamic
Drive”,
“http://www.dynamicdrive.com”));myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(100, 150);
dhtmlMenu.addItem(new NavBarMenuItem(“Search”,
“”));dhtmlMenu.addItem(new NavBarMenuItem(“Yahoo”,
“http://www.yahoo.com”));dhtmlMenu.addItem(new NavBarMenuItem(“Alta
Vista”,
“http://www.altavista.com”));dhtmlMenu.addItem(new NavBarMenuItem(“Infoseek”,
“http://www.infoseek.com”));dhtmlMenu.addItem(new NavBarMenuItem(“Excite”,
“http://www.excite.com”));dhtmlMenu.addItem(new NavBarMenuItem(“HotBot”,
“http://www.hotbot.com”));myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(100, 150);
dhtmlMenu.addItem(new NavBarMenuItem(“Webmaster”,
“”));dhtmlMenu.addItem(new NavBarMenuItem(“Dynamic
Drive”,
“http://dynamicdrive.com”));dhtmlMenu.addItem(new NavBarMenuItem(“Website
Abstraction”, “http://wsabstract.com”));dhtmlMenu.addItem(new NavBarMenuItem(“Freewarejava.com”,
“http://freewarejava.com”));dhtmlMenu.addItem(new NavBarMenuItem(“BrainJar”,
“http://brainjar.com”));myNavBar1.addMenu(dhtmlMenu);
//set menu colors
myNavBar1.setColors(“#000000”,
“#000000”, “#C0C0C0”, “#ffffff”, “#666666”,
“#000000”, “#cccccc”, “#ffffff”,
“#000080”)//uncomment below line to center the menu (valid values are
“left”, “center”, and “right”//myNavBar1.setAlign(“center”)
var fullWidth;
function init() {
-
WSFay Yocum
AskWoody LoungerOkay I got the report to work, ie displaying input box and input on report. (By the way I can never express my appreciation for your help yesterday, but thanks.) To correct the problem I was having with the tsxtbox receiving the data I had to put the code in On Activation event.
I now have it so the message box comes up when the cmdApril button is clicked on the frmClient. But the data isn’t put into the textbox. I put the code like this
This is within the click command of the cmdApril button
Dim strYrMonth As String
strYrMonth = strMonthDoCmd.OpenReport “rptJonCombined”
txtMonth = strYrMonthWhat I can’t understand is why the code on the report is not activating itself just because we are going through a different route?
Thanks Fay
-
WSFay Yocum
AskWoody LoungerGood morning Francois
Okay I placed this in Modular 1
Public Function strMonth() As String
‘ Get the Month of the report from the user
strMonth = InputBox(“Type in the month.”, “Month of Year”)
End FunctionThen this on a report
Private Sub Report_Open(Cancel As Integer)
Dim strMonth As String
txtMonth = strMonth ‘ This is a textbox
End SubIt is now saying I can assign a value to this object. I have remove the Dim strMonth As String from the second block and it gives me the same message. PS Shifting gear on this same form I have tried using just a textbox with =[Type out the Month] and get a #Name as results.
Thank you Fay
-
WSFay Yocum
AskWoody LoungerDecember 10, 2001 at 9:00 pm in reply to: Label visible on sub report with code (Access 2002) #557347Francois This is getting scary. I think I actually know what you are saying in the above code. The True False was correct the only thing I had to change was If rst.AprilSet It demanded and !. Scary I figured that out. I think it is coming together but I have to do some more testing.
Thank you for all of your help today. Fay
-
WSFay Yocum
AskWoody LoungerDecember 10, 2001 at 7:27 pm in reply to: Label visible on sub report with code (Access 2002) #557334Yes. The form is not attached to the table with the data I need to check in this situation. PS the fix on the other problem seems to be doing the trick.
As always thanks a lot. Fay
-
WSFay Yocum
AskWoody LoungerDecember 10, 2001 at 6:56 pm in reply to: Label visible on sub report with code (Access 2002) #557325I don’t think I explained myself. The data is in a table tblCompanyFacts in a field called AprilSet.
I need to test the table field AprilSet to see if it is = Year(Now) – 1.My understanding is that Me only refers to the current object not an external object such as a table.
I think the only missing link is how to reference the table and field.Thank you. Fay
-
WSFay Yocum
AskWoody LoungerDecember 10, 2001 at 6:20 pm in reply to: Label visible on sub report with code (Access 2002) #557313Ran into a problem. Procedure works great when using the cmdApril button for the end of year row up of reports. But the same report is used monthly and should not display the label. The code we used to make the labels visible for the cmdApril button stops the use of the forms when going through the normal monthly routine.
Thank you. Fay
-
WSFay Yocum
AskWoody LoungerDecember 10, 2001 at 6:17 pm in reply to: Code DateAdd() and Make button invisible (Access 2002) #557312Okay I admit it I am out of my league and loosing my hair. I have no clue how to test against the table tblCompanyFacts field name cmdAprilSet to set the cmdApril button. If you have any more patience I would appreciate your help
I set the field value at 2000
Here is my attempt on a test form.
Private Sub Form_Open(Cancel As Integer)
If tblCompanyFacts!cmdAprilSet = Year(Now) – 1 Then
Me.cmdApril.Visible = True
Else
Me.cmdApril.Visible = True
End If
End SubThank you Fay
-
WSFay Yocum
AskWoody LoungerDecember 10, 2001 at 4:37 pm in reply to: Code DateAdd() and Make button invisible (Access 2002) #557241Thanks Francois. I will stay with the query I just was thinking about keeping the number of queries down.
The button worked find. But if I reopen the form it is on and it is still April then the button reappears. How do you set it to not return until the next year?
Thank you. Fay
-
WSFay Yocum
AskWoody LoungerDecember 10, 2001 at 2:19 pm in reply to: Label visible on sub report with code (Access 2002) #557186Thank you Francois that was right on the mark. The folks that frequent this board are great. Thank you for your time. So many of the things needed to get the job done are not always apparent.
Thank you. Fay
-
WSFay Yocum
AskWoody LoungerThank you Charlotte and Ricky. It is a major help when you know what the words are that you need to lookup.
Thank you for saving me a lot of time. Fay
-
WSFay Yocum
AskWoody LoungerI was always told to keep things out of my eye, including charts, fingers, and contacts.
You expression worked well on the query I placed it in front of the original month. When I put it on the report as a chart and used your SortMonth as the column heading it worked great. Now all I have to do is change the labels of 4, 5 etc to April, May etc.
Thank you. Fay
![]() |
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
-
Login issues with Windows Hello
by
CWBillow
1 hour, 41 minutes ago -
How to get into a manual setup screen in 2024 Outlook classic?
by
Tex265
1 hour, 46 minutes ago -
Linux : ARMO rootkit “Curing”
by
Alex5723
6 hours, 40 minutes ago -
Employee monitoring app leaks 21 million screenshots in real time
by
Alex5723
6 hours, 46 minutes ago -
Google AI is now hallucinating idioms
by
Alex5723
7 hours, 17 minutes ago -
april update
by
69800
3 hours, 16 minutes ago -
Windows 11 Insider Preview build 27842 released to Canary
by
joep517
8 hours, 12 minutes ago -
Quick Fix for Slowing File Explorer
by
Drcard:))
8 hours, 24 minutes ago -
WuMgr not loading?
by
LHiggins
9 hours ago -
Word crashes when accessing Help
by
CWBillow
27 minutes ago -
New Microsoft Nag — Danger! Danger! sign-in to your Microsoft Account
by
EricB
8 hours, 3 minutes ago -
Blank Inetpub folder
by
Susan Bradley
5 hours, 27 minutes ago -
Google : Extended Repair Program for Pixel 7a
by
Alex5723
18 hours, 35 minutes ago -
Updates seem to have broken Microsoft Edge
by
rebop2020
5 hours ago -
Wait command?
by
CWBillow
11 hours, 51 minutes ago -
Malwarebytes 5 Free version manual platform updates
by
Bob99
1 day, 1 hour ago -
inetpub : Microsoft’s patch for CVE-2025–21204 introduces vulnerability
by
Alex5723
1 day, 7 hours ago -
Windows 10 finally gets fix
by
Susan Bradley
1 day, 16 hours ago -
AMD Ryzen™ Chipset Driver Release Notes 7.04.09.545
by
Alex5723
1 day, 18 hours ago -
How to use Skype after May?
by
Joann
2 hours, 22 minutes ago -
Win 7 MS Essentials suddenly not showing number of items scanned.
by
Oldtimer
1 day, 12 hours ago -
France : A law requiring messaging apps to implement a backdoor ..
by
Alex5723
2 days, 7 hours ago -
Dev runs Windows 11 ARM on an iPad Air M2
by
Alex5723
2 days, 7 hours ago -
MS-DEFCON 3: Cleanup time
by
Susan Bradley
7 hours, 1 minute ago -
KB5056686 (.NET v8.0.15) Delivered Twice in April 2025
by
lmacri
13 hours, 13 minutes ago -
How to enable Extended Security Maintenance on Ubuntu 20.04 LTS before it dies
by
Alex5723
2 days, 19 hours ago -
Windows 11 Insider Preview build 26200.5562 released to DEV
by
joep517
2 days, 23 hours ago -
Windows 11 Insider Preview build 26120.3872 (24H2) released to BETA
by
joep517
2 days, 23 hours ago -
Unable to eject external hard drives
by
Robertos42
1 day, 9 hours ago -
Saying goodbye to not-so-great technology
by
Susan Bradley
21 hours, 21 minutes 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.