Borderless Access

tmyers

Well-known member
Local time
Today, 16:18
Joined
Sep 8, 2020
Messages
1,091
Would someone happen to have a link to one of IslaDogs post that details how to make access "borderless"? I cant seem to find it and have a new computer so no longer have it bookmarked :(
 
Try
 
Maybe this one?
Edit: Oops, too slow.
 
No that was not it. Sharing that helped me narrow the search down however and I found it :giggle:
 
No that was not it. Sharing that helped me narrow the search down however and I found it :giggle:
LOL. Glad to hear you found it!
 
For info, the latest version is always available on my website - see the links provided in posts #2 & #3.
 
You are able to export/import bookmarks?
I just moved to a new (to me) laptop and did just that.
 
Congrats on the new laptop Paul.
 
It was my old works laptop, and my personal one went haywire.
It is an i7 with 12gb ram and 1Tb drive, so quite a step up. :)
 
My previous computer died unexpectedly, so I was not able to export the bookmarks off :(.
Either way I have added both links to my bookmarks now :giggle:
 
Unless the hard disk died, all your data is still available to you? Hopefully you will have backups. :)

All you need is a simple adaptor.
A 3.5" drive will need a powered version. I have one of those as then it handles both 3.5" and 2.5" drives.

If you have a new desktop, just put it into that, and all your data will be there.?

 
Sadly it was an SSD that for one reason or another decided it would rather have a career as a paperweight then a storage device and it was a very sudden and impulsive decision on its end.
 
Sadly it was an SSD that for one reason or another decided it would rather have a career as a paperweight then a storage device and it was a very sudden and impulsive decision on its end.
Ouch :(

I had a disk drive where the heads got stuck. I had nothing to lose, so I opened it up and freed the heads. Then I went out, bought a new larger disk, and copied all the data to the new disk whilst it was still working. :)
 
My recent experience was the PSU literally going bang with a smell of burning.
I was unable to access any of my files for 10 days until the replacement finally arrived.
Previously I lost both my main hard drive & main backup drive simultaneously. It took me months to recover most of the files from various sources
 
We had a coworker come in awhile back and while doing the typical morning routine he turned his computer on and we heard a loud POP followed by a faint burning smell then smoke started pouring out of it. Once we got it handled and I took it apart to see what happened, the CMOS battery had apparently exploded and ignited the motherboard. Only time I have ever see that happen.
 
When I worked in a school as an IT person, they had 6 new computers, which for some reason had dual voltage power supplies, 110 & 220.
The kids found out that if they switched them to 110, they would go pop. :mad:

We lost 2 computers pretty quickly, before we superglued the switch to the 220 setting.
 
Isla, I am getting an error when trying to bring back the navigation pane and don't quite understand why.
Code:
If strUserPerm = 3 Then
    SetAccessWindow (SW_SHOWMAXIMIZED)
    DoCmd.ShowToolbar "Ribbon", acToolbarYes
    DoCmd.NavigateTo "acNavigationCategoryObjectType"
    DoCmd.RunCommand acCmdWindowUnhide
End If

This gets me:
1665068928692.png


I assume since it is in a hidden state, it cant be navigated to which then causes the unhide to error out.
 
Never mind. Forgot I still had the sample database that had the code to restore it and just used that :ROFLMAO:
 
Just about to post when your follow up appeared...so I'll post anyway

The navigation pane can only be shown if the app window is visible
For example:

Code:
'show app window
SetAccessWindow (SW_SHOW)

'show nav pane 
 DoCmd.SelectObject acForm, , True

'maximise nav pane
DoCmd.NavigateTo "acNavigationCategoryObjectType"
 DoCmd.Maximize

'show ribbon
DoCmd.ShowToolbar "Ribbon", acToolbarYes
 
Yup! I must say that I find your stuff really helpful. I enjoy "trying" to use it although I think this is the first access file I have made and got it to work how I envisioned
 

Users who are viewing this thread

Back
Top Bottom