-
WSDrew
AskWoody LoungerAny way you could post a sample db with those two forms and some data. It would be easier to help that way.
-
WSDrew
AskWoody LoungerAny way you could post a sample db with those two forms and some data. It would be easier to help that way.
-
WSDrew
AskWoody LoungerOn the on Open Event of the form, you would put:
Me.Title.DefaultValue=Forms(“Main Form”).Text71
-
WSDrew
AskWoody LoungerOn the on Open Event of the form, you would put:
Me.Title.DefaultValue=Forms(“Main Form”).Text71
-
WSDrew
AskWoody LoungerActually, I would recommend setting the textboxes default value to the main form’s Title entry. That way, if they chose to not enter a record, you won’t have an empty record with the Title in it. It will also carry over to new entries without anymore code involved.
-
WSDrew
AskWoody LoungerActually, I would recommend setting the textboxes default value to the main form’s Title entry. That way, if they chose to not enter a record, you won’t have an empty record with the Title in it. It will also carry over to new entries without anymore code involved.
-
WSDrew
AskWoody LoungerYes, and to answer the misidentified NIC question, I believe that VPC is ‘spoofing’ that Nic. If you think about it, NIC’s have a MAC, so when you get an IP address for Network comms, the switches on your network are actually communicating to the MAC, not the IP (though the IP is used at a higher level). You can have 2 IPs for the same NIC, but you can’t have to MACs/Nics on the same IP. If you think about it, VPC has to spoof everything for the OS, because it is running the OS in it’s own ‘shell’, and that OS doesn’t (and can’t) know about the PC actually running it.
Ironically, I discovered VPC, because I was looking for something to run Empire with. (Old DOS based game, that has even older roots). I love to play that game, but when I run it in a Windows environment, it takes up all of my monitors (I have 2 at home, and 3 at work). So if I want to play when something else is running, I can’t see anything in the background. With VPC, I can run it in it’s own window, and minimize it at will, without affecting anything in the game.
Pretty handy.
-
WSDrew
AskWoody LoungerYes, and to answer the misidentified NIC question, I believe that VPC is ‘spoofing’ that Nic. If you think about it, NIC’s have a MAC, so when you get an IP address for Network comms, the switches on your network are actually communicating to the MAC, not the IP (though the IP is used at a higher level). You can have 2 IPs for the same NIC, but you can’t have to MACs/Nics on the same IP. If you think about it, VPC has to spoof everything for the OS, because it is running the OS in it’s own ‘shell’, and that OS doesn’t (and can’t) know about the PC actually running it.
Ironically, I discovered VPC, because I was looking for something to run Empire with. (Old DOS based game, that has even older roots). I love to play that game, but when I run it in a Windows environment, it takes up all of my monitors (I have 2 at home, and 3 at work). So if I want to play when something else is running, I can’t see anything in the background. With VPC, I can run it in it’s own window, and minimize it at will, without affecting anything in the game.
Pretty handy.
-
WSDrew
AskWoody LoungerI don’t use an inline frame very often, unless I am pulling off a ‘hidden’ server comm trick. In those cases, I just set the height=0 and width=0. I know that if you don’t set an ID property, that Netscape has a problem with them.
-
WSDrew
AskWoody LoungerI don’t use an inline frame very often, unless I am pulling off a ‘hidden’ server comm trick. In those cases, I just set the height=0 and width=0. I know that if you don’t set an ID property, that Netscape has a problem with them.
-
WSDrew
AskWoody LoungerThere is a way to use normal ASP, and fill a page that is already loaded, without reloading that page. Use a ‘hidden’ inline frame. (Setting it’s height and width to 0). Then use client side scripting to ‘reload’ the javascript page when one of your combo boxes is changed. What needs to load in the inline frame is more scripting that ‘modifies’ the combo boxes you want modified.
I personally can’t stand javascript, and I’m lucky enough to write a lot of web stuff for our Intranet (a controlled IE only environment), so I mainly use VBScript. I have built this process once. It didn’t repopulate combo boxes, instead, it filled out portions of a form, from the selection of a combo box.
So let’s recap. Build an ASP page that receives the name of the combo box, and the current selection. Have that asp page product HTML/scripting that modifies the appropriate combobox (on the parent window) to contain the new data. On the OnClick event of each combo box, ‘navigate’ the ‘invisible’ inline frame to that asp page with the appropriate querystring variables (combo name and value).
And there you have it. Dynamic data interchange without reloading an .asp page. Enjoy!
-
WSDrew
AskWoody LoungerThere is a way to use normal ASP, and fill a page that is already loaded, without reloading that page. Use a ‘hidden’ inline frame. (Setting it’s height and width to 0). Then use client side scripting to ‘reload’ the javascript page when one of your combo boxes is changed. What needs to load in the inline frame is more scripting that ‘modifies’ the combo boxes you want modified.
I personally can’t stand javascript, and I’m lucky enough to write a lot of web stuff for our Intranet (a controlled IE only environment), so I mainly use VBScript. I have built this process once. It didn’t repopulate combo boxes, instead, it filled out portions of a form, from the selection of a combo box.
So let’s recap. Build an ASP page that receives the name of the combo box, and the current selection. Have that asp page product HTML/scripting that modifies the appropriate combobox (on the parent window) to contain the new data. On the OnClick event of each combo box, ‘navigate’ the ‘invisible’ inline frame to that asp page with the appropriate querystring variables (combo name and value).
And there you have it. Dynamic data interchange without reloading an .asp page. Enjoy!
-
WSDrew
AskWoody LoungerBeryl, you can use the minimize to system tray in VBA. My last version of my ‘MiniCalendar’ for Access (97) would allow you to hide the Access window, so the calendar is on the desktop all by itself. In ‘cycle mode’ (where you move the mouse around the calendar, and the day your mouse is over shows it’s data in another form), there is a ‘sleep’ button, that ‘minimizes’ the Minicalendar to the system tray.
On another note, my brother asked me to write up a VB program to minimize all windows to the system tray (or under one tray icon), to clear up his taskbar. Haven’t gotten around to writing it yet though.
Unfortunately, the zipped version of MIniCalendar3.zip is 284k, too big to post to the lounge. Also, my website is down right now (having quite a battle with my DSL company at the moment), so I can’t tell you to download it from there. If you want a copy of it, message me, and I’ll email you a copy.
-
WSDrew
AskWoody LoungerBeryl, you can use the minimize to system tray in VBA. My last version of my ‘MiniCalendar’ for Access (97) would allow you to hide the Access window, so the calendar is on the desktop all by itself. In ‘cycle mode’ (where you move the mouse around the calendar, and the day your mouse is over shows it’s data in another form), there is a ‘sleep’ button, that ‘minimizes’ the Minicalendar to the system tray.
On another note, my brother asked me to write up a VB program to minimize all windows to the system tray (or under one tray icon), to clear up his taskbar. Haven’t gotten around to writing it yet though.
Unfortunately, the zipped version of MIniCalendar3.zip is 284k, too big to post to the lounge. Also, my website is down right now (having quite a battle with my DSL company at the moment), so I can’t tell you to download it from there. If you want a copy of it, message me, and I’ll email you a copy.
-
WSDrew
AskWoody LoungerA little persnickity, are we? LOL!
. True though.
![]() |
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
-
Google’s Veo3 video generator. Before you ask: yes, everything is AI here
by
Alex5723
4 hours, 59 minutes ago -
Flash Drive Eject Error for Still In Use
by
J9438
6 hours, 32 minutes ago -
Windows 11 Insider Preview build 27863 released to Canary
by
joep517
23 hours, 51 minutes ago -
Windows 11 Insider Preview build 26120.4161 (24H2) released to BETA
by
joep517
23 hours, 52 minutes ago -
AI model turns to blackmail when engineers try to take it offline
by
Cybertooth
3 hours, 31 minutes ago -
Migrate off MS365 to Apple Products
by
dmt_3904
4 hours, 20 minutes ago -
Login screen icon
by
CWBillow
6 hours, 58 minutes ago -
AI coming to everything
by
Susan Bradley
2 hours, 18 minutes ago -
Mozilla : Pocket shuts down July 8, 2025, Fakespot shuts down on July 1, 2025
by
Alex5723
1 day, 15 hours ago -
No Screen TurnOff???
by
CWBillow
1 day, 15 hours ago -
Identify a dynamic range to then be used in another formula
by
BigDaddy07
1 day, 16 hours ago -
InfoStealer Malware Data Breach Exposed 184 Million Logins and Passwords
by
Alex5723
2 days, 4 hours ago -
How well does your browser block trackers?
by
n0ads
1 day, 14 hours ago -
You can’t handle me
by
Susan Bradley
14 hours, 18 minutes ago -
Chrome Can Now Change Your Weak Passwords for You
by
Alex5723
1 day, 6 hours ago -
Microsoft: Over 394,000 Windows PCs infected by Lumma malware, affects Chrome..
by
Alex5723
2 days, 15 hours ago -
Signal vs Microsoft’s Recall ; By Default, Signal Doesn’t Recall
by
Alex5723
1 day, 18 hours ago -
Internet Archive : This is where all of The Internet is stored
by
Alex5723
2 days, 15 hours ago -
iPhone 7 Plus and the iPhone 8 on Vantage list
by
Alex5723
2 days, 15 hours ago -
Lumma malware takedown
by
EyesOnWindows
2 days, 4 hours ago -
“kill switches” found in Chinese made power inverters
by
Alex5723
3 days ago -
Windows 11 – InControl vs pausing Windows updates
by
Kathy Stevens
3 days ago -
Meet Gemini in Chrome
by
Alex5723
3 days, 4 hours ago -
DuckDuckGo’s Duck.ai added GPT-4o mini
by
Alex5723
3 days, 4 hours ago -
Trump signs Take It Down Act
by
Alex5723
3 days, 12 hours ago -
Do you have a maintenance window?
by
Susan Bradley
1 day, 17 hours ago -
Freshly discovered bug in OpenPGP.js undermines whole point of encrypted comms
by
Nibbled To Death By Ducks
2 days, 15 hours ago -
Cox Communications and Charter Communications to merge
by
not so anon
3 days, 16 hours ago -
Help with WD usb driver on Windows 11
by
Tex265
1 hour, 5 minutes ago -
hibernate activation
by
e_belmont
4 days, 1 hour 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.