-
WSJayden
AskWoody LoungerHi I completely agree under normal circumstances
However, this is for ‘complete novices’ who would otherwise not know how to re-size their browsers – with an ‘application’ that requires a specific screen area to display optimally.
Thanks for you comments though
-
WSJayden
AskWoody LoungerHi Lief,
Yes that is a better solution.
When I refer to fullscreen mode with the toolbar, I’m referring to emulating what happens to the screen when you press F11 in IE (or select from the menu bar view, fullscreen).
Ideally this is what I want to do.
-
WSJayden
AskWoody LoungerThanks for your replies.
The solutions that you have given are exactly what I am at present doing. When you use the ‘fullscreen=yes’ property, the IE window does open in fullscreen – but there is not toolbar at the top.
Can I get the toolbar while in fullscreen mode?
jayden
-
WSJayden
AskWoody LoungerGlad to help
-
WSJayden
AskWoody LoungerHi Greg
I have created a function below that you can cut and paste and then use in a query.
What you have to do is
1. Create a new module in your access database. To do this, in the database window, click the ‘modules’ button and then click the ‘new’ button
2. Copy the blue text below and paste it into this new module
3. Save your newly created module (call it something like modCustomFunctions)
4. Use the function AccessCeiling(value, significance) in a query where value is the value that you want to round and significance is the significane (in your case 5)Public Function AccessCeiling(dblValue As Double, lngSignificance As Long) As Long
‘===========================================================’
‘ Author: Jayden MacRae ‘
‘ Created: 29/10/2001 ‘
‘ Purpose: To simulate the ‘Ceiling’ function available in Excel which ‘
‘ rounds a number up to the next value of significance. ‘
‘===========================================================’
Dim lngCalculation As Long
If dblValue = 0 Then
AccessCeiling = 0
Exit Function
End IfIf dblValue / CInt(dblValue) 0 And dblValue / CInt(dblValue) 1 Then
If CInt(dblValue) > dblValue Then
lngCalculation = CInt(dblValue) – 1
Else
lngCalculation = CInt(dblValue) + 1
End If
Else
lngCalculation = dblValue
End IfIf lngCalculation < lngSignificance Then
AccessCeiling = lngSignificance
Else
If lngCalculation Mod lngSignificance = 0 Then
AccessCeiling = lngCalculation
Else
AccessCeiling = lngCalculation + (lngSignificance – (lngCalculation Mod lngSignificance))
End If
End If
End FunctionEdited to eliminate horizontal scrolling–Charlotte
-
WSJayden
AskWoody LoungerI’ve just tried downloading the above attachment and it seems to work for me, how about give this one a try then
-
WSJayden
AskWoody LoungerI’ve also tried to download and am getting an Access Forbidden error.
I’ll try it again:
-
WSJayden
AskWoody LoungerIt is probably your use of ‘0’s in your format function.
If your phone numbers are all the same length, ie 3 digits then hyphen then 4 digits then use the ‘@’ symbol. If you have some phone numbers with area codes and some without (ie. some 04387-3333 and some 387-3333) then you will want to use the ‘&’ symbol in your format function.
J
-
WSJayden
AskWoody LoungerCheck out the example file that I posted to your question about the combo boxes. It has a combo box with the format() function in it.
J
-
WSJayden
AskWoody LoungerI have attached an example Acc2K database. It contains 1 table (tblCustomers), which contains two fields (CustomerID and PhoneNumber).
It also contains a form with a combo box and a text box.
The combobox looks up the tblCustomer table and returns all CustomerID’s and their Associated phone numbers formatted to include a hyphen between the 3rd and 4th digits. The CustomerID column is hidden (the column width property of the combo box is set to 0 for the first column).
The OnChange event takes the CustomerID value select in the combo box (even though the user can’t see it) and places it in the textbox txtCustomerID.
The phone number is formatted in the row source of the combobox (look at the properties of the combobox and click the data tab, then click the elipsis (…) next to the Row Source property to bring up the query builder).
Hope this helps
J
-
WSJayden
AskWoody LoungerYou may find these articles handy (they are about normalisation)
http://msdn.microsoft.com/library/default….des_02_2oby.asp
http://support.microsoft.com/support/kb/ar…s/Q209/5/34.ASPThere are also some longer and more complex articles on MSDN, have a search around and see what you can find. The MSDN address is:
Cheers
Edited to activate links–Charlotte
-
WSJayden
AskWoody LoungerOoops, sorry, must have been in the middle of hacking together the function.
-
WSJayden
AskWoody LoungerOkay, here’s a solution then. Paste the following function into a new module. You can then call the function CustomRound. It requires to variables to be passed to it, varValue, which is the value that you wish to be rounded and intDecimalPlaces, which is the number of decimal places that you want the number rounded to. The function returns null if there is a problem in evaluating the rounding.
I haven’t tested this in Access 97, but it should work…maybe you could let me know if it does.
Cheers
Function CustomRound(varValue As Variant, intDecimalPlaces As Integer)
‘======================================================’
‘ Author: Jayden MacRae ‘
‘ Created: 27/10/2001 ‘
‘ Purpose: To round a value to the specified number of’
‘ decimal places. Function returns null if ‘
‘ it can’t be evaluated. ‘
‘======================================================’
If Not IsNumeric(varValue) Then
CustomRound = Null
Exit Function
End IfIf intDecimalPlaces < 0 Then
CustomRound = Null
Exit Function
End IfCustomRound = CInt(varValue * 10 ^ intDecimalPlaces) / 10 ^ intDecimalPlaces
End Function -
WSJayden
AskWoody LoungerHmmmm
Your SQL looks fine to me, but in saying that, when I recreated the situation in a brand new database, I got exactly the same error message. I spose that Jet has some deep dark reason for not being able to do it (although the MS access help file explicitly states that DELETE works with one-to-many relationships).
I can offer a workaround. It isn’t very elegant, but I think that it would work.
Firstly, instead of using your query as a delete query, use it as a make table query (with all fields from the customers table). Call the table a temporary name. Run this, and this should now be a Customer table (with a temporary name), but with only Customers with Orders.
Now use a DROP statement in a query to delete the Customers table (DROP TABLE Customers)
Then use the DoCmd.Rename statement from Visual Basic to rename the temporary Customers table to the ‘live’ Customers table.
Yeah, messy I know, but it should work.
Anyone else know what is wrong with the DELETE query?
J
-
WSJayden
AskWoody LoungerI’m glad that I could help.
I would say that using the Nz() is the best way to handle it.
Cheers
Jayden
![]() |
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
-
Nvidia just fixed an AMD Linux bug
by
Alex5723
6 hours, 9 minutes ago -
50 years and counting
by
Susan Bradley
8 hours, 29 minutes ago -
Fix Bluetooth Device Failed to Delete in Windows Settings
by
Drcard:))
4 hours, 30 minutes ago -
Licensing and pricing updates for on-premises server products coming July 2025
by
Alex5723
17 hours, 13 minutes ago -
Edge : Deprecating window.external.getHostEnvironmentValue()
by
Alex5723
17 hours, 18 minutes ago -
Rethinking Extension Data Consent: Clarity, Consistency, and Control
by
Alex5723
17 hours, 22 minutes ago -
OneNote and MS Word 365
by
CWBillow
19 hours, 11 minutes ago -
Ultimate Mac Buyers Guide 2025: Which Mac is Right For You?
by
Alex5723
19 hours, 22 minutes ago -
Intel Unison support ends on Windows 11 in June
by
Alex5723
19 hours, 35 minutes ago -
April 2025 — still issues with AMD + 24H2
by
Kevin Jones
19 hours, 46 minutes ago -
Windows 11 Insider Preview build 26200.5518 released to DEV
by
joep517
1 day, 7 hours ago -
Windows 11 Insider Preview build 26120.3671 (24H2) released to BETA
by
joep517
1 day, 7 hours ago -
Forcing(or trying to) save Local Documents to OneDrive
by
PateWilliam
1 day, 16 hours ago -
Hotpatch for Windows client now available (Enterprise)
by
Alex5723
1 day, 4 hours ago -
MS-DEFCON 2: Seven months and counting
by
Susan Bradley
5 hours, 5 minutes ago -
My 3 monitors go black & then the Taskbar is moved to center monitor
by
saturn2233
2 days, 1 hour ago -
Apple backports fixes
by
Susan Bradley
1 day, 7 hours ago -
Win 11 24H2 will not install
by
Michael1950
5 hours, 18 minutes ago -
Advice to convert MBR to GPT and install Windows 11 Pro on unsupported PC
by
Andy M
1 hour ago -
Photos from iPhone to Win 10 duplicating/reformatting to .mov
by
J9438
13 hours, 47 minutes ago -
Thunderbird in trouble. Here comes Thundermail
by
Alex5723
2 days, 3 hours ago -
Get back ” Open With” in context menus
by
CWBillow
2 days, 15 hours ago -
Many AMD Ryzen 9800X3D on ASRock have died
by
Alex5723
1 day, 7 hours ago -
simple general stupid question
by
WSaltamirano
2 days, 13 hours ago -
April 2025 Office non-Security updates
by
PKCano
3 days, 6 hours ago -
Microsoft wants to hear from you
by
Will Fastie
21 hours, 58 minutes ago -
Windows 11 Insider Preview Build 22635.5160 (23H2) released to BETA
by
joep517
3 days, 10 hours ago -
Europe Seeks Alternatives to U.S. Cloud Providers
by
Alex5723
3 days, 15 hours ago -
Test post
by
Susan Bradley
3 days, 18 hours ago -
Used Systems to delete Temp files Gone WRONG what does this mean?
by
Deo
3 days, 19 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.