472,789 Members | 1,359 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,789 software developers and data experts.

Switchboard has disappeared

I was working in Access and everything disappeared from the screen. When I
closed and reopened the file there was no switchboard. I can open tables and
forms etc if I select a category from the View > Database Objects menu, and
use the up/down keys and the Enter key, but I can't see what it is I am about
to open.

I was able to replicate this with another database by moving the switchboard
up past the top of the screen and scrolling up to it. It disappeared and I
can't get it back.

The main Access window scrollbar is scrolled a long way down and it won't
scroll back up.

Does anyone know what causes this weirdness, and how I can get the
switchboard back?

--
Ray Greene.
Nov 13 '05 #1
8 5464
I've had similar things happen when I changed the display resolution I was
using -- objects that had been moved far from their start point were not
visible. The only easy way I found to correct it was to switch back to the
higher resolution and move everything back to where it began.

It was/is not just an Access problem -- happens with any software that saves
the last-used position of screen objects.

Larry Linson
Microsoft Access MVP

"Ray Greene" <ra***@es.co.nz> wrote in message
news:Ih******************@news.xtra.co.nz...
I was working in Access and everything disappeared from the screen. When I
closed and reopened the file there was no switchboard. I can open tables and forms etc if I select a category from the View > Database Objects menu, and use the up/down keys and the Enter key, but I can't see what it is I am about to open.

I was able to replicate this with another database by moving the switchboard up past the top of the screen and scrolling up to it. It disappeared and I
can't get it back.

The main Access window scrollbar is scrolled a long way down and it won't
scroll back up.

Does anyone know what causes this weirdness, and how I can get the
switchboard back?

--
Ray Greene.

Nov 13 '05 #2
I've had that problem with other applications too, but I think this case is
different. Being inside the main window the switchboard should be available
by scrolling to it, but the scrollbar doesn't work properly. I suspect that
the switchboard has an illegal value in its coordinates.

Is there a way to access the switchboard through VBA? I might be able to
bring it back that way.

--
Ray Greene.

On Sun, 24 Apr 2005 01:29:30 GMT, "Larry Linson" <bo*****@localhost.not>
wrote:
I've had similar things happen when I changed the display resolution I was
using -- objects that had been moved far from their start point were not
visible. The only easy way I found to correct it was to switch back to the
higher resolution and move everything back to where it began.

It was/is not just an Access problem -- happens with any software that saves
the last-used position of screen objects.

Larry Linson
Microsoft Access MVP

"Ray Greene" <ra***@es.co.nz> wrote in message
news:Ih******************@news.xtra.co.nz...
I was working in Access and everything disappeared from the screen. When I
closed and reopened the file there was no switchboard. I can open tables

and
forms etc if I select a category from the View > Database Objects menu,

and
use the up/down keys and the Enter key, but I can't see what it is I am

about
to open.

I was able to replicate this with another database by moving the

switchboard
up past the top of the screen and scrolling up to it. It disappeared and I
can't get it back.

The main Access window scrollbar is scrolled a long way down and it won't
scroll back up.

Does anyone know what causes this weirdness, and how I can get the
switchboard back?

--
Ray Greene.


Nov 13 '05 #3
Ray Greene <ra***@es.co.nz> wrote in
news:Ih******************@news.xtra.co.nz:
I was working in Access and everything disappeared from the
screen. When I closed and reopened the file there was no
switchboard. I can open tables and forms etc if I select a
category from the View > Database Objects menu, and use the
up/down keys and the Enter key, but I can't see what it is I am
about to open.

I was able to replicate this with another database by moving the
switchboard up past the top of the screen and scrolling up to it.
It disappeared and I can't get it back.

The main Access window scrollbar is scrolled a long way down and
it won't scroll back up.

Does anyone know what causes this weirdness, and how I can get the
switchboard back?


I've seen this happen, but always with working horizontal and
vertical scrollbars, so it was always recoverable. The solution was
the tedious task of scrolling over to where the thing was located,
dragging it one Access window left, scrolling one screen left,
dragging the window left, and so forth, until the horizontal
scrollbar disappeared entirely. Then repeat the process for the
vertical scrollbar.

Then close the MDB and then close Access, restart Access and open
the MDB and it should be in the right position.

However, now that I look at what you're saying, you are not talking
about the database window but the Switchboard form. I'd check its
properties to see if it's set to auto-center, or if there's some
code somewhere in the app that is positioning it onscreen somewhere
other than the center of the Access window.

If the problem persists, I think I'd go through a decompile/compact
cycle, and if that has no effect, import everything into a fresh MDB
and see if that fixes the issue.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #4
I presume you are talking about the Switchboard generated by the Switchboard
Manager. I do not use the Switchboard Manager because I view it as a complex
solution to a simple problem. Instead, I create my own unbound Forms for use
as switchboard. Thus, I am not a good source for information about
Switchboard Manager Switchboards.

However, in the experimentation I did with Switchboard Manager (from which I
came to the conclusion above), I didn't experience anything similar to what
you describe. Perhaps someone else, with more Switchboard Manager
background, can step in and assist in pursuing an answer.

Larry Linson
Microsoft Access MVP


Nov 13 '05 #5
See if this sorts you out

Paste the following in the debug window and execute it (it presumes that the
switchboard is the only form open).

docmd.SelectObject acform, forms(0).Name,false: docmd.MoveSize 0, 0,
forms(0).Width,forms(0).InsideHeight

--
Terry Kreft
MVP Microsoft Access
"Ray Greene" <ra***@es.co.nz> wrote in message
news:Ih******************@news.xtra.co.nz...
I was working in Access and everything disappeared from the screen. When I
closed and reopened the file there was no switchboard. I can open tables and forms etc if I select a category from the View > Database Objects menu, and use the up/down keys and the Enter key, but I can't see what it is I am about to open.

I was able to replicate this with another database by moving the switchboard up past the top of the screen and scrolling up to it. It disappeared and I
can't get it back.

The main Access window scrollbar is scrolled a long way down and it won't
scroll back up.

Does anyone know what causes this weirdness, and how I can get the
switchboard back?

--
Ray Greene.

Nov 13 '05 #6
On Mon, 25 Apr 2005 17:34:38 +0100, "Terry Kreft" <te*********@mps.co.uk>
wrote:
docmd.SelectObject acform, forms(0).Name,false: docmd.MoveSize 0, 0,
forms(0).Width,forms(0).InsideHeight


Sorry for the late reply but I was away.

I tried your code but got the error message:
"The number you used to refer to the form is invalid"

I tried it on a good database too but trying to refer to "forms(0)" gave the
same result. It looks as though the switchboard isn't part of the Forms
collection.

I've ended up creating a replica of the database (to avoid having to work in
Braille as I couldn't see anything) and exporting everything from the
original and importing it into a new database.

I had to recreate all the tables by copying and pasting, to get rid of the
replication system fields. It was a messy fix but fortunately it wasn't a big
database.

It would still be nice to find a way repair the original. I don't want to
have to go through all this again in the future.

Ray Greene.
Nov 13 '05 #7
Ray Greene <ra***@es.co.nz> wrote in
news:C8*******************@news.xtra.co.nz:
I had to recreate all the tables by copying and pasting, to get
rid of the replication system fields. It was a messy fix but
fortunately it wasn't a big database.


You obviously didn't know about MichKa's unreplication wizard. See
http://www.trigeminal.com for the download.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #8
On Wed, 27 Apr 2005 01:02:25 GMT, "David W. Fenton"
<dX********@bway.net.invalid> wrote:
Ray Greene <ra***@es.co.nz> wrote in
news:C8*******************@news.xtra.co.nz:
I had to recreate all the tables by copying and pasting, to get
rid of the replication system fields. It was a messy fix but
fortunately it wasn't a big database.


You obviously didn't know about MichKa's unreplication wizard. See
http://www.trigeminal.com for the download.


Oh well, I know now. After I did all that work...

Thanks :-)

--
Ray Greene.
Nov 13 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
by: Mark | last post by:
I am looking for a switchboard creator alternative for my MDB. Can anyone help me? Thanks for your help, Mark
2
by: Dannic | last post by:
Here is the application. Its a simple application really. I have a db created in Access 2000 which opens to a switchboard created by the switchboard manager. Now the problem. This only works...
2
by: Terry | last post by:
I have created a switchboard, created using Access 2000. If I put the mouse anywhere on the form, outside of the checkboxes and scroll the wheel backwards, I get the following error. Run-Time...
4
by: Rampar | last post by:
I did some customizing on my switchboard (changing colors and adding graphics) to make it more appealing. I tried to add another item, and it told me that 8 was the limit. Fine. I deleted one...
5
by: Michael Keene | last post by:
I have a query that I'd like to add to my switchboard, but when I use the switchboard manager I only get the option to run a report, a macro or open a form. Is there a way to add a query without...
2
by: Neil Greenough | last post by:
I am trying to create a Switchboard using the Switchboard Manager in MS Access 2000. I have managed to get the table created for the switchboard, however it hasn't actually created the form. ...
1
by: jimwlee | last post by:
Hi all, I mistakenly deleted my switchboard on the Object Forms view. I recreated it again with the database utility, but the switchboard isn't showing up in the forms view. Any ideas? Thanks in...
1
by: mplus_2000 | last post by:
I have recently inherited a database. The switchboard (and other forms) displays the name of the database on it (top, center). Currently the name that appears is Reviews. There are plans to roll...
2
by: Earl Anderson | last post by:
In Acc2003, I have a situation in which I have a main switchboard and upon pressing one of its buttons , takes the user to another sub hierarchical switchboard. Pressing one of these buttons could...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.