PC Review


Reply
Thread Tools Rate Thread

Buttons stop working sporadically

 
 
M Skabialka
Guest
Posts: n/a
 
      23rd Jun 2006
I have an Access 2000 database that has worked OK for some years, but about
once a week or so, when I open it, none of the butttons on the main menu
form work. I click them and nothing happens. Their function is to open
other forms or run reports. However, if I close the form and reopen it from
the database window the buttons work fine.

What can cause this kind of "freeze-up"?

Mich


 
Reply With Quote
 
 
 
 
Roger Carlson
Guest
Posts: n/a
 
      23rd Jun 2006
I have this happen to me occasionally after I compact the database. Opening
the form in design view, then returning to form view, then saving, usually
fixes it. I don't know what causes it though.

--
--Roger Carlson
MS Access MVP
Access Database Samples: www.rogersaccesslibrary.com
Want answers to your Access questions in your Email?
Free subscription:
http://peach.ease.lsoft.com/scripts/...UBED1=ACCESS-L


"M Skabialka" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I have an Access 2000 database that has worked OK for some years, but

about
> once a week or so, when I open it, none of the butttons on the main menu
> form work. I click them and nothing happens. Their function is to open
> other forms or run reports. However, if I close the form and reopen it

from
> the database window the buttons work fine.
>
> What can cause this kind of "freeze-up"?
>
> Mich
>
>



 
Reply With Quote
 
Ken Snell \(MVP\)
Guest
Posts: n/a
 
      23rd Jun 2006
Any code running in the main menu form when it opens? Or is there additional
code running after that code opens the main menu form?

--

Ken Snell
<MS ACCESS MVP>

"M Skabialka" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I have an Access 2000 database that has worked OK for some years, but about
>once a week or so, when I open it, none of the butttons on the main menu
>form work. I click them and nothing happens. Their function is to open
>other forms or run reports. However, if I close the form and reopen it
>from the database window the buttons work fine.
>
> What can cause this kind of "freeze-up"?
>
> Mich
>



 
Reply With Quote
 
M Skabialka
Guest
Posts: n/a
 
      26th Jun 2006
This is all the code running on open... all other code is triggered by user
input. Nothing seems lethal here!

Private Sub Form_Load()

'Show only one windows in the taksbar, not one per form, tables, report,
etc
Application.SetOption "ShowWindowsInTaskbar", False
Application.SetOption "Log Name AutoCorrect Changes", False
Application.SetOption "Perform Name AutoCorrect", False
Application.SetOption "Track Name AutoCorrect Info", False
DoCmd.MoveSize 0, 0 'Move to top left of screen

' Minimize the database window.
DoCmd.SelectObject acForm, "frmMainMenu", True
DoCmd.Minimize
LineNum = Null
RealRate = Null

End Sub

"Ken Snell (MVP)" <(E-Mail Removed)> wrote in message
news:eO4LS$(E-Mail Removed)...
> Any code running in the main menu form when it opens? Or is there
> additional code running after that code opens the main menu form?
>
> --
>
> Ken Snell
> <MS ACCESS MVP>
>
> "M Skabialka" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>>I have an Access 2000 database that has worked OK for some years, but
>>about once a week or so, when I open it, none of the butttons on the main
>>menu form work. I click them and nothing happens. Their function is to
>>open other forms or run reports. However, if I close the form and reopen
>>it from the database window the buttons work fine.
>>
>> What can cause this kind of "freeze-up"?
>>
>> Mich
>>

>
>



 
Reply With Quote
 
Ken Snell \(MVP\)
Guest
Posts: n/a
 
      26th Jun 2006
Another ACCESS MVP has reported that he's seen similar behavior in ACCESS
2000, and the "fix" for him in that situation was to run the form in Restore
size mode, not maximized. Is this form maximized when the problem happens?

--

Ken Snell
<MS ACCESS MVP>

"M Skabialka" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> This is all the code running on open... all other code is triggered by
> user input. Nothing seems lethal here!
>
> Private Sub Form_Load()
>
> 'Show only one windows in the taksbar, not one per form, tables,
> report, etc
> Application.SetOption "ShowWindowsInTaskbar", False
> Application.SetOption "Log Name AutoCorrect Changes", False
> Application.SetOption "Perform Name AutoCorrect", False
> Application.SetOption "Track Name AutoCorrect Info", False
> DoCmd.MoveSize 0, 0 'Move to top left of screen
>
> ' Minimize the database window.
> DoCmd.SelectObject acForm, "frmMainMenu", True
> DoCmd.Minimize
> LineNum = Null
> RealRate = Null
>
> End Sub
>
> "Ken Snell (MVP)" <(E-Mail Removed)> wrote in message
> news:eO4LS$(E-Mail Removed)...
>> Any code running in the main menu form when it opens? Or is there
>> additional code running after that code opens the main menu form?
>>
>> --
>>
>> Ken Snell
>> <MS ACCESS MVP>
>>
>> "M Skabialka" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>>I have an Access 2000 database that has worked OK for some years, but
>>>about once a week or so, when I open it, none of the butttons on the main
>>>menu form work. I click them and nothing happens. Their function is to
>>>open other forms or run reports. However, if I close the form and reopen
>>>it from the database window the buttons work fine.
>>>
>>> What can cause this kind of "freeze-up"?
>>>
>>> Mich
>>>

>>
>>

>
>



 
Reply With Quote
 
M Skabialka
Guest
Posts: n/a
 
      28th Jun 2006
All my forms run in restore mode; when reports open they maximize but
restore on close, so forms are never maximized.


"Ken Snell (MVP)" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Another ACCESS MVP has reported that he's seen similar behavior in ACCESS
> 2000, and the "fix" for him in that situation was to run the form in
> Restore size mode, not maximized. Is this form maximized when the problem
> happens?
>
> --
>
> Ken Snell
> <MS ACCESS MVP>
>
> "M Skabialka" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>> This is all the code running on open... all other code is triggered by
>> user input. Nothing seems lethal here!
>>
>> Private Sub Form_Load()
>>
>> 'Show only one windows in the taksbar, not one per form, tables,
>> report, etc
>> Application.SetOption "ShowWindowsInTaskbar", False
>> Application.SetOption "Log Name AutoCorrect Changes", False
>> Application.SetOption "Perform Name AutoCorrect", False
>> Application.SetOption "Track Name AutoCorrect Info", False
>> DoCmd.MoveSize 0, 0 'Move to top left of screen
>>
>> ' Minimize the database window.
>> DoCmd.SelectObject acForm, "frmMainMenu", True
>> DoCmd.Minimize
>> LineNum = Null
>> RealRate = Null
>>
>> End Sub
>>
>> "Ken Snell (MVP)" <(E-Mail Removed)> wrote in message
>> news:eO4LS$(E-Mail Removed)...
>>> Any code running in the main menu form when it opens? Or is there
>>> additional code running after that code opens the main menu form?
>>>
>>> --
>>>
>>> Ken Snell
>>> <MS ACCESS MVP>
>>>
>>> "M Skabialka" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>>I have an Access 2000 database that has worked OK for some years, but
>>>>about once a week or so, when I open it, none of the butttons on the
>>>>main menu form work. I click them and nothing happens. Their function
>>>>is to open other forms or run reports. However, if I close the form and
>>>>reopen it from the database window the buttons work fine.
>>>>
>>>> What can cause this kind of "freeze-up"?
>>>>
>>>> Mich
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Ken Snell \(MVP\)
Guest
Posts: n/a
 
      28th Jun 2006
I'm sorry... I don't have another suggestion at this time.

--

Ken Snell
<MS ACCESS MVP>

"M Skabialka" <(E-Mail Removed)> wrote in message
news:OJUE%(E-Mail Removed)...
> All my forms run in restore mode; when reports open they maximize but
> restore on close, so forms are never maximized.
>
>
> "Ken Snell (MVP)" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Another ACCESS MVP has reported that he's seen similar behavior in ACCESS
>> 2000, and the "fix" for him in that situation was to run the form in
>> Restore size mode, not maximized. Is this form maximized when the problem
>> happens?
>>
>> --
>>
>> Ken Snell
>> <MS ACCESS MVP>
>>
>> "M Skabialka" <(E-Mail Removed)> wrote in message
>> news:%(E-Mail Removed)...
>>> This is all the code running on open... all other code is triggered by
>>> user input. Nothing seems lethal here!
>>>
>>> Private Sub Form_Load()
>>>
>>> 'Show only one windows in the taksbar, not one per form, tables,
>>> report, etc
>>> Application.SetOption "ShowWindowsInTaskbar", False
>>> Application.SetOption "Log Name AutoCorrect Changes", False
>>> Application.SetOption "Perform Name AutoCorrect", False
>>> Application.SetOption "Track Name AutoCorrect Info", False
>>> DoCmd.MoveSize 0, 0 'Move to top left of screen
>>>
>>> ' Minimize the database window.
>>> DoCmd.SelectObject acForm, "frmMainMenu", True
>>> DoCmd.Minimize
>>> LineNum = Null
>>> RealRate = Null
>>>
>>> End Sub
>>>
>>> "Ken Snell (MVP)" <(E-Mail Removed)> wrote in message
>>> news:eO4LS$(E-Mail Removed)...
>>>> Any code running in the main menu form when it opens? Or is there
>>>> additional code running after that code opens the main menu form?
>>>>
>>>> --
>>>>
>>>> Ken Snell
>>>> <MS ACCESS MVP>
>>>>
>>>> "M Skabialka" <(E-Mail Removed)> wrote in message
>>>> news:(E-Mail Removed)...
>>>>>I have an Access 2000 database that has worked OK for some years, but
>>>>>about once a week or so, when I open it, none of the butttons on the
>>>>>main menu form work. I click them and nothing happens. Their function
>>>>>is to open other forms or run reports. However, if I close the form
>>>>>and reopen it from the database window the buttons work fine.
>>>>>
>>>>> What can cause this kind of "freeze-up"?
>>>>>
>>>>> Mich
>>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Access 2007 Switchboard buttons stop working Dean Slindee Microsoft Access Form Coding 3 4th May 2010 11:21 PM
Cammand Buttons that stop working Yecenia Microsoft Access Forms 1 17th Apr 2009 07:34 PM
Any insight into cause of Autofilter buttons to stop working? =?Utf-8?B?TWljaGFlbA==?= Microsoft Excel Misc 4 18th Aug 2005 04:21 PM
ASP.NET Buttons Stop Working After Windows Update =?Utf-8?B?Q2hyaXMgUS4=?= Microsoft ASP .NET 1 25th Oct 2004 01:13 PM
Outlook buttons stop working. Gideon Microsoft Outlook Interoperability 1 12th Dec 2003 04:37 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:50 PM.